Oracle-ARCGIS-SDE 數據整合遇到的問題

一.java

近日在作全文檢索,基礎採用oracle text,版本是10g,作好管理頁面後,有功能是刪除索引,就是生成drop index的語句。沒有想到這個全文檢索的index這麼直接弄還不行,通過這樣刪除的index涉及到的表,從新創建索引後,插入會報錯sql

錯誤以下:數據庫

Java代碼   收藏代碼
  1. ora-29861:域索引標記爲loading/failed/unusable  

 網上多數解釋是說這個索引有問題了,可是這個索引根本沒有問題,同步和重建這個索引都不能解決這個問題,知道我看到有人說是採用這樣的方法查看索引的狀態session

Sql代碼   收藏代碼
  1. select * from sys.all_indexes t where t.owner='CTXSYS' AND T.INDEX_TYPE='DOMAIN';  
Sql代碼   收藏代碼
  1. select owner,index_name from all_indexes where domidx_status != 'VALID' or domidx_opstatus !='VALID';  

 
引文原話:
spatial indecies is not noramal, but domain.
And need to check domidx statuses.oracle

 

我經過查詢看到我報錯的那個索引涉及到的表上以前創建的後來被刪除的索引依舊在這個all_indexes 表裏面,而且domidx_opstatus 是!= 'VALID'dom

 

我試着用drop index 這些domidx_opstatus 是!= 'VALID' 的索引,此次個人程序不報錯了。ide

 

二.spa

同一數據庫K, 有A用戶和 B用戶 , 如今A用戶要創建一張B用戶下的某表tab..net

    提示錯誤的緣由:A用戶沒有查詢B用戶下表的權限.blog

 

 

[java]  view plain copy
 
  1. SQL> conn sys/a as sysdba;  
  2. Connected to Oracle Database 11g Enterprise Edition Release 11.1.0.6.0   
  3. Connected as SYS  
  4.    
  5. SQL> create user a identified by a;  
  6.    
  7. User created  
  8.    
  9. SQL> grant create session,connect to a;  
  10.    
  11. Grant succeeded  
  12.    
  13. SQL> grant select on w.a to a;  
  14.    
  15. Grant succeeded  
  16.    
  17. SQL> grant create view to a;  
  18.    
  19. Grant succeeded  
  20.    
  21. SQL> conn a/a;  
  22. Connected to Oracle Database 11g Enterprise Edition Release 11.1.0.6.0   
  23. Connected as a  
  24.    
  25. SQL> select * from w.a;  
  26.    
  27.         MM NN  
  28. ---------- ----  
  29.         10 飛機  
  30.         10 汽車  
  31.         10 輪船  
  32.    
  33. SQL> create view t_views as select * from w.a;  
  34.    
  35. View created  
  36.    
  37. SQL>   
相關文章
相關標籤/搜索