How can I set the following value of a variable :
Also, how can I set the below command as a variable value using expression.
BULK INSERT + @[User:Table]
FROM @[User:Path]
WITH
(
FIELDTERMINATOR =' |',
ROWTERMINATOR =' |\n'
)
I am getting some errors .
I tried "BULK INSERT" + @[User:Table] +
"FROM" + @[User:Path]
+ " WITH
(
FIELDTERMINATOR =" + "' |'" + ",
ROWTERMINATOR ="+ "' |\n'" +
")"
It is not working.