CREATE USER |
Crée un utilisateur |
---|---|
Microsoft SQL Server |
Syntaxe
CREATE USER user_name [ { FOR | FROM } LOGIN login_name ] [ WITH limited_options_list [ ,... ] ] [ ; ] |
Syntaxe d'utilisateur basés sur les connexions dans le maître |
CREATE USER { windows_principal [ WITH options_list [ ,... ] ] | user_name WITH PASSWORD = 'password' [ , options_list [ ,... ] | Azure_Active_Directory_principal FROM EXTERNAL PROVIDER } [ ; ] |
Syntaxe d'utilisateurs n'authentifiant dans la base de données |
CREATE USER { windows_principal [ { FOR | FROM } LOGIN windows_principal ] | user_name { FOR | FROM } LOGIN windows_principal } [ WITH limited_options_list [ ,... ] ] [ ; ] |
Syntaxe d'utilisateurs basés sur les principaux de Windows se connectant via les connexions de groupe Windows |
CREATE USER user_name { WITHOUT LOGIN [ WITH limited_options_list [ ,... ] ] | { FOR | FROM } CERTIFICATE cert_name | { FOR | FROM } ASYMMETRIC KEY asym_key_name } [ ; ] options_list ::= DEFAULT_SCHEMA = schema_name | DEFAULT_LANGUAGE = { NONE | lcid | language name | language alias } | SID = sid | ALLOW_ENCRYPTED_VALUE_MODIFICATIONS = [ ON | OFF ] ] limited_options_list ::= DEFAULT_SCHEMA = schema_name ] | ALLOW_ENCRYPTED_VALUE_MODIFICATIONS = [ ON | OFF ] ] |
Syntaxe d'utilisateurs ne pouvant pas s'authentifier |
CREATE USER user_name [;] | Syntaxe de la base de données SQL lorsqu'elle est connectée à un membre de la fédération |
CREATE USER user_name [ { FOR | FROM } LOGIN login_name ] | FROM EXTERNAL PROVIDER [ WITH limited_options_list [ ,... ] ] [ ; ] limited_options_list ::= DEFAULT_SCHEMA = schema_name | DEFAULT_LANGUAGE = { NONE | lcid | language name | language alias } | ALLOW_ENCRYPTED_VALUE_MODIFICATIONS = [ ON | OFF ] ] |
Syntaxe pour les utilisateurs basée sur les connexions Azure AD pour l'instance gérée Azure SQL Database |
Description
Cette instruction permet de créer un utilisateur dans la base de données courante.
Dernière mise à jour : Vendredi, le 19 Juin 2020