ITPUB个人空间 »
seeyahan的个人空间
欢迎访问 seeyahan 的个人空间
我的论坛主题
-
2008-09-04 14:25:31 / Oracle入门与认证
44.View the Exhibit to observe the privileges granted to the MGR_ROLE role. The SCOTTuser has been granted the CONNECT and RESOURCE roles only.The database administrator (DBA) grants MGR_ROLE to the SCOTT user by using this command:SQL> GRANT MGR_ROLE TO SCOTT WITH ADMIN OPTION;Exhibit====================================================================GeneralName: MGR_ROLEAuthentication: None------------------------Roles------------------------roles|admin opti
查看(519)
评论(12)
-
2008-08-27 10:32:59 / Oracle数据库管理
场景1:根据主表中的记录备份多个子表数据(每个子表有单独的备份表),目前有2种方法:A: 直接用sql语句,从子表中根据主表的记录查出数据插入到备份表B: 对主表根据条件做loop循环, 从子表中查出loop循环的每条数据插入备份表。场景2:根据主表中的记录删除多个子表数据 ,目前有2种方法:A: 直接用sql语句,从子表中根据主表的记录查出数据删除B: 对主表根据条件做loop循环, 从子表中查出loop循环的每条数据删除。每次提交以上oracle 版本为oracle10g+hpux. 每个表的数据在千万级
查看(253)
评论(8)