Home > Common Problem > body text

Oracle imp command introduction

小老鼠
Release: 2023-09-19 14:19:39
Original
3444 people have browsed it

imp is a command line tool in Oracle database, used to import exported data and objects from one database instance to another database instance. The general syntax of the imp command is "imp username/password@connect_string file=file_name [options]".

Oracle imp command introduction

imp is a command line tool in Oracle database that is used to import exported data and objects from one database instance to another database instance.

The following is the general syntax of the imp command:

imp username/password@connect_string file=file_name [options]
Copy after login

The meaning of each parameter is as follows:

  • username/password@connect_string: Specify the database instance to be connected username, password, and connection string. For example, scott/tiger@localhost:1521/orcl.
  • file=file_name: Specify the file name of the imported data. It can be an exported .dmp file or .exp file.
  • options: Optional parameters used to specify imported options and settings.

Commonly used imp command options include:

  • full=y: Import all objects and data.
  • fromuser=source_user: Specify the source user for exporting data.
  • touser=target_user: Specify the target user for imported data.
  • tables=table_list: Specify the table name or list of table names to be imported.
  • indexes=y: Import indexes.
  • constraints=y: Import constraints.
  • ignore=y: Ignore errors during import.
  • ignore=y: Ignore errors during import.

The following is an example:

imp scott/tiger@localhost:1521/orcl file=expdat.dmp full=y
Copy after login

The above command will import all objects and data from the expdat.dmp file to the database instance under the scott user.

It should be noted that the imp command is obsolete in Oracle 10g and above versions. It is recommended to use the impdp command for data import and export operations.

The above is the detailed content of Oracle imp command introduction. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!