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, 1934🔥, 0💬
Popular Posts:
How To Convert Numeric Expression Data Types using the CONVERT() Function in SQL Server Transact-SQL...
Where to find SQL Server database server tutorials? Here is a collection of tutorials, tips and FAQs...
How To Start MySQL Server in MySQL? If you want to start the MySQL server, you can run the "mysqld" ...
How To Count Rows with the COUNT(*) Function in SQL Server? If you want to count the number of rows,...
How To Change the Name of a Database User in SQL Server? If you want to change the name of an existi...