updatetime--2023年1月20日11:45:07
1.1.9.3 備份表資料
語法:create table 表名_bak/_日期 as select * from 要備份的表名
舉例:
createtable table_bak as
select
*from table
應用場景:刪除之前先做備份
--備份2023年符合條件的表資料
create
table consult_schedule_2017_bak as
select
*from
consult_schedule t
where t.schedule_date between to_date('
2017-01-01
','yyyy-mm-dd')
and to_date('
2017-12-31
','yyyy-mm-dd')
and t.org_id=
'134557
';
--備份好後再進行刪除,以便備用
delete
from
consult_schedule t
where t.schedule_date between to_date('
2017-01-01
', '
yyyy-mm-dd
') and
to_date(
'2017-12-31
', '
yyyy-mm-dd')
and t.org_id =
'134557
';
oracle 快速備份表資料
updatetime 2017年1月20日11 45 07 1.1.9.3 備份表資料 語法 create table 表名 bak 日期 as select from 要備份的表名 舉例 create table table bak as select from table 應用場景 刪除之前先做...
oracle 備份表資料
場景 oracle資料庫 要先對幾個表進行備份 然後操作備份表,不直接操作實時表,防止一些誤操作發生在實時表上,怎麼操作呢?plsql上執行sql命令備份表 全量備份 把名為tb name1的表備份成tb name2 create table tb name2 as selecte from tb ...
oracle匯出匯入備份表資料
今天遇到了乙個很常見的需求,備份資料庫資料。輕車熟路,用pl sql developer的tools export tables,選好oracle匯出程式的路徑和檔案匯出的路徑,點下右下角export即可。不過試了好幾次,下面的提示欄都已經顯示完成了,不過桌面上還是沒有dmp檔案。我首先是懷疑是pl...