March 10, 2008 at 10:07 am
Hi,
I need to find the path/location at which the SSIS package that`s executing is stored.
How do I do that???
Thanks and Regards,
Bhoomika
March 10, 2008 at 11:07 am
select b.foldername, a.name
from msdb.dbo.sysdtspackages90 a with(nolock)
join msdb.dbo.sysdtspackagefolders90 b with(nolock)
on a.folderid = b.folderid
Tommy
Follow @sqlscribeMarch 12, 2008 at 3:04 am
Hi,
Thanks for the reply.
I used the query but the foldername comes blank.
Any suggestions???
Thanks and Regards,
Bhoomika
March 12, 2008 at 5:45 am
If the folder returns black then the package is likely stored at the root - i.e. /PackageName. You can connect to the SSIS instance via management studio and verify this as well.
Tommy
Follow @sqlscribeViewing 4 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply