vote up 1 vote down star

We have an sql build script, with oracle 10.2. At the end of the script we have this:

@$ORACLE_HOME/rdbms/admin/utlrp.sql

Which works on Linux but not on Windows. So we created a second file with this line:

@%ORACLE_HOME%/rdbms/admin/utlrp.sql

Surely there is a better way. How can I refer to an environment variable in a cross-platform way? Or alternatively, is it possible to do OS detection in the sql file to guard each of the statements with an IF clause?

flag

40% accept rate

1 Answer

vote up 1 vote down check

I believe this syntax is what you need:

@?/rdbms/admin/utlrp.sql

However, this is just for the ORACLE_HOME variable. I don't know about others...

Edit:

It's a bit awkward, but you could look into setting SQLPATH environment variable as well. It's to SQL scripts in oracle as PATH is to executables in Unix/Windows.

link|flag
thanks, the question mark worked. Do you know perhaps where can I find documentation about it? – Yoni Jan 24 '09 at 14:57
Here's a passing reference to it in the 8i Administrator's Reference (for SGI Irix, how's that for a blast from the past): download.oracle.com/docs/html/…. It seems to be a SQL*Plus thing, but I haven't found it in that manual. – DCookie Jan 24 '09 at 18:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.