Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
Blin
Starting Member
36 Posts |
Posted - 2005-09-14 : 09:49:26
|
| Does anyone know how to change the owner of a User Defined Data Type?Thanks,Ben |
|
|
spirit1
Cybernetic Yak Master
11752 Posts |
Posted - 2005-09-14 : 10:30:06
|
sp_changeobjectownerGo with the flow & have fun! Else fight the flow |
 |
|
|
TG
Master Smack Fu Yak Hacker
6065 Posts |
Posted - 2005-09-14 : 11:28:00
|
| I don't believe sp_changeObjectOwner works for user-defined data types. If the type is not in use just drop and recreate it using sp_droptype and sp_addtype. Otherwise I can't find a (supplied) way to change the owner.Be One with the OptimizerTG |
 |
|
|
|
|
|