Collections:
Delete a User Account in Oracle
How To Delete a User Account in Oracle?
✍: FYIcenter.com
If you want to delete a user account and its associated schema, you can log in as SYSTEM and use the DROP USER command as shown in the following example:
>.\bin\sqlplus /nolog SQL> connect SYSTEM/fyicenter Connected. SQL> DROP USER DEV CASCADE; User dropped. SQL> CREATE USER DEV IDENTIFIED BY developer ACCOUNT UNLOCK; User created.
Note that CASCADE tells the server drop the associated schema.
⇒ Privilege Needed to Connect to Oracle Server in Oracle
⇐ Change User Password in Oracle
2019-07-09, 2683🔥, 0💬
Popular Posts:
Where to find tutorials to answer some frequently asked questions on Microsoft SQL Server Transact-S...
How To Generate CREATE VIEW Script on an Existing View in SQL Server? If you want to know how an exi...
How To Present a Past Time in Hours, Minutes and Seconds in MySQL? If you want show an article was p...
What Is an Oracle Instance in Oracle? Every running Oracle database is associated with an Oracle ins...
How to connect SQL Server Management Studio Express to SQL Server 2005 Express in SQL Server? Once y...