How to use Oracle DMP files?

后端 未结 3 1664
[愿得一人]
[愿得一人] 2021-01-05 02:04

I have some files of an Oracle database with username and password.

How do I connect to all files and browse the data tables and fields. I want to view all my recor

相关标签:
3条回答
  • 2021-01-05 02:37

    Two steps to get your data

    1. Install an oracle database
    2. Import the dmp files you had

    You can query the data using sql with username and password.

    0 讨论(0)
  • 2021-01-05 02:39

    Oracle .dmp files can only be read by Oracle tools. Try installing the free oracle 10g express and use the import command. Or you can use SQL developer which is installed by default with Oracle 10g express or can be downloaded and installed separately.
    Either way you need to import the files to an Oracle database to view the files easily.

    0 讨论(0)
  • 2021-01-05 02:39

    Those .dmp files are data dumps used for backup and recovery. You don't use them as is, but re-import them in your Oracle DBMS.

    0 讨论(0)
提交回复
热议问题