Application Development 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: 

Exclude table from export

Former Member
1 ACCEPTED SOLUTION

Former Member
0 Kudos

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

Former Member
0 Kudos

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.

Former Member
0 Kudos

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

Former Member
0 Kudos

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.

Former Member
0 Kudos

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?

Former Member
0 Kudos

Or both of them are possible?

Former Member
0 Kudos

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.

Former Member
0 Kudos

Hi expert, thank you.