View Single Post

   
  #2 (permalink)  
Old 04-20-2008, 10:03 AM
david@smooth1.co.uk
 
Posts: n/a
Default 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

Reply With Quote