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
  • 相关阅读:
    Max Sum(经典DP)
    Codeforces Round #166 (Div. 2)D. Good Substrings(字符串散列)
    Edge(简单)
    Just a Hook(线段树,成段更新)
    Codeforces Round #169 (Div. 2) D. Little Girl and Maximum XOR(贪心,中等)
    最大连续子序列(经典DP)
    Compromise(求解最长公共子序列并输出)
    如何查看IE型号
    并查集中Sfind函数的返回值错误,伤了我两天~!
    最大流的非递归Dinic算法
  • 原文地址:https://www.cnblogs.com/zhangjun1130/p/2017116.html
Copyright © 2011-2022 走看看