您的位置:首页 > 数据库 > Oracle

oracle数据库如何备份一张表

2016-07-18 19:17 453 查看
--用户名:tms
--创建表ts_dictionary的备份
create table ts_dictionary_20160715 as select * from ts_dictionary;

补充:

--在ts_dictionary中添加一条一账通的数据
insert into ts_dictionary (id, type, code, name, parent_code,sync_flag) values ('384', 'payMode', '08', '一账通', '00','');
commit;

--删除ts_dictionary表原有网上支付对应数据记录,语音支付,网上支付,手机支付
delete from ts_dictionary where id in('385','386','387');
commit;
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: