문제

I accidentally dropped a table, and I recovered it with flashback statement and recycle bin information:

FLASHBACK TABLE "XXXXXXXXXXXXXXX==$0" TO BEFORE DROP;

But when I made it a select * from XXX it was empty.
Is there a way to recover the rows/information/data from that table?

OR, Does flashback recover all rows? maybe it's empty because it didn't have nothing at the first time.

도움이 되었습니까?

해결책

Have you tried FLASHBACK TABLE "XXXXXXXXXXXXXXX==$0" TO TIMESTAMP Clause? http://docs.oracle.com/cd/B28359_01/backup.111/b28270/rcmflash.htm#BRADV8702

FLASHBACK should recover the rows. This is its main purpose.

다른 팁

Flashback recovers all fields and records. If it is empty, then it most probably did not had anything before it was dropped.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top