赞
踩
//Oralce 导不出空表的解决
select 'alter table '||table_name||' allocate extent;' from user_tables where num_rows=0
//oralce 创建用户授权
create user username identified by pwd;
grant connect,resource,dba to username ;
//单引号连接
||chr(39)||
//拿到表列
SELECT t.COLUMN_NAME||',' FROM USER_TAB_COLUMNS t where t.TABLE_NAME='表名';
//表数据还原
//启动行移动
alter table tablename enable row movement;
//闪回到该时间
flashback table tablename to timestamp to_timestamp('2019-09-06 15:30:30', 'yyyy-mm-dd hh24:mi:ss');
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。