tekdudedude
Technical User
- Sep 29, 2007
- 79
Hello,
In the below batch file (.bat) my right parenthesis is being removed. How can I fix this?
The right parenthesis (in myfile.sql) is being removed at this place: '40M')
Thanks,
TD
In the below batch file (.bat) my right parenthesis is being removed. How can I fix this?
Code:
set SCHEMAS=SCOTT BETTY
FOR %%A IN (%SCHEMAS%) DO (
echo exec ctx_ddl.sync_index('%%A.DESCRIPTION_IDX','40M') ; >> %TMP%\myfile.sql
)
The right parenthesis (in myfile.sql) is being removed at this place: '40M')
Thanks,
TD