如何使用Oracle DMP文件?
我有一些包含用户名和密码的 Oracle 数据库文件。
如何连接到所有文件并浏览数据表和字段。我想查看其中的所有记录。我要安装 Oracle 数据库服务器吗?或者互联网上有一个工具可以连接我的所有文件并浏览数据吗?
=== 文件扩展名为 .dmp ===
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 records in them. Do I install Oracle Database server? Or is there a tool on internet to connect with my all files and browse data?
=== Files have .dmp extension ===
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Oracle .dmp 文件只能由 Oracle 工具读取。尝试安装免费的 oracle 10g express 并使用 < a href="http://www.orafaq.com/wiki/Import_Export_FAQ" rel="noreferrer">导入命令。或者您可以使用已安装的 SQL Developer默认与Oracle 10g Express一起安装,也可以单独下载安装。
无论哪种方式,您都需要将文件导入 Oracle 数据库才能轻松查看文件。
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.
这些 .dmp 文件是用于备份和恢复的数据转储。您不会按原样使用它们,而是将它们重新导入到 Oracle DBMS 中。
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.
获取数据的两个步骤
您可以使用用户名和密码使用 sql 查询数据。
Two steps to get your data
You can query the data using sql with username and password.