4 réponses
A dump is a binary file containing the instructions for the recreation/loading of the Oracle database. Therefore, on Unix, you just need to use strings on the dump to see the information in string form (character string).
To see specific queries (allows you to view the original schema), you simply need to do:
strings |grep create <dump_name>
To see specific queries (allows you to view the original schema), you simply need to do:
strings |grep create <dump_name>