Oracle 备份表数据

Posted 学亮编程手记

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Oracle 备份表数据相关的知识,希望对你有一定的参考价值。

--备份表数据
select * from t_owners;
--创建备份表
create table t_owners_copy (
   id number,
   name varchar2(100),
   addressid number,
   housenumber varchar2(100),
   watermeter varchar2(100),
   adddate date,
   ownertypeid number
)
drop table t_owners_copy
select * from t_owners_copy
--备份一部分数据
insert into t_owners_copy(id,name) select id,name from t_owners
--备份全部数据
insert into t_owners_copy select * from t_owners

 

以上是关于Oracle 备份表数据的主要内容,如果未能解决你的问题,请参考以下文章

oracle如何备份表前1000行

oracle 备份某张表的全部数据

oracle有多个整个数据库备份集 如何选择恢复的备份集

Oracle 备份表数据

oracle数据库分区表备份

oracle备份与还原数据