解决Oracle在scott用户下创建视图(VIEW)权限不足的方法


问题描述:在scott用户下创建视图的时候,报错:权限不足。(其他用户以此类推)
解决方法

    1. 以dba用户登录
      [sql]  view plain  copy
       
       print?
      1. sqlplus / as sysdba  
    2. 赋予scott用户创建VIEW的权限
      [sql]  view plain  copy
       
       print?
      1. grant create view to scott  
    3. 以scott用户登录oracle
      [sql]  view plain  copy
       
       print?
      1. conn scott/tiger  
    4. 创建视图成功
      [sql]  view plain  copy
       
       print?
      1. CREATE OR REPLACE VIEW myview AS  
      2.     SELECT * FROM emp where deptno = 20; 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM