码迷,mamicode.com
首页 > 数据库 > 详细

Oracle 的表备份的方法

时间:2016-11-10 16:38:36      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:ora   bsp   tab   方法   1.5   ble   varchar   不能   create   

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;

Oracle 的表备份的方法

标签:ora   bsp   tab   方法   1.5   ble   varchar   不能   create   

原文地址:http://www.cnblogs.com/Lxiaojiang/p/6051397.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!