Reputation: 823
I know it is ridiculously easy to create a schema in TSQL:
CREATE SCHEMA <Schema Name>
I had someone ask how to do this through SQL Server Management Studio. I couldn't locate the context menu item to replicate this in SSMS. Anyone know how?
Upvotes: 8
Views: 12338
Reputation: 1309
In Object Explorer go to: Databases -> [YourDatabase] -> Security -> Schemas -> (right-click) New schema
Upvotes: 26