Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Creates a login account on the instance of SQL Server as defined by the Login object.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
Public Sub Create ( _
password As String, _
options As LoginCreateOptions _
)
'Usage
Dim instance As Login
Dim password As String
Dim options As LoginCreateOptions
instance.Create(password, options)
public void Create(
string password,
LoginCreateOptions options
)
public:
void Create(
String^ password,
LoginCreateOptions options
)
member Create :
password:string *
options:LoginCreateOptions -> unit
public function Create(
password : String,
options : LoginCreateOptions
)
Parameter
- password
Typ: System.String
String
Hinweise
The [FlagsAttribute] enumeration, LoginCreateOptions contains values that are used to specify the password options when you create a logon.
Value |
Description |
|---|---|
None = 0 |
No options |
IsHashed = 1 |
Indicates if the password has already been hashed, which allows passwords to be reapplied to a login. |
MustChange = 2 |
Indicates whether the user has to change the password on the next login. |
Siehe auch
Verweis
Microsoft.SqlServer.Management.Smo-Namespace