J
Jay
Hi
I need to create a batch file that creates a sql script that includes a %
symbol in the sql code, like:
echo and dev_addr like "\\" + @source_app_server + "\%" > .\gsys.sql
but the % gets dropped and I get
and dev_addr like "\\" + @source_app_server + "\"
I've also tried
echo and dev_addr like "\\" + @source_app_server + "\^%" > .\gsys.sql
but I get
and dev_addr like "\\" + @source_app_server + "\^"
Can anybody tell me how I do this?
Thanks in advance.
Jay
I need to create a batch file that creates a sql script that includes a %
symbol in the sql code, like:
echo and dev_addr like "\\" + @source_app_server + "\%" > .\gsys.sql
but the % gets dropped and I get
and dev_addr like "\\" + @source_app_server + "\"
I've also tried
echo and dev_addr like "\\" + @source_app_server + "\^%" > .\gsys.sql
but I get
and dev_addr like "\\" + @source_app_server + "\^"
Can anybody tell me how I do this?
Thanks in advance.
Jay