Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am loading data from script editor and while loading data I am getting table name in front of field names.How can I avoid this ?
My datamodel looks like below.
AB:
Load
A,
B
From (Source).
My dm looks like
AB
AB.A
AB.B
W\here as I only want it to display
AB
A
B
Thank you.
Please do not create duplicate thread for the same question. Please check the response on your other thread.
I thing you must used Qualify statement in your data model , that is reason AB.A is appearing which sunny is explained you in your previous post .
Thanks
Vikas
Hi,
Remove qualify statement if you used. Otherwise use 'alias' while loading fields.
Rgds,
Dinu1
Hi,
You are using the Qualify *; Statement above the load statement that's why you get Tablename.Fieldname for remove table name from field name you have to use Unqualify *; statement or remove this statement from the load statement.
Regards,
Anand