hi people,
SQL Server 2000 SP4
I'm sure this problem has been posted before, but the Search tool is not working today.
A coworker wants to modify a package that I created and own.
Even after I changed the package owner to her login, she still is not able to view/modify the Transform Tasks within the package.
In the past, changing the owner almost always resolves any permissions issues, but not for this package.
These are the steps I ran to make her the package owner:
Use MSDB
sp_reassign_dtspackageowner @name = 'GM Load Planworks File', @id = '{72E17C29-0F0F-4712-86F4-5702D9DC68B6}',
@newloginname = 'MEM1\JBI0'
update sysdtspackages
set owner_sid = SUSER_SID('MEM1\JBI0'),
owner = 'MEM1\JBI0'
where name = 'GM Load Planworks File'
Anything else I can try?
Thanks, John
SQL Server 2000 SP4
I'm sure this problem has been posted before, but the Search tool is not working today.
A coworker wants to modify a package that I created and own.
Even after I changed the package owner to her login, she still is not able to view/modify the Transform Tasks within the package.
In the past, changing the owner almost always resolves any permissions issues, but not for this package.
These are the steps I ran to make her the package owner:
Use MSDB
sp_reassign_dtspackageowner @name = 'GM Load Planworks File', @id = '{72E17C29-0F0F-4712-86F4-5702D9DC68B6}',
@newloginname = 'MEM1\JBI0'
update sysdtspackages
set owner_sid = SUSER_SID('MEM1\JBI0'),
owner = 'MEM1\JBI0'
where name = 'GM Load Planworks File'
Anything else I can try?
Thanks, John