zoukankan      html  css  js  c++  java
  • How does ArcSDE use Oracle Spatial? arcsde怎么使用oracle spatial

    How does ArcSDE use Oracle Spatial?(arcsde怎么样使用oracle spatial)

    ArcSDE supports Oracle Spatial or Oracle Locator for storing and managing geometry in an Oracle database. To use it, you must have SDO_GEOMETRY specified for the GEOMETRY_STORAGE parameter of one of your configuration keywords. (为了使用它,你必须要把SDO_Geometry指定为Geometry_storage参数中的一个关键字)If you want to use Oracle Spatial geometry storage most of the time, specify SDO_GEOMETRY for the GEOMETRY_STORAGE parameter in your DEFAULTS configuration keyword. If you want to use it for only some datasets, utilize the SDO_GEOMETRY keyword when creating each individual dataset.

    Making Oracle Spatial your default geometry schema

    When you first install the 9.3 ArcSDE component, ST_Geometry is the default geometry storage type. The default settings for ArcSDE storage are defined in the DBTUNE table by the GEOMETRY_STORAGE parameters. (当你首次安装ArcSDE component,ST_Geometry是默认的几何存储类型。ArcSDE存储的默认设置在DBTUNE中通过Geometry_Storage参数定义) Changing the default ArcSDE geometry storage to use Oracle Spatial is easy. For the DEFAULTS keyword, change the GEOMETRY_STORAGE parameter from ST_GEOMETRY to SDO_GEOMETRY. (改变默认的ArcSDE几何存储而使用Oracle Spatial很简单。只要设置DEFAULT关键字,改变Geometry_Storage参数从ST_Geometry到SDO_Geometry)After the default GEOMETRY_STORAGE setting has been changed to SDO_GEOMETRY, ArcSDE creates feature classes with SDO_GEOMETRY columns by default.(在改变默认的Geometry_Storage为SDO_Geometry之后,ArcSDE创建的feature class使用SDO_Geometry字段存储)

    NOTE: Use the sdedbtune administration command to alter DBTUNE settings. For details on using the sdedbtune command, consult the ArcSDE Administration Command Reference installed with ArcSDE.

    ArcSDE for Oracle supports a number of different geometry storage schemas—these different schemas can all be used together in the same database. While there can only be one default geometry schema, individual tables can be created using different geometry schemas. If you want to store just some of your feature classes with the Spatial Type for Oracle storage, you can specify the keyword SDO_GEOMETRY when you create the feature class. If you do this, that particular feature class will be created with an SDO_GEOMETRY column. In the dbtune file, the SDO_GEOMETRY keyword appears as follows:
    ##SDO_GEOMETRY
    GEOMETRY_STORAGE    "SDO_GEOMETRY"
    ATTRIBUTE_BINARY    "BLOB"
    RASTER_STORAGE	    "SDO_GEORASTER"
    SDO_COMMIT_INTERVAL  1000
    UI_TEXT          "User Interface text description for SDO_GEOMETRY"
    
    COMMENT        "Any general comment for SDO_GEOMETRY keyword"
    
    END
  • 相关阅读:
    Visual Studio的输出窗口上输出调试信息的函数
    std::min error C2059: 语法错误:“::” 的解决方法
    error C2872: “flann”: 不明确的符号 --- PCL 与OpenCV2 的flann命名空间冲突问题的解决方法
    VS编译器中设置 输出窗口 只显示error,不显示warning 要如何配置
    nginx.conf的完整配置说明
    Nginx基本配置、性能优化指南
    Apache手册
    Apache 配置虚拟主机三种方式
    Linux常用命令汇总
    Linux下安装Apache
  • 原文地址:https://www.cnblogs.com/zhangjun1130/p/2017116.html
Copyright © 2011-2022 走看看