When does the Oracle library for st_shapelib.dll need to be changed?

简介: Question When does the Oracle library for st_shapelib.dll need to be changed? Answer The library is the path for Oracle to locate the external .dll file used by st_geometry functions an

Question

When does the Oracle library for st_shapelib.dll need to be changed?

Answer

The library is the path for Oracle to locate the external .dll file used by st_geometry functions and operators with Oracle's external process. 

To identify the st_shapelib library's current location in Oracle, execute the following SQL statement, as the SDE user, in SQL*Plus:
SQL> SELECT library_name, file_spec FROM user_libraries;

LIBRARY_NAME FILE_SPEC
------------ --------------------------------------------
ST_SHAPELIB  D:\ESRI\ArcSDE\ora10gexe\bin\st_shapelib.dll
The value for file_spec must match the st_shapelib.dll's physical file location on the server. If it does not match, st_geometry operators and functions fail to execute. 

If for any reason the path to the library must be changed, for example, the administrator moves the file location for SDEHOME or an Oracle export file is being imported from another instance where the path to the st_shapelib.dll is different, then the library specification must be updated to match the correct location of the st_shapelib.dll. 

A possible indicator as to when the library location may need to be updated is when the following error message is encountered when executing a st_geometry function or operator (the error is an indicator that the value for the specified library location may be invalid). 
SQL> SELECT sde.st_astext(shape) FROM sewers WHERE objectid = 10;
ERROR:
ORA-06520: PL/SQL: Error loading external library
ORA-06522: Unable to load DLL
ORA-06512: at "SDE.ST_GEOMETRY_SHAPELIB_PKG", line 70
ORA-06512: at "SDE.ST_GEOMETRY_OPERATORS", line 68
To fix the problem, update the library path in SQL*Plus, as the SDE user, by setting the file directory to the location where the st_shapelib.dll resides.
SQL> CREATE OR REPLACE LIBRARY st_shapelib
  2  AS 'C:\Program Files\ESRI\ArcSDE\ora11gexe\bin\st_shapelib.dll';
  3  /

Library created.
Creating the library causes dependent objects to become invalid. Oracle best practices recommend all objects should be compiled and valid. To ensure all objects are valid in the SDE schema, execute the following command as the SDE user: 
EXECUTE sys.utl_recomp.recomp_serial('SDE');
PL/SQL procedure successfully completed.

Verify all objects are valid. 

SQL> SELECT object_name FROM user_objects WHERE status = 'INVALID';

no rows selected


目录
相关文章
|
10天前
|
SQL Oracle 安全
Oracle Database Vault Access Control Components
Oracle Database Vault Access Control Components
8 0
|
Oracle 安全 关系型数据库
[INS-32104] Specified Oracle Home user is not the owner of the specified Oracle Base
[INS-32104] Specified Oracle Home user is not the owner of the specified Oracle Base
372 0
|
SQL Oracle 关系型数据库
关于数据库安装的问题SP2-0667: Message file sp1.msb not found
昨天自己在OEL上准备把10g,11g的环境都准备一下,我规划了一下硬盘空间,然后创建了相应的用户,12c的Oms也在这次的范围之内。 drwx------  4 oms10g  dba     4096 Jan 18 20:56 oms10g...
3190 0
|
关系型数据库 Oracle
ORACLE报错:enviroment variable ORACLE_SID not defined,please define int
版权声明:转载请注明出处:http://blog.csdn.net/dajitui2024 https://blog.csdn.net/dajitui2024/article/details/79396667 ...
986 0
|
Oracle 关系型数据库 Unix

推荐镜像

更多