Hi Kumar,
based on your description i thought you already know how to import using SQLA/BTEQ.
Assuming your data is in a readable delimited format:
In SQLA set the delimiter to the correct char (in tools - options - export/import) and use question marks as you showed in your query.
And in BTEQ
.import vartext 'your delimited char' file = yourfile.txt;
USING a (varchar(xx))), b (varchar(xx)), c (varchar(xx))
MERGE INTO KUMAR_TEST USING
VALUES(:a,:b,:c)
...
Dieter
Hi Kumar,
based on your description i thought you already know how to import using SQLA/BTEQ.
Assuming your data is in a readable delimited format:
In SQLA set the delimiter to the correct char (in tools - options - export/import) and use question marks as you showed in your query.
And in BTEQ
.import vartext 'your delimited char' file = yourfile.txt;
USING a (varchar(xx))), b (varchar(xx)), c (varchar(xx))
MERGE INTO KUMAR_TEST USING
VALUES(:a,:b,:c)
...
Dieter