Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Exclude table from export

Former Member
0 Likes
2,104

How can I exclude a table from export?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,462

firstly, you need to drop it from the database system, and then delete the table from dictionary(nametab), after this you'd better reset the worklist.

7 REPLIES 7
Read only

Former Member
0 Likes
1,463

firstly, you need to drop it from the database system, and then delete the table from dictionary(nametab), after this you'd better reset the worklist.

Read only

Former Member
0 Likes
1,462

what is the difference betwen ecxclude a table from export and exclude atable from a scan?

Read only

Former Member
0 Likes
1,462

exclude a table from export: result is this table will not be exported, so in the new Unicode system, there is no this table, exclude a table from a scan, then the table is just not processed in this scan.

Read only

Former Member
0 Likes
1,462

so, if I exlude one table from a scan, is this table only excluded from this scan or is excluded from all of the scans which happens after this scan?

Read only

Former Member
0 Likes
1,462

Or both of them are possible?

Read only

Former Member
0 Likes
1,462

Yes, both are possible. Table need to be maintained in exception list for being excluded from scan, btw, consistency scan is mandetory, you can not skip consistency check. If you include a table in the exception list before scan 2, then this table will be excluded from all of the scans from scan 2, in case you only want to exclude this table from scan 2, then after you execute scan 2, you need to remove this table from exception list.

Read only

Former Member
0 Likes
1,462

Hi expert, thank you.