oracle 基本简单操作【cmd 导入导出dmp数据库】
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle 基本简单操作【cmd 导入导出dmp数据库】相关的知识,希望对你有一定的参考价值。
参考技术A ---保留表,只删除数据:1.1: truncate table mytable;
1.2: delete from student where 1 = 1 ;
---删除表本身:
drop table mytable;
---永久性删除 恢复不了:
drop table mytable purge;
参考博客: https://jingyan.baidu.com/article/359911f59422bb57ff030659.html
以上是关于oracle 基本简单操作【cmd 导入导出dmp数据库】的主要内容,如果未能解决你的问题,请参考以下文章