Use Build JOB parameters in SQLCli
Summary
Use Build JOB parameters in SQLCliContent
Hi,
We have created SQLCli execution type build job where we are executing an insert statement. We want to use the build job level parameters in that insert statement.is that possible? we tried below -
insert into xxxxxtable values ('$USER_DB');
insert into xxxxxtable values ($USER_DB);
insert into xxxxxtable values (&USER_DB);
All above is not working, any suggestions on the syntax?
Thanks
Version
DevCS LatestCode Snippet
insert into xxxxxtable values ('$USER_DB'); insert into xxxxxtable values ($USER_DB); insert into xxxxxtable values (&USER_DB);
0