Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,10 @@ Use the migration options to control the details of the migration process.

Truncate the data from the table before importing new data. Use this option with the `-dataOnly` option.

!!!note
If -truncLoad is spcified, all indexes and constraints are dropped before data laod and recreated afterward. Hence if data load is failed, indexes and constraints might be lacking. Manual operation might be necessary, depending on the situation.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
If -truncLoad is spcified, all indexes and constraints are dropped before data laod and recreated afterward. Hence if data load is failed, indexes and constraints might be lacking. Manual operation might be necessary, depending on the situation.
If `-truncLoad` is specified, all indexes and constraints are dropped before data load and recreated afterward. Hence, if the data load fails, it may be due to a lack of indexes and constraints. Manual intervention might be necessary, depending on the situation.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@zahid75 do you mind taking a look at this suggestion from an external contributor (which I rephrased above) and letting us know if its accurate so we can merge it? Thank you!

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi,
Greetings. Sorry to bother you again.
Could you please confirm if there is any progress here?

Kind Regards,
Yuki Tei

!!!

### `-enableConstBeforeDataLoad`

Include the `-enableConstBeforeDataLoad` option if a nonpartitioned source table is mapped to a partitioned table. This option enables all triggers on the target table, including any triggers that redirect data to individual partitions, before the data migration. `-enableConstBeforeDataLoad` is valid only if you also specify the `-truncLoad` parameter.
Expand Down