当前位置:   article > 正文

sql操作数据_sql创建一个操作表action

sql创建一个操作表action

//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');

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/671583
推荐阅读
相关标签
  

闽ICP备14008679号