slash in a script
444182Mar 30 2006 — edited Mar 30 2006Hi,
I want to know what does a slash (/ befor update fnd_currencies and at the end) do in this script :
CONNEXION=`sqlplus -s APPS/SAPPS32 << EOF
SPOOL /prod/applis/BMSREP/Sysout/PARA04.log
update fnd_currencies
set enabled_flag = 'Y'
where enabled_flag = 'X'
and currency_code in ('AUD','CAD','CHF','CZK','DJF','DKK','EEK'
,'EUR','FRF','GBP','JPY','MYR','NOK','NZD'
,'SEK','SGD','STAT','TWD','USD','XAF','XPF')
/update fnd_currencies
set symbol = currency_code
where currency_code in ('EEK','EUR','FRF','XAF','XPF')
/
Many thanks before.