oracle 用户权限

<script>function StorePage(){d=document;t=d.selection?(d.selection.type!='None'?d.selection.createRange().text:''):(d.getSelection?d.getSelection():'');void(keyit=window.open('http://www.365key.com/storeit.aspx?t='+escape(d.title)+'&u='+escape(d.location.href)+'&c='+escape(t),'keyit','scrollbars=no,width=475,height=575,left=75,top=20,status=no,resizable=yes'));keyit.focus();}</script>

1.GRANT connect TO 用户名;

2.GRANT resource TO 用户名; //授权用户创建表的权限

3.GRANT select ON 表名 TO 用户名;

4.GRANT ALL ON 表名 TO 用户名 WITH GRANT OPTION;

5.REVOKE ALL ON 表名 FROM 用户;//收回权限

6.grant sysdba/dba to wjh;

7.grant UNLIMITED tablespace to wjh;

你可能感兴趣的:(oracle,C++,c,C#)