Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Mapping load - how to see the table?

Hi everyone,

When we create a mapping load table, is there a way to see that table in the table viewer (or somewhere else)?

1 Solution

Accepted Solutions
sunny_talwar

You can create another table if you want to keep it.... May be like this

Table:

LOAD Column1,

          Column2,

          Column3

FROM XYZ....;

MappingTable:

Mapping

LOAD *

Resident Table;

View solution in original post

3 Replies
trdandamudi
Master II
Master II

No, you will not see the mapping table in the Table viewer, If you want to see it then remove the the word 'Mapping' before the load statement and take a look. Hope this helps...

sunny_talwar

You can create another table if you want to keep it.... May be like this

Table:

LOAD Column1,

          Column2,

          Column3

FROM XYZ....;

MappingTable:

Mapping

LOAD *

Resident Table;

alexpanjhc
Specialist
Specialist

You can create the same table without using mapping load. You just need to be careful that it may change your data model, and you will see some unexpected results.