To forewarn you...This is potentially a very stupid question.
I'm trying to figure out why things aren't running consistently in one of my batches. While perusing the logs I've only found one difference between the several runs. The script that is producing varying results is called like this:
whereas all the other scripts in the stream are called like this:
I've never seen the '<' before, so my question is...what is the difference between invoking a sql script with a '<' versus an '@'?
TIA
~Jake
I'm trying to figure out why things aren't running consistently in one of my batches. While perusing the logs I've only found one difference between the several runs. The script that is producing varying results is called like this:
Code:
sqlplus / < blah.sql
whereas all the other scripts in the stream are called like this:
Code:
sqlplus / @blah.sql
I've never seen the '<' before, so my question is...what is the difference between invoking a sql script with a '<' versus an '@'?
TIA
~Jake