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, 3034🔥, 0💬
Popular Posts:
How To Format DATETIME Values to Strings with the CONVERT() Function in SQL Server Transact-SQL? SQL...
How To Assign Debug Privileges to a User in Oracle? In order to run SQL Developer in debug mode, the...
How To Connect to a MySQL Server with a Port Number in MySQL? If you want to connect a MySQL server ...
How to detect the collation coercibility associated to a given character string using the COERCIBILI...
How To Round a Numeric Value To a Specific Precision in SQL Server Transact-SQL? Sometimes you need ...