Hi,
I am loading some tables using a batch file calling sqlplus scripts.
I would like to pass variables into the sqlplus script ( key ids) so
that the sqlplus script can pass the variables into stored procedure calls.
How do I do this?
example of what I am currently doing
batch file call:
sqlplus user/password@database @History_Load_Account_Trans_Daily
where @History_Load_Account_Trans_Daily is the name of the sqlplus script. I would like to pass in @History_Load_Account_Trans_Daily 12345, 999999. or other numbers or values.
so I can do this in the sqlplus script:
execute pkg_acct_serv_acct_trans_hist.load_daily_account_t rans_id (12345, 999999);
Thank you