如何将新架构添加到数据库?我正在创建一个新表,并想从属性列表中选择自己的模式,但是我不知道如何创建它。我正在使用SQL Server Management 2008。
Answers:
使用CREATE SCHEMA语法,或者在SSMS中,通过数据库-> YourDatabaseName->安全性->模式向下钻取。右键单击Schemas文件夹,然后选择“ New Schema ...”
您可以尝试以下方法:
use database
go
declare @temp as int
select @temp = count(1) from sys.schemas where name = 'newSchema'
if @temp = 0
begin
exec ('create SCHEMA temporal')
print 'The schema newSchema was created in database'
end
else
print 'The schema newSchema already exists in database'
go
在SQL Server 2016 SSMS中,展开'DATABASNAME'>展开'SECURITY'>展开'SCHEMA'; 右键单击弹出窗口中的“ SCHEMAS”,然后单击“ NEW SCHEMAS ...”,在打开的窗口中添加名称并添加所有者,即dbo单击“确定”按钮