Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
How to add one column in while loading data into data source
could some one help me ,where can i add ,how can i do that
Thanks in Advance
Niranjan
Hi guys Help me some one.....
Can you please elaborate about what exactly you want.
-Nilesh
Hi Nilesh,
while loading data into data source i need to add one column into top of the table
Regards,
Niranjan
you can add the column like this:
1) From Qvd:
Load *,'Test' as TestField
From Source_OF_FILE;
2) From DataBase:
Load *,'Test' as TestField;
Sql Select * From TableName;
Hope this will Help.
-Nilesh
LOAD
Field1,
Field2,
Field1 + Field2 as Field3
FROM yourqvd
load * field1+field2 as field3 ;
load field1,field2 , field2-field as field4 from qvd;
Are you talking Column (field) or Row (record)?
"while loading data into data source i need to add one column into top of the table"
/Nicolai