Question : sql update keeps stopping serivces

Anyway to disable the update for good???

sql 2005 sp3 update crashes the sql service and the sp3 can't be applied how to do manually install it ?

sql is used for the backup exec, using symanc install of sql server 2005

Answer : sql update keeps stopping serivces

I think this is a simpler approach
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
#!/bin/bash

cd /some/path

for dir in simrun*
do

  while true
  do
    if [ $(jobs | wc -l) -gt 8 ]
    then
       sleep 1
    else
       $dir/simrun <FCON> $dir/$dir.out &
       break 2
    fi
  done

done
~
Random Solutions  
 
programming4us programming4us