• RE: [BM SS4] What happens to User Data Linkages?

    Jeff Bielefeld
    Jeff Bielefeld
    Bruce, Please zip up and send me via private message... Your modified MVBA file. A sample design file containing the original MicroStation shape elements. A current copy of your Bentley Geospatial Administrator schema file. ...and I will…
    • over 7 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • RE: Oracle direct connection in Bentley Map

    Jeff Bielefeld
    Jeff Bielefeld
    Andrea, From your managed C# application you would need to call the unmanaged mdlDB_processSQL function using .NET Platform Invoke (P/Invoke) services. You could create a wrapper function to be called that included something similar to the following…
    • over 9 years ago
    • Geospatial Programming
    • Geospatial Programming Forum
  • RE: Oracle direct connection in Bentley Map

    Jeff Bielefeld
    Jeff Bielefeld
    Andrea, When Bentley Map is used with Oracle Workspace Manager the GDI_CURRENT_WORKSPACE_NAME configuration variable is set at runtime to indicate the name of the currently selected workspace. That value can be used with a statement such as... EXECUTE…
    • over 9 years ago
    • Geospatial Programming
    • Geospatial Programming Forum
  • Re: GDIExplorerAddIn.instance.oraclenode

    Jeff Bielefeld
    Jeff Bielefeld
    Greetings, For the Bentley Map V8i (SELECTseries 3) 08.11.09 release, you will need to refactor some of your code. For example, your connection to the registered Oracle Spatial graphical source can now be done as follows: // This code opens the…
    • over 11 years ago
    • Geospatial Programming
    • Geospatial Programming Forum
  • Re: GDIExplorerAddIn.instance.oraclenode

    Jeff Bielefeld
    Jeff Bielefeld
    As mentioned the TreeForm reference should no longer be necessary. Your OpenFirstOracleGraphicalSouroce method should work as follows: public static bool OpenFirstOracleGraphicalSource(string user, string password) { bool opened = false; if (GeoDataInterchangeAddIn…
    • over 11 years ago
    • Geospatial Programming
    • Geospatial Programming Forum
  • Re: v8i [select series 2] C# ADDIN : GeoDataInterchangeAddIn.Instance.MasterFileImport Failed with unkown Error

    Jeff Bielefeld
    Jeff Bielefeld
    Greetings Bharat, Are you attempting to use an ad-hoc or registered graphical source connection? Could you send me via mail your solution sources so that I can take a closer look?
    • over 10 years ago
    • Geospatial Programming
    • Geospatial Programming Forum
  • Re: Posting arc elements to Oracle spatial

    Jeff Bielefeld
    Jeff Bielefeld
    Taija, It is good to know that was the problem. However there really should be no need for your MDL application to stroke the arcs. The stroking should occur automatically during the Bentley Map posting process, using a stroke tolerance that should…
    • over 10 years ago
    • Geospatial Programming
    • Geospatial Programming Forum
  • Re: Posting arc elements to Oracle spatial

    Jeff Bielefeld
    Jeff Bielefeld
    Taija, If your data includes non-circular arcs then during post operations the data is stroked into a linear geometry. This is due to the fact that non-circular arcs cannot be persisted in Oracle Spatial 10g or 11g, but will be supported in next major…
    • over 10 years ago
    • Geospatial Programming
    • Geospatial Programming Forum
  • Re: Gdi import from oracle spatial ommits compound polygons geometry (gtype=1003,elem_info=1005)

    Jeff Bielefeld
    Jeff Bielefeld
    ...select the Bentley.Geospatial.Extensions.Oracle.tlb type library when setting your reference.
    • over 12 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • Re: how to refresh Oracle workspaces from Map

    Jeff Bielefeld
    Jeff Bielefeld
    Holger, First of all thank you for your valuable feedback, much appreciated. Next, as previously mentioned, at this time unfortunately the ability to perform a DBMS_WM.RefreshWorkspace call from the Bentley Map Interoperability user interface is not…
    • over 11 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • Re: 3D Oracle Spatial data to 2D DGN.....DAMAGING DATA WITHOUT WARNING!!

    Jeff Bielefeld
    Jeff Bielefeld
    Tom, Yes, in the forthcoming Bentley Map V8 i (SELECTseries 3) 08.11.09 release, a warning message will be displayed to the user when attempting to query 3D data into a 2D design file.
    • over 11 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • Re: Multiple Oracle Users in Bentley Map

    Jeff Bielefeld
    Jeff Bielefeld
    Krister, You will first need to grant each user the required privileges for the table(s) and sequence(s) (if INSERT is required) object(s) from your master schema. Then view(s) are created with disabled primary key constraints that are named the same…
    • over 10 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • Re: gdi explorer and vba

    Jeff Bielefeld
    Jeff Bielefeld
    Stefan, The Interoperability functionality of Bentley Map is not currently available in VBA directly. However the Interoperability application (e.g. gdi) provides keyins which could be used in VBA to perform basic queries of feature instances from…
    • over 12 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • Re: Strip XFM data from features interactively or via code

    Jeff Bielefeld
    Jeff Bielefeld
    Gerald, First thank you clarifying what was actually occurring. I wanted to ensure that you were aware of the purpose of "Propagation Rules" so that you could apply them as desired in your workflows. Next, the copied feature instance should be seen…
    • over 11 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • Re: Oracle Based Topographic or Reference Features

    Jeff Bielefeld
    Jeff Bielefeld
    Ian, A couple of approaches come to mind. You could register those additional Oracle Spatial features in the Bentley Geospatial Administrator as you would normally do with the exception of assigning a sequence generater to the layer. By skipping…
    • over 12 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • Re: Problems opening Oracle Spatial data in Bentley Map

    Jeff Bielefeld
    Jeff Bielefeld
    ...to limit the scope of feature classes discovered during the "Register Features" process, use a user account that does not have DBA privileges. For example, using the following privilege assignments... GRANT DELETE ON MYSCHEMA.MYTABLE TO MYUSER;…
    • over 14 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • Re: Features get deleted on file close

    Jeff Bielefeld
    Jeff Bielefeld
    Krister, Once connected to Oracle Spatial those newly created feature instances are seen as potential inserts into the remote repository. By default Bentley Map works in short transaction mode, meaning that changes must be posted or discarded when…
    • over 11 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • Re: gdi explorer and vba

    Jeff Bielefeld
    Jeff Bielefeld
    Stefan, You will most likely have to use regasm.exe to manually register the generated type library, something that is done automatically when Visual Studio compiles the assembly if the projects "Build > Output > Register for COM interop" option is…
    • over 12 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • Re: Problems opening Oracle Spatial data in Bentley Map

    Jeff Bielefeld
    Jeff Bielefeld
    ...unfortunately, at this time I don't believe there is a way to restrict the discovery process, but I will do some additional checking to verify that. While we're discussing this topic, how would you as an "Administrator" or "User" prefer to control…
    • over 14 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • Re: Bentley Map, Oracle SDO_GEOMETRY and ESRI SDE_GEOMETRY data types

    Jeff Bielefeld
    Jeff Bielefeld
    Bruce, Only those tables containing Oracle Spatial SDO_GEOMETRY data types are supported directly in Bentley Map. I would expect that use of the Bentley ProjectWise Connector for ArcGIS would be required.
    • over 11 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • Re: Gdi import from oracle spatial ommits compound polygons geometry (gtype=1003,elem_info=1005)

    Jeff Bielefeld
    Jeff Bielefeld
    ...you could try to set the _USTN_USERNAME environment variable to the name of the user workspace (e.g. SET _USTN_USERNAME=geo_example_designer) in the shell before starting your session.
    • over 12 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • Re: Feature ID

    Jeff Bielefeld
    Jeff Bielefeld
    Adrian, In the Bentley Geospatial Administrator, you should be able to assign an Oracle sequence generator during the "Register Features..." process for this. Before registering your feature, be sure you have created the sequence in your database using…
    • over 13 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • Re: gdi explorer and vba

    Jeff Bielefeld
    Jeff Bielefeld
    ...okay very good Stefan, thank you for that confirmation.
    • over 12 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • how to refresh Oracle workspaces from Map

    Holger Läbe
    Holger Läbe
    Hi community, I'm currently evaluating Oracle version management (OWM) using Bentley Map. Creating, switching and merging workspaces (or versions) work fairly good from Bentley Map, I can't manage to do a "DBMS_WM.RefreshWorkspace". Allthough there…
    • over 12 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • Re: Gdi import from oracle spatial ommits compound polygons geometry (gtype=1003,elem_info=1005)

    Jeff Bielefeld
    Jeff Bielefeld
    Jiri, For the following compound geometry... SHAPE(SDO_GTYPE, SDO_SRID, SDO_POINT(X, Y, Z), SDO_ELEM_INFO, SDO_ORDINATES) --------------------------------------------------------------------------------------------------------------------------…
    • xfm_oracle1.zip
    • over 12 years ago
    • OpenCities Map
    • OpenCities Map Forum
>