Re: OS type using SP
Not that I can think of.
Why does the platform type of the database server matter?
Perhaps run some sql to stick this into a table somewhere
that you can query rather than doing the uname each time?
X=`uname -a`
echo 'insert into table x values ("'${X}'";' | dbaccess mydb
stick this in a table |