I'm executing a bat file with a rule that looks like....
=VALID(GET("BAT","-CMD c:\batch_trun_table.bat -TRACE -AUDIT "), FAIL("TRUNCATE TEMP TABLE: " + LASTERRORMSG()))
batch file =
sqlplus user/pw@sid @c:\path\truncat_temp_table.sql
sql file =
truncate table temp_table_name
Works once but after that it seems to fail with rc=3
What's going on and better yet how do I resolve the issue.
=VALID(GET("BAT","-CMD c:\batch_trun_table.bat -TRACE -AUDIT "), FAIL("TRUNCATE TEMP TABLE: " + LASTERRORMSG()))
batch file =
sqlplus user/pw@sid @c:\path\truncat_temp_table.sql
sql file =
truncate table temp_table_name
Works once but after that it seems to fail with rc=3
What's going on and better yet how do I resolve the issue.