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 |
|
vinoth86
Starting Member
27 Posts |
Posted - 2008-04-22 : 02:16:57
|
| Hi, When i execute this querySELECT * FROM INFORMATION_SCHEMA.SCHEMATAWHERE SCHEMA_NAME = 'a424465'; I can see the..CATALOG_NAME SCHEMA_NAME SCHEMA_OWNER ... schema1 schema2I wanna change the SCHEMA_OWNER to be schema1...How can be done???Plz Help me ASAP.. |
|
|
RyanRandall
Master Smack Fu Yak Hacker
1074 Posts |
Posted - 2008-04-22 : 07:40:56
|
| [code]alter authorization on schema::schema1 to schema1[/code]Ryan Randall Solutions are easy. Understanding the problem, now, that's the hard part. |
 |
|
|
|
|
|