oracle用户操作脚本

xiaoxiao2021-02-28  43

oracle创建用户脚本:

create user username identified by "password" default tablespace WEBSITE;

grant resource,connect,imp_full_database to username ; 赋权

-- oracle 用户权限 grant dba to username ; -- 数据库管理员权限  grant select any table to username ; -- 查找所有用户表权限  grant debug any procedure to username ; -- 过程调试权限
转载请注明原文地址: https://www.6miu.com/read-2612689.html

最新回复(0)