oracle命令行删除与创建用户的代码

前端之家收集整理的这篇文章主要介绍了oracle命令行删除与创建用户的代码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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;
原文链接:https://www.f2er.com/oracle/65865.html

猜你在找的Oracle相关文章