[20181006]12c使用toad連線問題.txt
[20181006]12c使用toad連線問題.txt
--//system使用者使用toad連線資料庫出現如下提示:
ORA-01031: insufficient privileges
--//跟蹤發現執行如下報錯:
SELECT u.NAME
FROM sys.USER$ u
WHERE u.TYPE# = 1
ORDER BY 1
Error occurred: [1031] (ORA-01031: insufficient privileges)
--//即使system使用者具有dba許可權,訪問sys.USER$依舊沒有許可權.
--//以sys使用者登入執行:
SYS@test01p> grant select on sys.user$ to system;
Grant succeeded.
--//再次使用toad連線資料庫,問題消失!!
--//以scott使用者重複測試:
SYSTEM@test01p> grant dba to scott;
Grant succeeded.
--//以scott使用者登入:
SCOTT@test01p> show user
USER is "SCOTT"
SCOTT@test01p> select count(*) from sys.user$;
select count(*) from sys.user$
*
ERROR at line 1:
ORA-01031: insufficient privileges
--//可以發現即使具有dba許可權,訪問sys.user$依舊沒有許可權.為了能很好在toad使用,必須授權:
SYSTEM@test01p> grant select on sys.user$ to scott;
grant select on sys.user$ to scott
*
ERROR at line 1:
ORA-01031: insufficient privileges
--//system使用者無法授權.使用sys使用者才可以.
SYS@test01p> grant select on sys.user$ to scott;
Grant succeeded.
SYS@test01p> connect scott/btbtms@test01p
Connected.
SCOTT@test01p> select count(*) from sys.user$;
COUNT(*)
----------
130
--//這樣在toad下使用就不會報錯了.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/267265/viewspace-2215490/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- [20181128]toad連線資料庫的問題.txt資料庫
- [20181128]toad連線資料庫的問題(補充).txt資料庫
- [20220324]toad與sql profile使用問題.txtSQL
- [20221010]使用toad管理索引改名問題.txt索引
- [20181107]低版本toad連線18c資料庫問題.txt資料庫
- [20181206]toad 12小問題.txt
- [20220517]toad使用gather_plan_statistics提示問題.txt
- [20181006]12c sqlplus顯示使用者上次登入時間.txtSQL
- [20200120]12c線上統計收集問題.txt
- [20211206]toad下job建立檢視問題.txt
- [20220414]toad呼叫執行指令碼問題.txt指令碼
- [20200711]關於左右連線的問題.txt
- [20181006]建立測試使用者scott.txt
- [20211229]toad下優化sql語句注意的問題.txt優化SQL
- [20210114]toad檢視真實執行計劃問題.txt
- [20230306]os認證連線資料庫問題.txt資料庫
- [20240313]toad gather_plan_statistics執行計劃相關問題.txt
- [20210205]toad檢視真實執行計劃問題3.txt
- [20230308]12c以上版本模糊查詢問題.txt
- [20181204]低版本toad 9.6直連與ora-12505.txt
- [20181217]strace使用問題.txt
- [20190409]pre_page_sga=true與連線緩慢的問題.txt
- [20201116]11g連線謂詞推入push_pred問題.txt
- MySQL SSL連線問題MySql
- [20181227]bbed的使用問題.txt
- [20210303]bbed使用小問題.txt
- 【問題記錄】—SignalR連線斷線重連SignalR
- [20210126]bash ln建立軟連結問題.txt
- [20181224]使用odbc連線oracle資料庫.txtOracle資料庫
- 檢測ftp連線問題FTP
- mysql odbc delphi連線問題MySql
- Github ssh的連線問題Github
- [20190314]使用strace注意的問題.txt
- [20200227]使用tcpdump or and ()語法問題.txtTCP
- [20210902]cut使用輸出問題.txt
- [20220811]奇怪的隱式轉換問題(12c補充測試).txt
- [20210201]dblink建立連線串使用ENABLE=BROKEN.txt
- [20181026]12c增強索引線上DDL操作.txt索引