Oracle
 sql >> Database >  >> RDS >> Oracle

Passaggio dei parametri al file Oracle SQL dal file Batch

puoi usare variabili di sostituzione

update.sql

--
Update TableFooBar-&1 set column_foo='bar' where fooid = -99;
--

e poi chiama

sqlplus foo/[email protected] @update.sql <Machine-Name>