手机
当前位置:查字典教程网 >编程开发 >Oracle教程 >oracle命令行删除与创建用户的代码
oracle命令行删除与创建用户的代码
摘要:oracle命令行删除用户:复制代码代码如下:connect/assysdba;shutdownabort;startup;dropuser...

oracle命令行删除用户:

复制代码 代码如下:

connect/assysdba;

shutdownabort;

startup;

dropuseruser1cascade;

exit

oracle命令行创建用户:

复制代码 代码如下:

createuseruser1

identifiedbyvalues'fa091872a2cc669c'

defaulttablespaceuser1

temporarytablespacetemp

profiledefault

accountunlock;

--4rolesforuser1

grantrecovery_catalog_ownertouser1withadminoption;

grantresourcetouser1withadminoption;

grantdbatouser1withadminoption;

grantconnecttouser1withadminoption;

alteruseruser1defaultroleall;

--3systemprivilegesforuser1

grantselectanydictionarytouser1withadminoption;

grantunlimitedtablespacetouser1withadminoption;

grantalteranyproceduretouser1withadminoption;

【oracle命令行删除与创建用户的代码】相关文章:

oracle中lpad函数的用法详解

Oracle创建用于测试的大表

oracle触发器如何使用

oracle中关于flashback闪回的介绍

如何修改Oracle并发连接数的设置

Oracle解除对SCOTT/TIGER用户的锁定

oracle if else语句使用介绍

OracleMove命令总结

oracle数据库导入导出命令使用方法

oracle使用sql脚本生成csv文件案例学习

精品推荐
分类导航