A Installation, Migration, Compatibility, and Upgrade
This appendix provides information about installation, migration, compatibility, and upgrade relating to Oracle Spatial and Graph.
If you are upgrading to the current Oracle Database release, Oracle Spatial and Graph is automatically upgraded as part of the operation. For information about the upgrade procedure, see Oracle Database Upgrade Guide.
If you need to downgrade Spatial and Graph to the previous Oracle Database release, follow the instructions for downgrading a database back to the previous Oracle Database release in Oracle Database Upgrade Guide.
If you need to migrate spatial data from one database to another, see Migrating Spatial Data from One Database to Another.
If you use Oracle Spatial and Graph GeoRaster, see Ensuring That GeoRaster Works Properly After an Installation or Upgrade.
If you are using Spatial and Graph Web Feature Service (WFS) or Catalog Services for the Web (CSW) support, and if you have data from a previous release that was indexed using one or more SYS.XMLTABLEINDEX indexes, see Index Maintenance Before and After an Upgrade (WFS and CSW).
If you need to support geometries with more than 1,048,576 ordinates, see Increasing the Size of Ordinate Arrays to Support Very Large Geometries.
- Migrating Spatial Data from One Database to Another
- Ensuring That GeoRaster Works Properly After an Installation or Upgrade
- Index Maintenance Before and After an Upgrade (WFS and CSW)
- Increasing the Size of Ordinate Arrays to Support Very Large Geometries
Parent topic: Supplementary Information
A.1 Migrating Spatial Data from One Database to Another
Migrating spatial data refers to moving or copying Oracle Spatial and Graph geometry objects from one Oracle database to another. (The databases can have the same or different Oracle Database release numbers.)
If you are migrating spatial data using database links, export/import, Oracle Data Pump, or transportable tablespaces, the MDSYS schema must already exist in the destination database.
In limited situations you might also need to use the SDO_MIGRATE.TO_CURRENT subprogram (described in SDO_MIGRATE Package (Upgrading) ). See the Usage Notes for that subprogram.
Parent topic: Installation, Migration, Compatibility, and Upgrade
A.2 Ensuring That GeoRaster Works Properly After an Installation or Upgrade
To use the GeoRaster feature of Oracle Spatial and Graph, you must enable it and ensure that Oracle XML DB Repository is properly installed.
Note:
After an upgrade, verify that GeoRaster objects and data are valid and that GeoRaster is enabled for all schemas that use the feature, as explained in “Maintaining GeoRaster Objects and System Data in the Database” in Oracle Spatial and Graph GeoRaster Developer's Guide.
Parent topic: Installation, Migration, Compatibility, and Upgrade
A.2.1 Enabling GeoRaster at the Schema Level
GeoRaster must be enabled for each database schema that will use the GeoRaster feature.
By default, the GeoRaster feature is disabled after the Oracle Spatial and Graph is initially installed. GeoRaster can be enabled only within the scope of a schema (that is, not for the entire database), and it must be enabled for each schema that will use the GeoRaster feature.
To enable GeoRaster, follow these steps for each schema for which GeoRaster will be enabled:
If a GeoRaster table has been created and populated with data, then after a database upgrade, GeoRaster is automatically enabled for that table’s schema, and you do not need to re-enable GeoRaster for the schema. (Just ensure that the CREATE TABLE privilege is granted to the user.)
A.2.2 Ensuring Oracle XML DB Repository is Installed
For more information, see the installation and upgrade notes near the start of Chapter 1 in Oracle Spatial and Graph GeoRaster Developer's Guide.
To use the GeoRaster feature of Oracle Spatial and Graph, Oracle XML DB Repository must be installed properly. (In general, you should ensure that Oracle XML DB Repository is installed before you install Oracle Spatial and Graph.)
If Oracle Spatial and Graph has been installed (such as during an upgrade) but Oracle XML DB Repository is not installed, you need to install the Oracle XML DB Repository and reload related GeoRaster PL/SQL packages. In this case, follow these steps
-
Install Oracle XML DB Repository.
For information about installing Oracle XML DB Repository, see Oracle XML DB Developer's Guide.
-
Go to the
$ORACLE_HOME
/md/admin
directory. -
Connect to the database as
SYS AS SYSDBA
. -
Enter the following SQL statements:
ALTER SESSION SET CURRENT_SCHEMA=MDSYS; @prvtgrs.plb @sdogrxml.sql
A.3 Index Maintenance Before and After an Upgrade (WFS and CSW)
Effective with Release 11.2, the SYS.XMLTABLEINDEX index type is deprecated, and therefore the Spatial WFS and CSW createXMLTableIndex
methods create indexes of type XDB.XMLINDEX instead of type SYS.XMLTABLEINDEX as in previous releases. However, if you have data from a previous release that was indexed using one or more SYS.XMLTABLEINDEX indexes, you must drop the associated indexes before the upgrade and re-create the indexes after the upgrade, as follows:
-
Using Oracle Database Release 11.1, call the
dropXMLTableIndex
method (inoracle.spatial.csw.CSWAdmin
ororacle.spatial.wfs.WFSAdmin
, as appropriate depending on the application) to drop associated indexes. -
Upgrade the database from Release 11.1 to Release 11.2.
-
Using Oracle Database Release 11.2, call the
createXMLTableIndex
(inoracle.spatial.csw.CSWAdmin
ororacle.spatial.wfs.WFSAdmin
, as appropriate depending on the application) to create indexes that were dropped in step 1.
For information about Spatial and Graph Web Feature Service (WFS) support, see Web Feature Service (WFS) Support.
For information about Spatial and Graph Catalog Services for the Web (CSW) support, see Catalog Services for the Web (CSW) Support.
Parent topic: Installation, Migration, Compatibility, and Upgrade
A.4 Increasing the Size of Ordinate Arrays to Support Very Large Geometries
If you need to support geometries with more than 1,048,576 ordinates, you must follow the instructions in this section. However, doing so involves significant extra work (running a script, migrating existing spatial data), some database downtime, and some considerations and restrictions. Therefore, you should not perform the actions in this section unless you need to.
To increase the size of ordinate arrays to support geometries with up to 10M ordinates, follow these steps:
After you perform these steps, the following considerations and restrictions apply:
-
Any existing transportable tablespaces that were created with the old SDO_ORDINATE_ARRAY definition will not work.
-
If an export file was created using the Original Export utility on a database with the old SDO_ORDINATE_ARRAY definition, and if that file needs to be imported into a database that is using the new SDO_ORDINATE_ARRAY definition, you must specify the
TOID_NOVALIDATE
flag with the Original Import utility, as in the following example:imp scott/<password> file=states.dmp tables=states TOID_NOVALIDATE=MDSYS.SDO_GEOMETRY,MDSYS.SDO_ORDINATE_ARRAY,MDSYS.SDO_ELEM_INFO_ARRAY
-
If you plan to use Oracle Data Pump to import data after
sdoupggeom.sql
has been executed on a source database, you must also runsdoupggeom.sql
on the target (destination) database after the import operation.
Parent topic: Installation, Migration, Compatibility, and Upgrade