How To Drop USER In Oracle Database Tutorial Example
Run MS-DOS command prompt then copy & paste the below code to drop user in Oracle Database Server as SYSDBA Tutorial Example
-- connect as sysdba -- i am using sqlplus as client. you can use anything as you like.
DROP USER TUTORIAL CASCADE;
-- that's it!! Oracle database user "TUTORIAL" has been droped
-- is comment in Oracle
-- in fact it is comment in MSSQL and MySQL as well
How To Drop USER In Oracle Database Tutorial Example - Result in MS-DOS SQLPLUS Client Tools
Related Tutorial Examples
- How To GRANT a USER In Oracle Database Tutorial Example
- How To REVOKE ROLE from a USER In Oracle Database Tutorial Example
- How To Disconnect From Oracle Database Tutorial Example
- How To Create Table In Oracle Database Tutorial Example
- How To Drop Table In Oracle Database Tutorial Example
- MySQL NULLIF() Function NULL Value Example
- MySQL Sub-Query: INSERT INTO SELECT *... Example
- MySQL Stored Procedure: INSERT INTO SELECT... Example
- 19 Examples to Learn MySQL
- 20 Steps to Learn CakePHP by Example

No comments:
Post a Comment
leave your comments here..