Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
HI,
I am loading data from Script Editor Like below.
AB1:
Load
a,
b,
c
from (Source);
The issue is ,my datamodel looks something like below:
AB1:
AB1.a
AB1.b
AB1.c
Where as I only want my table to have only column names instead of table name.column name.
Thank you for the help.
Thanks,
Alva.
You might have a qualify statement before you load the table
QUALIFY *;
You need to comment it out and it should fix the issue for you.
No,I dont have any qualify statement...is there any setting in the document that I have to change ?
Can you share the complete script? Make sure that there is not hidden script?
does your data come from a .qvd file?
you can rename the fields
AB1:
load
AB1.a as a,
AB1.b as b,
AB1.c as c
from
....
No..it is coming from the .csv file directly.
Well you can still rename the fields as maxgro suggested.
So, if you are sure that there is not QUALIFY, you can write UNQUALIFY *; before load. Maybe it'll help.
UNQUALIFY will reverse a QUALIFy statement. It will not remove the table prefix if it is coming like that from the csv source file.
I think fileds in csv name like a,b,c and after load fields start name with prefix AB1.
Pavana.alvashetty, is'nt it?