Mar 31, 2003 #1 Waynest Programmer Jun 22, 2000 321 GB Hello SQL Server 7 We have a couple of local DTS packages belonging to a chap who has left the company. I can't seem to find where you change the owner of the package? Thanks Wayne
Hello SQL Server 7 We have a couple of local DTS packages belonging to a chap who has left the company. I can't seem to find where you change the owner of the package? Thanks Wayne
Mar 31, 2003 #2 JamesLean Programmer Dec 13, 2002 3,059 GB They are stored in the sysdtspackages table in the msdb database. Column is owner: Code: USE msdb GO UPDATE sysdtspackages SET owner = '<new owner>' WHERE name = '<package name>' --James Upvote 0 Downvote
They are stored in the sysdtspackages table in the msdb database. Column is owner: Code: USE msdb GO UPDATE sysdtspackages SET owner = '<new owner>' WHERE name = '<package name>' --James