各位好! 有一个A用户,我想让他可以有导出B表的权限,命令应该如何写?谢谢.

解决方案 »

  1.   

    grant exp on 表名 to 用户
    这样写对吗?
      

  2.   

    GRANT EXP_FULL_DATABASE ON 表名 TO 用户还是这么写? 请高手指点一下。谢谢
      

  3.   

    To use export you must have CREATE SESSION privilege on an Oracle database. Once you have CREATE SESSION privilege you can export objects belonging to your schema. To export objects owned by another user, you must have the EXP_FULL_DATABASE privilege. DBA role will be granted this privilege. 
      

  4.   

    GRANT EXP_FULL_DATABASE  TO 用户 No tablenames
      

  5.   

    GRANT EXP_FULL_DATABASE TO 用户