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
  • 相关阅读:
    git的简单操作
    angularjs的基础
    针对IE8透明度设置及一些简单的兼容问题
    sublime 部分常用的快捷键
    Linux简单的操作
    AngularJS 简单的介绍
    html5的viewport与css3的媒体查询
    css的优先级的相关内容
    (转) vmware 切换桥接模式
    从nginx的编译安装,了解编译安装原理(转)
  • 原文地址:https://www.cnblogs.com/zhangjun1130/p/2017116.html
Copyright © 2011-2022 走看看