- 浏览: 1056550 次
- 性别:
- 来自: 北京
-
文章分类
- 全部博客 (538)
- 奇文共赏 (36)
- spring (13)
- hibernate (10)
- AOP/Aspectj (9)
- spring security (7)
- lucence (5)
- compass (3)
- jbmp (2)
- jboss rule(drools) (0)
- birt (1)
- jasper (1)
- cxf (3)
- flex (98)
- webgis (6)
- 设计模式 (1)
- 代码重构 (2)
- log4j (1)
- tomcat (9)
- 神品音乐 (1)
- 工作计划 (2)
- appfuse (1)
- svn (4)
- 寻章摘句 (3)
- eclipse (10)
- arcgis api for flex (1)
- 算法 (5)
- opengis-cs (1)
- bug心得 (13)
- 图标 (1)
- software&key (14)
- java (17)
- 搞笑视频 (13)
- sqlserver (9)
- postgresql (1)
- postgis (0)
- geoserver (5)
- 日子 (50)
- 水晶报表 (1)
- 绝对电影 (3)
- Alternativa3D (1)
- 酷站大全 (10)
- c++ (5)
- oracle (17)
- oracle spatial (25)
- flashbuilder4 (3)
- TweenLite (1)
- DailyBuild (6)
- 华山论贱 (5)
- 系统性能 (5)
- 经典古文 (6)
- SOA/SCA/OSGI (6)
- jira (2)
- Hadoop生态圈(hadoop/hbase/pig/hive/zookeeper) (37)
- 风水 (1)
- linux操作基础 (17)
- 经济 (4)
- 茶 (3)
- JUnit (1)
- C# dotNet (1)
- netbeans (1)
- Java2D (1)
- QT4 (1)
- google Test/Mock/AutoTest (3)
- maven (1)
- 3d/OSG (1)
- Eclipse RCP (3)
- CUDA (1)
- Access control (0)
- http://linux.chinaunix.net/techdoc/beginner/2008/01/29/977725.shtml (1)
- redis (1)
最新评论
-
dove19900520:
朋友,你确定你的标题跟文章内容对应???
tomcat控制浏览器不缓存 -
wussrc:
我只想说牛逼,就我接触过的那点云计算的东西,仔细想想还真是这么 ...
别样解释云计算,太TM天才跨界了 -
hw_imxy:
endpoint="/Hello/messagebr ...
flex+java代码分两个工程 -
gaohejie:
rsrsdgrfdh坎坎坷坷
Flex 与 Spring 集成 -
李涤尘:
谢谢。不过说得有点太罗嗦了。
Oracle数据库数据的导入及导出(转)
http://www.cnblogs.com/mjgforever/archive/2007/12/24/1012440.html
1 Oracle Spatial 是什么?
提供SQL schema 和 functions 以方便存储、取回、更新和查询空间特性的集合。
MDSYS提供了地理数据的类型
2 Object-Relational Model
SDO_GEOMETRY
支持arcs, circles, compound polygons, compound line strings, and optimized rectangles
3 Spatial Data
例如交通图
4 Geometry Types
Points、point clusters
Line strings
n-point polygons
Arc line strings
Arc polygons
Compound polygons
Compound line strings
Circles
Optimized rectangles
5 Data Model
elements, geometries, layers 所组成的等级结构。
element: points, line strings, polygons
Geometry: An example of a geometry might describe the buildable land in a town.
Layer: A layer is a collection of geometries having the same attribute set.
Coordinate System: Cartesian coordinates, Geodetic coordinates, Projected coordinates, Local coordinates
Tolerance: Tolerance is used to associate a level of precision with spatial data.
6 Query Model
两级过滤。Primary filter, secondary filter.
7 Indexing of Spatial Data
R-tree index
8 Spatial Relationships and Filtering
SDO_RELATE: 评价拓扑标准 nine-intersection model between points, lines, and polygons (interior, a boundary, and an exterior.)
SDO_WITHIN_DISTANCE: 两个空间对象是否在一个距离范围内。
SDO_NN: 离某个空间对象最近的一个对象
9 Spatial Operators, Procedures, Functions
Spatial operators: such as SDO_FILTER and SDO_RELATE
Spatial procedures and functions: SDO_GEOM, SDO_CS, and SDO_LRS.
10 Spatial Aggregate Functions
SDO_AGGR_MBR
SDO_AGGR_UNION
11 Geocoding
一个从地址表中转换到标准地址、位置等的过程。
12 Spatial Java Application Programming Interface
oracle.spatial.geometry
oracle.spatial.network
oracle.spatial.topo
oracle.spatial.util
13 MDDATA Schema
14 Performance and Tuning Information
http://www.oracle.com/technology/products/spatial/
15 Open Geospatial Consortium (OGC) Conformance
Features Specification 1.1.1
SQL92
16 Spatial Release (Version) Number
SELECT SDO_VERSION FROM DUAL;
17 Spatial Application Hardware Requirement Considerations
18 Spatial Error Messages
Oracle Database Error Messages
19 Spatial Examples
readgeom.c and readgeom.h
writegeom.c and writegeom.h
1 Oracle Spatial 是什么?
提供SQL schema 和 functions 以方便存储、取回、更新和查询空间特性的集合。
MDSYS提供了地理数据的类型
2 Object-Relational Model
SDO_GEOMETRY
支持arcs, circles, compound polygons, compound line strings, and optimized rectangles
3 Spatial Data
例如交通图
4 Geometry Types
Points、point clusters
Line strings
n-point polygons
Arc line strings
Arc polygons
Compound polygons
Compound line strings
Circles
Optimized rectangles
5 Data Model
elements, geometries, layers 所组成的等级结构。
element: points, line strings, polygons
Geometry: An example of a geometry might describe the buildable land in a town.
Layer: A layer is a collection of geometries having the same attribute set.
Coordinate System: Cartesian coordinates, Geodetic coordinates, Projected coordinates, Local coordinates
Tolerance: Tolerance is used to associate a level of precision with spatial data.
6 Query Model
两级过滤。Primary filter, secondary filter.
7 Indexing of Spatial Data
R-tree index
8 Spatial Relationships and Filtering
SDO_RELATE: 评价拓扑标准 nine-intersection model between points, lines, and polygons (interior, a boundary, and an exterior.)
SDO_WITHIN_DISTANCE: 两个空间对象是否在一个距离范围内。
SDO_NN: 离某个空间对象最近的一个对象
9 Spatial Operators, Procedures, Functions
Spatial operators: such as SDO_FILTER and SDO_RELATE
Spatial procedures and functions: SDO_GEOM, SDO_CS, and SDO_LRS.
10 Spatial Aggregate Functions
SDO_AGGR_MBR
SDO_AGGR_UNION
11 Geocoding
一个从地址表中转换到标准地址、位置等的过程。
12 Spatial Java Application Programming Interface
oracle.spatial.geometry
oracle.spatial.network
oracle.spatial.topo
oracle.spatial.util
13 MDDATA Schema
14 Performance and Tuning Information
http://www.oracle.com/technology/products/spatial/
15 Open Geospatial Consortium (OGC) Conformance
Features Specification 1.1.1
SQL92
16 Spatial Release (Version) Number
SELECT SDO_VERSION FROM DUAL;
17 Spatial Application Hardware Requirement Considerations
18 Spatial Error Messages
Oracle Database Error Messages
19 Spatial Examples
readgeom.c and readgeom.h
writegeom.c and writegeom.h
发表评论
-
利用Oracle Spatial求几何对象的长度和面积
2010-04-28 16:38 2405http://www.cnblogs.com/clarkzhe ... -
ogr2ogr 参数大全
2010-03-31 08:15 5589http://www.gdal.org/ogr2ogr.htm ... -
数据转换系列二--shp格式数据导入PostGIS数据库之ogr2ogr命令
2010-03-31 08:12 6017http://andrewzhuyl.spaces.live. ... -
数据转换系列一--e00格式向shp(shapefile)转换
2010-03-31 08:11 5129数据转换系列一--e00格式向shp(shapefile)转换 ... -
基于Oracle Spatial的空间分析性能优化研究
2010-03-29 08:13 1365http://www.lw23.com/pdf_5c5f0e6 ... -
Oracle Spatial 和 ArcSDE区别与联系
2010-03-29 08:09 7397一、ORACLE SPATIAL概述 ORAC ... -
浅谈Oracle Spatial几何结构
2010-03-29 08:06 1307http://database.51cto.com/art/2 ... -
Oracle Spatial创建空间索引时遇到的ORA-29855问题
2009-09-16 10:18 3988过程描述: 执行的SQL语句:CREATE INDEX G ... -
Oracle Spatial 空间分析操作函数——SDO_WITHIN_DISTANCE
2009-09-16 10:16 7822SDO_GEOM.SDO_WITHIN_DISTANCE(sd ... -
Oracle Spatial 空间分析操作函数——SDO_GEOM.SDO_NN
2009-09-16 10:16 5658SDO_NN( sdo_Geometry1, sdo_Geom ... -
Oracle Spatial 空间分析操作函数——SDO_GEOM.RELATE
2009-09-16 10:15 9116http://gis8.blog.sohu.com/78072 ... -
选择矩形框内的空间对象
2009-04-16 15:25 1283select * from well t WHERE ... -
GIS中的坐标
2009-04-16 13:36 2375地图是用坐标来描述的,而坐标又是如何确定的呢?地球是一个形状不 ... -
网格索引
2009-04-16 13:34 1777http://blog.csdn.net/sjzwl/arch ... -
四叉树索引
2009-04-16 13:32 2127http://blog.csdn.net/sjzwl/arch ... -
空间索引
2009-04-16 13:27 1332http://blog.csdn.net/sjzwl/arch ... -
空间分析的基础--数据
2009-04-16 11:25 1132数据是信息化的基础,空间分析是GIS核心技术之一,深层次的数据 ... -
将 Oracle Spatial 与geoserver, Google Earth 集成
2009-04-16 11:08 4032将 Oracle Spatial 与 Google Earth ... -
执行基于位置的分析
2009-04-16 11:00 1239http://www.oracle.com/technolog ... -
Oracle Spatial User's Guide and Reference
2009-04-16 10:44 1000http://download.oracle.com/docs ...
相关推荐
### Oracle® Database Concepts 11g Release 2 (11.2) 关键知识点解析 #### 一、Oracle Database 概述 Oracle Database 11g Release 2(简称 Oracle 11r2)是Oracle公司发布的一个重要的数据库管理系统版本。它在...
如果你想深入了解Oracle Data Mining,可以查阅Oracle Data Mining Administrator's Guide和Oracle Data Mining Concepts。 7. OLAPSYS - 该账户用于创建OLAP(联机分析处理)元数据结构,拥有OLAP目录(CWMLite)...
- **参考文档**: Oracle Data Mining Administrator’s Guide, Oracle Data Mining Concepts 7. **OLAPSYS** - **用户名**: OLAPSYS - **密码**: MANAGER - **描述**: 用于创建 OLAP 元数据结构的账户,拥有 ...
### Oracle 10g 默认用户名、密码解锁 ... - 参考资料: [Oracle Data Mining Administrator's Guide](https://docs.oracle.com/cd/B19306_01/datamine.102/b14231/toc.htm) 和 [Oracle Data Mining Concepts]...