文章列表
用了oracle3年的一些技巧 实在懒得整理了。。。
恢复误删表数据的语句
insert into tablename
select * from tablename as of timestamp to_date('2013-03-25', 'yyyy-mm-dd');
误删oracle表 恢复办法
select * from recyclebin;
flashback table tablename to before drop;
清除共享池
alter system flush shared_pool;
DECODE函数
oracle特有的函数decode(colmn,值,代替 ...