grantee中文翻譯,grantee是什么意思,grantee發(fā)音、用法及例句
- 內容導航:
- 1、grantee
- 2、如何查看Oracle的用戶(hù)權限?
1、grantee
grantee發(fā)音
英:[ɡr?n?ti?] 美:[?ɡrɑ?n?ti?]
英: 美:
grantee中文意思翻譯
常用釋義:受讓人
n.受讓人;被授與者
grantee雙語(yǔ)使用場(chǎng)景
1、Figure 11 shows that -grant grantee (public) is added in Additional options, which gives execute privileges on the packages to the public.───圖11顯示Additional options中添加了- grant grantee (public)選項,從而向公眾提供了該包的執行權限。
2、The term "wishes" referred to the state of mind of the grantee.───詞語(yǔ)“希望”之受讓人的心態(tài)。
3、A GTYPE value of 'g' means that the grantee is a group account.───值‘G’意味著(zhù)被授權者是一個(gè)組帳號。
4、The grant may be accepted within 28 days from the day of offer, upon payment of a nominal consideration of HK$10 in total by the grantee.───提出授予購股權之建議可自建議之日期起二十八天內,在購股權承授人支付面值總代價(jià)港幣10元后被接納。
5、Perfect costing management system was the institutional grantee of implementing the above circles.───建立完善的成本核算管理體系是以上環(huán)節實(shí)現的制度保證。
6、The grantor shall not, within the granted period provided for in this contract, withdraw the grantee's right to the use of the granted land.───第十八條出讓人對受讓人依法取得的土地使用權,在本合同約定的使用年限屆滿(mǎn)前不收回;
7、In a year, the selection committee will review the progress of each grantee.───遴選委員會(huì )將在一年的時(shí)間里審核每一位受資助者的研究進(jìn)展。
8、Special second air blowing system could be grantee the quality of bottle in order to catch up to the customer's requirement.───特殊設計的二次吹氣系統,確保瓶子成型質(zhì)量穩定,達到客戶(hù)相應的技術(shù)標準;
9、Observers can also look at live images of the eclipsed sun by making simple pinhole cameras, according to eclipse expert and National Geographic grantee Jay Pasachoff.───根據日食專(zhuān)家、國家地理雜志授權人詹·帕薩扣夫的提示,觀(guān)測者也可以通過(guò)制作小孔照相機的方式來(lái)觀(guān)測日食的現場(chǎng)影像。
grantee相似詞語(yǔ)短語(yǔ)
1、granter───n.出讓方;出讓人;授與者;轉讓者
2、granted───conj.誠然;adv.的確;vt.grant的過(guò)去式
3、grandees───n.貴族;要人;大公(西班牙或葡萄牙最高爵位)
4、guarantee───n.保證;擔保;保證人;保證書(shū);抵押品;vt.保證;擔保
5、grander───較大的;較宏偉的(grand的比較級)
6、grantees───n.受讓人;被授與者
7、grandee───n.貴族;要人;大公(西班牙或葡萄牙最高爵位)
8、granites───n.花崗巖石(granite的復數)
9、Santee───n.桑堤河(美國南卡羅來(lái)納州中部河流,自東南流注入大西洋);桑提人(北美印第安人,屬達科他人的一個(gè)分支)
2、如何查看Oracle的用戶(hù)權限?
\"ORACLE數據字典視圖的種類(lèi)分別為:USER,ALL 和 DBA.
USER_*:有關(guān)用戶(hù)所擁有的對象信息,即用戶(hù)自己創(chuàng )建的對象信息
ALL_*:有關(guān)用戶(hù)可以訪(fǎng)問(wèn)的對象的信息,即用戶(hù)自己創(chuàng )建的對象的信息加上
其他用戶(hù)創(chuàng )建的對象但該用戶(hù)有權訪(fǎng)問(wèn)的信息
DBA_*:有關(guān)整個(gè)數據庫中對象的信息
(這里的*可以為T(mén)ABLES,INDEXES,OBJECTS,USERS等。)
1、查看所有用戶(hù)
select * from dba_user;
select * from all_users;
select * from user_users;
2、查看用戶(hù)系統權限
select * from dba_sys_privs;
select * from all_sys_privs;
select * from user_sys_privs;
3、查看用戶(hù)對象權限
select * from dba_tab_privs;
select * from all_tab_privs;
select * from user_tab_privs;
4、查看所有角色
select * from dba_roles;
5、查看用戶(hù)所擁有的角色
select * from dba_role_privs;
select * from user_role_privs;
6、查看當前用戶(hù)的缺省表空間
select username,default_tablespace from user_users;
7、查看某個(gè)角色的具體權限
如grant connect,resource,create session,create view to TEST;
8、查看RESOURCE具有那些權限
用SELECT * FROM DBA_SYS_PRIVS WHERE GRANTEE='RESOURCE
\"
版權聲明: 本站僅提供信息存儲空間服務(wù),旨在傳遞更多信息,不擁有所有權,不承擔相關(guān)法律責任,不代表本網(wǎng)贊同其觀(guān)點(diǎn)和對其真實(shí)性負責。如因作品內容、版權和其它問(wèn)題需要同本網(wǎng)聯(lián)系的,請發(fā)送郵件至 舉報,一經(jīng)查實(shí),本站將立刻刪除。