[20211022]ORA-00904 REF invalid identifier 19c dba_obj_audit_opts(補充).txt
[20211022]ORA-00904 REF invalid identifier 19c dba_obj_audit_opts(補充).txt
--//連結:http://blog.itpub.net/267265/viewspace-2769007/=>[20210420]ORA-00904 REF invalid identifier 19c dba_obj_audit_opts.txt
--//主要原因是19c 檢視sys.dba_obj_audit_opts,取消ref欄位,執行如下程式碼報錯。
Select *
from sys.dba_obj_audit_opts
where (SUBSTRB (alt, 1, 1) in ('-', 'A', 'S')) and
((alt <> '-/-') or (aud <> '-/-') or (com <> '-/-') or
(del <> '-/-') or (gra <> '-/-') or (ind <> '-/-') or
(ins <> '-/-') or (loc <> '-/-') or (ren <> '-/-') or
(sel <> '-/-') or (upd <> '-/-') or (ref <> '-/-') or
(exe <> '-/-') or (rea <> '-/-') or (wri <> '-/-') or (fbk <> '-/-'))
and object_type in ('TABLE','INDEXTYPE','TYPE')
and owner = 'XXXX'
and OBJECT_NAME = 'YYYY'
Error occurred: [904] (ORA-00904: "REF": invalid identifier
--//在連結我提到一種方式就是利用18c的sys.dba_obj_audit_opts定義,重新新建檢視。生產系統我還真不敢這樣做。
--//還有一個簡單的方法解決這個問題,就是選擇檢視script時,不檢視audit statements。
--//在Schema browser=>選擇表=>選擇script=>選擇Script Optins =>取消audit statements前面的勾。
--//暫時這樣 toad論壇連結下有一個圖很好的說明,據說新的版本已經解決了這個問題。
--//
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/267265/viewspace-2838828/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- [20210420]ORA-00904 REF invalid identifier 19c dba_obj_audit_opts.txtIDEOBJ
- [20200312]ORA-00904 POLTYP invalid identifier.txtIDE
- 【LISTAGG】 ORA-00904: "WM_CONCAT": invalid identifier (DocIDE
- ORA-00904: "wm_concat":invalid identifier錯誤如何解決?IDE
- Python 錯誤 SyntaxError: invalid character in identifierPythonErrorIDE
- [20180928]ora-01426(補充).txt
- [20220329]19c sql語句打補丁.txtSQL
- [20241016]Oracle C functions annotations補充.txtOracleFunction
- [20211215]提示precompute_subquery補充.txt
- [20220603]測試quiz night(補充).txtUI
- [20211116]plsql_code_type=native補充.txtSQL
- [20211221]提示precompute_subquery補充2.txt
- [20210803]使用那個shared pool latch(補充).txt
- [20211013]測試遠端監聽補充.txt
- [20221014]TNS-12543 TNSdestination host unreachable(補充).txt
- [20210114]理解DBMS_SESSION.set_identifier.txtSessionIDE
- [20180129]簡單探究cluster table(補充)4.txt
- [20181229]簡單探究cluster table(補充)3.txt
- [20181227]簡單探究cluster table(補充)2.txt
- [20220119]超長sql語句補充3.txtSQL
- [20220120]超長sql語句補充4.txtSQL
- [20211111]補充完善ash_wait_chains指令碼.txtAI指令碼
- [20211025]12c sequence nocache測試補充.txt
- [20200414]Linux下快速刪除大量檔案(補充).txtLinux
- [20190214]11g Query Result Cache RC Latches補充.txt
- [20190211]簡單測試埠是否開啟(補充).txt
- [20211221]記錄使用sqlplus的小問題補充.txtSQL
- [20211021]windows新建文字檔案帶日期(補充).txtWindows
- [20220309]查詢x$ksmmem遇到的疑問補充.txt
- [20201208]為什麼返回2行記錄補充.txt
- [20190329]探究sql語句相關mutexes補充2.txtSQLMutex
- [20181128]toad連線資料庫的問題(補充).txt資料庫
- [20190312]關於增量檢查點的疑問(補充).txt
- [20201116]測試CURSOR_SPACE_FOR_TIME(10g)(補充).txt
- [20220317]補充完善TPT 顯示欄位列的指令碼.txt指令碼
- [20211009]8K資料庫最大行號補充.txt資料庫
- [20210708]find -mtime +0 0 -0時間問題補充.txt
- [20210625]find -mtime +N N -N時間問題補充.txt