Oracle 的表备份的方法

1.直接备份(防止误操作后数据库表不能恢复)

create table new_table as select * from old_table;

2.创建表头,然后插入列(繁琐的做法)

create table new_table (col1 VARCHAR2(20), col2 NUMBER, col3 VARCHAR2(30), col4 VARCHAR2(50))

然后

insert into new_table select * from old_table;
commit;

3.表的删除

drop table table_name

上一篇:html-2, a img ul li ol dl dt dd 标签与列表标签的简单使用


下一篇:Linux第七周学习总结——可执行程序的装载