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

How to get both tables columns

Hi,

I have two tables in different databases but the column names are same when I am trying to reload it is getting Field names must be Unique how to sort this problem can anyone help me.

16 Replies
Not applicable
Author

but I have more than 70 columns in that It's difficult to rename all the columns right?

jagan
Luminary Alumni
Luminary Alumni

HI,

Can you attach sample script? It helps in understanding.

Regards,

jagan.

tresesco
MVP
MVP

I think you can use QUALIFY keyword like:

Qualify *;

Load A,B from ....;

Load A,B from  .....;

Not applicable
Author

How to use this Qualify am getting error?

Not applicable
Author

can you tell me How can i add script as it contains vast data.

tresesco
MVP
MVP

Ex:

qualify *;

unqualify TransID;    // If you want a certain one not to qualify, else remove this

select * from tab1;

select * from tab2;

select * from tab3;

Only TransID will be used for associations between the tables tab1, tab2 and tab3.

Not applicable
Author

I am trying to use as below it's not working

Qualify Table1;

Table2:

load colu1,

colu2,

etc

from T_tab.qvd

tresesco
MVP
MVP

Don't use table name for qualification. use qualify *; the tables names would be prefixed with the field names automatically.

Qualify *;

load colu1,

colu2

from T_tab.qvd

will generate like T_tab.colu1, T_tab.colu2 fields.

Not applicable
Author

How to get this?