Hi community,
i want to execute an 'update index statistics' on all the tables of my database.
To do so I first retrieve the list of tables and dispatch them in 4 files with the corresponding 'update index statistics' command.
I then execute 4 'isql' in background
isql -U xx -P xx -S xx -D xx -i xx1.sql -o xx1.log &
isql -U xx -P xx -S xx -D xx -i xx2.sql -o xx2.log &
isql -U xx -P xx -S xx -D xx -i xx3.sql -o xx3.log &
isql -U xx -P xx -S xx -D xx -i xx4.sql -o xx4.log &
By doing so, I was expecting to see several update statistics running but looking at the output of sp_who, I notice only one is being executed (see attachment)
I'd like to know if I'm doing anything wrong to have those update statistics executed in parallel
Thanks for your inputs
Simonsp-who.txt