Updated on 2025-05-29 GMT+08:00

IMPDP TABLE PREPARE

Description

Specifies the preparation phase for importing a table.

Syntax

IMPDP TABLE PREPARE SOURCE = 'directory' OWNER = user;

Parameters

  • directory

    Data source directory of the imported table.

  • user

    Owner of the imported table.

Examples

-- The IMPDP TABLE PREPARE syntax is used for fine-grained backup and restoration and is called by the backup and restoration tool. If you directly call the syntax, an error message may be displayed, indicating that the directory does not exist. Therefore, you are advised not to directly call the syntax.
gaussdb=# IMPDP TABLE PREPARE SOURCE = '/data1/impdp/table0' OWNER=admin;