--drop 等誤操作 ,恢復**站內資料
show recyclebin;
flashback table [table_name] to before drop;
--未commit誤操作
rollback;
--已commit , delete等誤刪除資料恢復
--檢視當前scn,scn-1就是上一次commit操作
select dbms_flashback.get_system_change_number from dual;
select * from [table_name] as of scn [scn];
記一次資料庫誤操作 資料恢復
今天運算元據庫不小心修改掉了全庫的資料。炸了。這裡有個恢復的orcal 資料的辦法 create table t table recove 新錶 asselect from t table 你操作的那張表 as of timestamp to timestamp 2010 06 02 11 36 5...
Excel操作資料1
生成excel的方法為呼叫本地office com元件,操作excel。新建專案後,新增對應office版本的microsoft.office.interop.excel 的引用,如圖 1 1所示。新增microsoft.office.interop.excel引用 為方便起見,這裡以乙個示例程式說...
MySQL基本操作 資料操作
刪除資料 更新字段 1.插入指定字段值 insert into 表名 字段列表 values 對應字段值列表 2.向表中所有字段插入資料 insert into 表名 values 按表結構寫對應資料 insert into my teacher values liwei 20 1.查詢表中全部資料...