Establishes the database connection between One Identity Manager and Data Governance Edition. The Data Governance server must be initialized before you can use Data Governance Edition to manage your resources.
Note: This PowerShell cmdlet is used in conjunction with the Data Governance Server installation msi when manually installing Data Governance Edition.
Syntax:
Initialize-QDataGovernanceServer [-DatabaseConnectionString] <String> [[-IdentityManagerIsOracle [<SwitchParameter>]] [-DefaultEmployeeSid [<String>]] [<CommonParameters>]
Parameter | Description |
---|---|
DatabaseConnectionString |
Specify the database connection string used by Data Governance Edition to access the One Identity Manager database. An example of a connection string for Windows authentication may look like this: "Server=myServerAddress;Database=myDatabase;User Id=myUser;Password=myPassword;Trusted_Connection=True" An example of a connection string for SQL authentication may look like this: "Data Source=myServerAddress;Initial Catalog=myDatabase;User Id=myUser;Password=myPassword" |
IdentityManagerIsOracle |
If you are using an Oracle database management system for the One Identity Manager database, specify this parameter to indicate that an Oracle database is being used. NOTE: Oracle Database support was deprecated beginning with One Identity Manager 8.1. Do not use. |
DefaultEmployeeSid |
(Optional) Specify this parameter to take advantage of the automatic forest topology harvest. That is, adding this parameter adds the user associated with the specified SID to the One Identity Manager Identities with appropriate Data Governance application roles. NOTE: This provides the same functionality as selecting the Add the current user to the One Identity Manager Identities with Data Governance application roles option when using the Data Governance Configuration wizard. |
Examples:
Example | Description |
---|---|
Initialize-QDataGovernanceServer -DatabaseConnectionString 'Data Source=IMSQL;Initial Catalog=OneIM;UserID=sa;Password=template$PWD' |
Initializes Data Governance Edition with the One Identity Manager database with the supplied connection string |
Initialize-QDataGovernanceServer -DatabaseConnectionString 'Data Source=IMSQL;Initial Catalog=OneIM;UserID=sa;Password=myPwd' -DefaultEmployeeSid S-1-5-21-2969523365-1970145350-1015297841-500' |
Establishes connection between the One Identity Manager database and Data Governance Edition; and adds the specified identity to the One Identity Manager Identities with the Data Governance application roles. |