Oracle如何通過同義字定位對象

來源:互聯網
上載者:User

準備工作:


如何將V$視圖查詢許可權賦給其他使用者:

 

sys@ORCL>grant select on v$paramter toscott;

grant select on v$paramter to scott

*

第 1 行出現錯誤:

ORA-00942: 表或視圖不存在

 

 

sys@ORCL>grant select on v$parameter toscott

grant select on v$parameter to scott

*

第 1 行出現錯誤:

ORA-02030: 只能從固定的表/視圖查詢

這是因為v$ paramter不是一個視圖,其實它是一個同義字。

 

sys@ORCL>SELECT SYNONYM_NAME,TABLE_NAMEFROM DBA_SYNONYMS WHERE SYNONYM_NAME='V$PARAMETER';

 

SYNONYM_NAME TABLE_NAME

------------------------------------------------------------

V$PARAMETER V_$PARAMETER

 

因此,需要將同義字對應的視圖進行授權。

sys@ORCL>grant select on v_$parameter toscott;

 

授權成功。

 

sys@ORCL>conn scott/tiger

已串連。

scott@ORCL>select * from v$parameterwhere rownum<5;

 

 

Oracle如何通過同義字定位對象:

 

sys@ORCL>alter session set events '10046trace name context forever,level 12';

 

會話已更改。

 

sys@ORCL>select * from v$diag_info wherename='Default Trace File';

 

INST_ID NAME VALUE

---------- ----------------------------------------------------------------------

1 Default Trace File d:\app\lenovo\diag\rdbms\orcl\orcl\trace

\orcl_ora_19068.trc

 

第一段重要的代碼如下:
PARSING IN CURSOR #3 len=202 dep=1 uid=0 oct=3 lid=0 tim=1683213424hv=3819099649 ad='7ffc8919a70' sqlid='3nkd3g3ju5ph1'

select obj#,type#,ctime,mtime,stime,status, dataobj#, flags, oid$, spare1, spare2 from obj$ where owner#=:1 andname=:2 and namespace=:3 and remoteowner is null and linkname is null andsubname is null

END OF STMT

PARSE #3:c=0,e=976,p=0,cr=0,cu=0,mis=1,r=0,dep=1,og=4,plh=0,tim=1683213422

BINDS #3:

Bind#0

oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00

oacflg=08 fl2=0001 frm=00 csi=00 siz=24 off=0

kxsbbbfp=1cc02bf8 bln=22 avl=02 flg=05

value=84

Bind#1

oacdty=01 mxl=32(11) mxlc=00 mal=00 scl=00 pre=00

oacflg=18 fl2=0001 frm=01 csi=852 siz=32 off=0

kxsbbbfp=1cc02bc0 bln=32 avl=11 flg=05

value="V$PARAMETER"

Bind#2

oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00

oacflg=08 fl2=0001 frm=00 csi=00 siz=24 off=0

kxsbbbfp=1cc02b90 bln=24 avl=02 flg=05

value=1

 

oracle根據傳入參數owner#=84name=V$PARAMETER namespace=1來判斷物件類型,按照表,視圖優先規則來定位判斷,對於本例使用者scott下面是不存在這個表或視圖的

 

接下來oracle繼續判斷,此時需要驗證同義字:
PARSING IN CURSOR #3 len=46 dep=1 uid=0 oct=3 lid=0 tim=1683217830hv=1343089354 ad='7ffc84fa2d8' sqlid='1mjd9xp80vuqa'

selectnode,owner,name from syn$ where obj#=:1

ENDOF STMT

PARSE#3:c=15600,e=501,p=0,cr=0,cu=0,mis=1,r=0,dep=1,og=4,plh=0,tim=1683217829

BINDS#3:

Bind#0

oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00pre=00

oacflg=08 fl2=0001 frm=00 csi=00 siz=24 off=0

kxsbbbfp=1e108c18 bln=22 avl=03 flg=05

value=1456

 

 

傳入綁定變數值是1456:

 更多詳情見請繼續閱讀下一頁的精彩內容:

Oracle同義字建立及其作用   

使用datapump 匯出匯入同義字(export and import synonym using datapump) 

Oracle建立dblink和同義字小記 

Oracle同義字的建立與刪除 

Oracle 同義字synonym 學習

Oracle資料庫常見對象—索引和同義字 

  • 1
  • 2
  • 下一頁

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.