sql server dts:
Good day, when I execute a simple DTS package from DTS Designer in Visual Studio, it takes 5 Seconds to execute. The same package lasts about 50 seconds when I start it via DTExec in a stored procedure. I can see in the verbose output of the package, that it must have done nothing most of the time, it starts to execute the actual tasks in the last five seconds. Is there a fix for this or a better way to launch a package from a stored proc? Thanks in advance for any hint, Regards DC
Hi I have seen this problem with sp1. Check this. Go to the user that execute the package and Control panel, internet options, advanced, and uncheck check for publishers revocation certificate. cheers -- Francisco A. Gonzalez fgonzalez@solidq.com [quoted text, click to view] "DC" <dc@upsize.de> wrote in message news:1179928967.373341.186340@w5g2000hsg.googlegroups.com... > Good day, > > when I execute a simple DTS package from DTS Designer in Visual > Studio, it takes 5 Seconds to execute. The same package lasts about 50 > seconds when I start it via DTExec in a stored procedure. I can see in > the verbose output of the package, that it must have done nothing most > of the time, it starts to execute the actual tasks in the last five > seconds. > > Is there a fix for this or a better way to launch a package from a > stored proc? > > Thanks in advance for any hint, > > Regards > DC >
Hi Francisco, when I read your message I thought "Impossible! This guy must be joking." but of course I tried it anyway and deactivated the option you mentioned on the SQL Server machine and it WORKS! Execution time almost one minute when the option is checked, about three seconds when it is not checked. Do you know more tricks like that? Thanks a lot! Regards DC On 23 Mai, 16:27, "Francisco A. Gonzalez" <fgonza...@solidq.com> [quoted text, click to view] wrote: > Hi > > I have seen this problem with sp1. > Check this. > Go to the user that execute the package and Control panel, internet options, > advanced, and uncheck check for publishers revocation certificate. > > cheers > > -- > > Francisco A. Gonzalez > fgonza...@solidq.com > > "DC" <d...@upsize.de> wrote in message > > news:1179928967.373341.186340@w5g2000hsg.googlegroups.com... > > > > > Good day, > > > when I execute a simple DTS package from DTS Designer in Visual > > Studio, it takes 5 Seconds to execute. The same package lasts about 50 > > seconds when I start it via DTExec in a stored procedure. I can see in > > the verbose output of the package, that it must have done nothing most > > of the time, it starts to execute the actual tasks in the last five > > seconds. > > > Is there a fix for this or a better way to launch a package from a > > stored proc? > > > Thanks in advance for any hint, > > > Regards > > DC- Zitierten Text ausblenden - > > - Zitierten Text anzeigen -
No, I don't know how to down those 3 secconds you still got. I went crazy trying to fix that on a client production server. cheers -- Francisco A. Gonzalez fgonzalez@solidq.com [quoted text, click to view] "DC" <dc@upsize.de> wrote in message news:1180078037.881623.105720@p47g2000hsd.googlegroups.com... > Hi Francisco, > > when I read your message I thought "Impossible! This guy must be > joking." but of course I tried it anyway and deactivated the option > you mentioned on the SQL Server machine and it WORKS! Execution time > almost one minute when the option is checked, about three seconds when > it is not checked. Do you know more tricks like that? > > Thanks a lot! > > Regards > DC > > On 23 Mai, 16:27, "Francisco A. Gonzalez" <fgonza...@solidq.com> > wrote: >> Hi >> >> I have seen this problem with sp1. >> Check this. >> Go to the user that execute the package and Control panel, internet >> options, >> advanced, and uncheck check for publishers revocation certificate. >> >> cheers >> >> -- >> >> Francisco A. Gonzalez >> fgonza...@solidq.com >> >> "DC" <d...@upsize.de> wrote in message >> >> news:1179928967.373341.186340@w5g2000hsg.googlegroups.com... >> >> >> >> > Good day, >> >> > when I execute a simple DTS package from DTS Designer in Visual >> > Studio, it takes 5 Seconds to execute. The same package lasts about 50 >> > seconds when I start it via DTExec in a stored procedure. I can see in >> > the verbose output of the package, that it must have done nothing most >> > of the time, it starts to execute the actual tasks in the last five >> > seconds. >> >> > Is there a fix for this or a better way to launch a package from a >> > stored proc? >> >> > Thanks in advance for any hint, >> >> > Regards >> > DC- Zitierten Text ausblenden - >> >> - Zitierten Text anzeigen - > >
to ilustrate more: The thing is that when you execute a package (after installing SP1), CryptoAPI, on behalf of the SSIS service, attempts to go out to the internet to check a certificate revocation list. cheers -- Francisco A. Gonzalez fgonzalez@solidq.com [quoted text, click to view] "DC" <dc@upsize.de> wrote in message news:1180078037.881623.105720@p47g2000hsd.googlegroups.com... > Hi Francisco, > > when I read your message I thought "Impossible! This guy must be > joking." but of course I tried it anyway and deactivated the option > you mentioned on the SQL Server machine and it WORKS! Execution time > almost one minute when the option is checked, about three seconds when > it is not checked. Do you know more tricks like that? > > Thanks a lot! > > Regards > DC > > On 23 Mai, 16:27, "Francisco A. Gonzalez" <fgonza...@solidq.com> > wrote: >> Hi >> >> I have seen this problem with sp1. >> Check this. >> Go to the user that execute the package and Control panel, internet >> options, >> advanced, and uncheck check for publishers revocation certificate. >> >> cheers >> >> -- >> >> Francisco A. Gonzalez >> fgonza...@solidq.com >> >> "DC" <d...@upsize.de> wrote in message >> >> news:1179928967.373341.186340@w5g2000hsg.googlegroups.com... >> >> >> >> > Good day, >> >> > when I execute a simple DTS package from DTS Designer in Visual >> > Studio, it takes 5 Seconds to execute. The same package lasts about 50 >> > seconds when I start it via DTExec in a stored procedure. I can see in >> > the verbose output of the package, that it must have done nothing most >> > of the time, it starts to execute the actual tasks in the last five >> > seconds. >> >> > Is there a fix for this or a better way to launch a package from a >> > stored proc? >> >> > Thanks in advance for any hint, >> >> > Regards >> > DC- Zitierten Text ausblenden - >> >> - Zitierten Text anzeigen - > >
It was actually this way before SP1 as well. The only thing that SP1 has changed is that some files got signed by new certificate, so CryptoAPI has to validate two certificates instead of one, and it may take twice more time. If this check introduces significant delays, your firewall might be incorrectly configured (see details in kb 918644: http://support.microsoft.com/kb/918644) Regards, Michael. -- This posting is provided "AS IS" with no warranties, and confers no rights. [quoted text, click to view] "Francisco A. Gonzalez" <fgonzalez@solidq.com> wrote in message news:u7j$k3wnHHA.4424@TK2MSFTNGP03.phx.gbl... > to ilustrate more: > The thing is that when you execute a package (after installing SP1), > CryptoAPI, on behalf of the SSIS service, attempts to go out to the > internet to check a certificate revocation list. > > cheers > > -- > > Francisco A. Gonzalez > fgonzalez@solidq.com > > > > "DC" <dc@upsize.de> wrote in message > news:1180078037.881623.105720@p47g2000hsd.googlegroups.com... >> Hi Francisco, >> >> when I read your message I thought "Impossible! This guy must be >> joking." but of course I tried it anyway and deactivated the option >> you mentioned on the SQL Server machine and it WORKS! Execution time >> almost one minute when the option is checked, about three seconds when >> it is not checked. Do you know more tricks like that? >> >> Thanks a lot! >> >> Regards >> DC >> >> On 23 Mai, 16:27, "Francisco A. Gonzalez" <fgonza...@solidq.com> >> wrote: >>> Hi >>> >>> I have seen this problem with sp1. >>> Check this. >>> Go to the user that execute the package and Control panel, internet >>> options, >>> advanced, and uncheck check for publishers revocation certificate. >>> >>> cheers >>> >>> -- >>> >>> Francisco A. Gonzalez >>> fgonza...@solidq.com >>> >>> "DC" <d...@upsize.de> wrote in message >>> >>> news:1179928967.373341.186340@w5g2000hsg.googlegroups.com... >>> >>> >>> >>> > Good day, >>> >>> > when I execute a simple DTS package from DTS Designer in Visual >>> > Studio, it takes 5 Seconds to execute. The same package lasts about 50 >>> > seconds when I start it via DTExec in a stored procedure. I can see in >>> > the verbose output of the package, that it must have done nothing most >>> > of the time, it starts to execute the actual tasks in the last five >>> > seconds. >>> >>> > Is there a fix for this or a better way to launch a package from a >>> > stored proc? >>> >>> > Thanks in advance for any hint, >>> >>> > Regards >>> > DC- Zitierten Text ausblenden - >>> >>> - Zitierten Text anzeigen - >> >> > >
Don't see what you're looking for? Try a search.
|