How do I create a new user in a SQL Azure database?

后端 未结 9 1703
礼貌的吻别
礼貌的吻别 2020-12-12 13:17

I am trying to use the following template:

-- =================================================
-- Create User as DBO template for SQL Azure Database
-- ====         


        
9条回答
  •  再見小時候
    2020-12-12 13:24

    I think the templates use the following notation: variable name, variable type, default value.

    Sysname is a built-in data type which can hold the names of system objects.

    It is limited to 128 Unicode character.

    -- same as sysname type
    declare @my_sysname nvarchar(128);
    

提交回复
热议问题