• Jason Edward Rowland (1/12/2010)


    There is another advantage to using this as opposed to SQL Agent. You can regulate the number of packages that execute concurrently by setting the max_queue_readers value.

    The following example would ensure that at the most, 3 packages can run simultaneously.

    create queue

    package_Queue

    with status =on,

    activation

    ( procedure_name = spExecQueuedPackages,

    max_queue_readers = 3,

    --Change this value to allow more or less packages to be executed on this queue simultaneously.

    execute as 'dbo' );

    euhm ... unless someone actually runs "start dtexec ..." which doesn't wait for the command to complete.

    Then it would just blow up your server 😉

    Johan

    Learn to play, play to learn !

    Dont drive faster than your guardian angel can fly ...
    but keeping both feet on the ground wont get you anywhere :w00t:

    - How to post Performance Problems
    - How to post data/code to get the best help[/url]

    - How to prevent a sore throat after hours of presenting ppt

    press F1 for solution, press shift+F1 for urgent solution 😀

    Need a bit of Powershell? How about this

    Who am I ? Sometimes this is me but most of the time this is me