How To Truncate Table In Oracle Database Tutorial Example
Run MS-DOS command prompt then copy & paste the below code to truncate a table in Oracle Database Server Tutorial Example
-- connect as TUTORIAL -- i am using sqlplus as client. you can use anything as you like.
TRUNCATE TABLE test;
-- that's it!! Oracle database table "test" has been Truncated
-- is comment in Oracle
-- in fact it is comment in MSSQL and MySQL as well
How To Truncate Table In Oracle Database Tutorial Example - Result in MS-DOS SQLPLUS Client Tools
Related Tutorial Examples
- How To Insert Row In Oracle Database Table Tutorial Example
- How To Insert Specific Columns In Oracle Database Tutorial Example
- How To Select Data From Oracle Database Table Tutorial Example
- How To Select Specific Rows From Oracle Database Tutorial Example
- How To Select Specific Columns From Oracle Database Tutorial Example
- MySQL IFNULL() Function NULL Value Example
- MySQL Stored Procedure: Variable Example
- 19 Examples to Learn MySQL
- 20 Steps to Learn CakePHP by Example
- UNIX Command Example: Display UTC/GMT Datetime Information

Thanks for giving example
ReplyDelete