Oracle experiment: the whole process of recovering accidentally deleted records with bbed
Oracle experiment: the whole process of recovering accidentally deleted records with bbed the 1 Prepare the test environment: SQL> create table c as select * from dept; the Table created. the SQL> select * from c; the DEPTNO DNAME LOC ———- ————– ————- the SQL> select rowid,c.* from c; the ROWID DEPTNO DNAME —————— ———- ————– ——– —– AAAM5/AAEAAAEmEAAA AAAM5/AAEAAAEmEAAB 20 RESEARCH DALLAS AAAM5/AAEAAAEmEAAC 30 SALES CHICAGO AAAM5/AAEAAAEmEAAD 40 OPERATIONS BOSTON www.2cto.com SQL> select get_rowid('AAAM5/AAEAAAEmEAAA') row_id from dual;…