EngineManagerDestroyAndReinitializeAllData Method |
Destroys all data in the application database and re-initializes the database.
Namespace: Dundas.BIAssembly: Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (26.2.0.1000)
Syntax[EditorBrowsableAttribute(EditorBrowsableState.Never)]
public static void DestroyAndReinitializeAllData(
string appDbConnString,
string appDataPath,
string? warehouseDbConnString,
string adminPassword,
string adminEmail,
LicenseSeatKind adminSeatKind,
bool isAdminSeatReserved,
bool installDefaultLicense,
IServiceProvider? parentContainer = null,
bool createDefaultTimeDimension = true,
ApplicationStorageEngine? applicationStorage = null
)
<EditorBrowsableAttribute(EditorBrowsableState.Never)>
Public Shared Sub DestroyAndReinitializeAllData (
appDbConnString As String,
appDataPath As String,
warehouseDbConnString As String,
adminPassword As String,
adminEmail As String,
adminSeatKind As LicenseSeatKind,
isAdminSeatReserved As Boolean,
installDefaultLicense As Boolean,
Optional parentContainer As IServiceProvider = Nothing,
Optional createDefaultTimeDimension As Boolean = true,
Optional applicationStorage As ApplicationStorageEngine? = Nothing
)
public:
[EditorBrowsableAttribute(EditorBrowsableState::Never)]
static void DestroyAndReinitializeAllData(
String^ appDbConnString,
String^ appDataPath,
String^ warehouseDbConnString,
String^ adminPassword,
String^ adminEmail,
LicenseSeatKind adminSeatKind,
bool isAdminSeatReserved,
bool installDefaultLicense,
IServiceProvider^ parentContainer = nullptr,
bool createDefaultTimeDimension = true,
Nullable<ApplicationStorageEngine> applicationStorage = nullptr
)
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
static member DestroyAndReinitializeAllData :
appDbConnString : string *
appDataPath : string *
warehouseDbConnString : string *
adminPassword : string *
adminEmail : string *
adminSeatKind : LicenseSeatKind *
isAdminSeatReserved : bool *
installDefaultLicense : bool *
?parentContainer : IServiceProvider *
?createDefaultTimeDimension : bool *
?applicationStorage : Nullable<ApplicationStorageEngine>
(* Defaults:
let _parentContainer = defaultArg parentContainer null
let _createDefaultTimeDimension = defaultArg createDefaultTimeDimension true
let _applicationStorage = defaultArg applicationStorage null
*)
-> unit Parameters
- appDbConnString String
- The application database connection string.
- appDataPath String
- The application data path.
- warehouseDbConnString String
- The warehouse database connection string.
- adminPassword String
- The new administrator password.
- adminEmail String
- The administrator's e-mail address.
- adminSeatKind LicenseSeatKind
- The kind of seat to associate with the administrator account.
- isAdminSeatReserved Boolean
- If set to , the administrator's seat is reserved.
- installDefaultLicense Boolean
- If set to , a default license will be installed.
- parentContainer IServiceProvider (Optional)
- Optional parent service container for the Engine used to perform the operation.
- createDefaultTimeDimension Boolean (Optional)
- If set to , the global default time dimension will be created.
- applicationStorage NullableApplicationStorageEngine (Optional)
- The application storage.
See Also