SSIS package path

  • 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

  • select b.foldername, a.name

    from msdb.dbo.sysdtspackages90 a with(nolock)

    join msdb.dbo.sysdtspackagefolders90 b with(nolock)

    on a.folderid = b.folderid

  • Hi,

    Thanks for the reply.

    I used the query but the foldername comes blank.

    Any suggestions???

    Thanks and Regards,

    Bhoomika

  • 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.

Viewing 4 posts - 1 through 4 (of 4 total)

You must be logged in to reply to this topic. Login to reply