oracle資料庫引用arcgis地理函式庫

2021-08-20 21:40:29 字數 739 閱讀 1487

隨著arcgis軟體的迭代,arcgis連線資料已經從以前的需要安裝arcsde外掛程式發展成可以直連資料的地步了,但是很多從低版本過渡過來的人卻在新版本arcgis軟體安裝和註冊資料庫後無法使用arcgis st庫函式,這是因為資料庫沒有正確的引用arcgis st庫函式的的原因。

如何正確的引用函式庫?

1:需要先找到arcgis的st庫檔案,桌面工具安裝完成後,檔案的位置c:\program files (x86)\arcgishome\databasesupport\有各種資料的作業系統支援的函式庫檔案,知道自己需要的檔案後拷貝出來。

2:將拷貝的庫檔案放到資料庫主機的資料庫根目錄(不建議)或者放到其他乙個固定位置。

3:配置引用

select file_spec from user_libraries where library_name = 'st_shapelib';

create or replace library st_shapelib

as 'c:\mylibraries\st_shapelib.dll,自己的庫檔案放置位置';

alter package sde.st_geometry_shapelib_pkg compile

reuse settings;

4:oracle配置 oraclehome\product\11.2.0\dbhome_1\hs\admin:set extproc_dlls=only:c:\mylibraries\st_shapelib.dll之後重啟監聽。

oracle資料庫賦權 Oracle資料庫許可權

oracle資料庫許可權基本認識 一 oracle許可權 oracle系統提供三種許可權 object 物件級 system 系統級 role 角色級。許可權分類 1 系統許可權 系統規定使用者使用資料庫的許可權。系統許可權是對使用者而言 2 實體許可權 某種許可權使用者對其它使用者的表或檢視的訪問...

oracle資料庫和資料庫例項

oracle中的資料庫和資料庫例項 oracle的體系結構簡單來分的話,分成2部分 資料庫 database 和資料庫例項 database instance 這是個容易搞糊塗的概念,在sql server裡面,你在你的機器上安裝一次sql server,那麼你就等於安裝了一次資料庫例項,在這個例項...

資料庫 Oracle中建立資料庫

create database lihua 網上的說法是 oracle中的例項只對應乙個資料庫,出現此種情況說明oracle資料庫處於mount 裝載 或open狀態,需要使用startup nomount語句進行狀態更改,或者是直接使用dbca的圖形介面來建立 注 經測試,startup nomo...