oracle数据库如何备份一张表
--用户名: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;