JR Kincaid
JR Kincaid

Reputation: 823

Create Schema in SSMS

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

Answers (1)

rciq
rciq

Reputation: 1309

In Object Explorer go to: Databases -> [YourDatabase] -> Security -> Schemas -> (right-click) New schema

SSMS Schema

Upvotes: 26

Related Questions