EssCreateStorageTypedApplication() creates a new application with the option of data storage in Multidimensional or Aggregate Storage mode. Refer also to EssCreateApplication().
ESS_FUNC_M EssCreateStorageTypedApplication (hCtx, AppName, StorageType);
ESS_HCTX_T | hCtx |
ESS_STR_T | AppName |
ESS_DATA_STORAGE_T | StorageType |
hCtx | Essbase API context handle. |
AppName | Name of application to create. Application names can be 8 characters long, and can contain all special characters allowed in DOS file names. No spaces, commas, tabs, slashes, backslashes, or periods are allowed. The use of some special characters is not recommended because they are often used by the operating system (for example, @, $, %, and &). |
StorageType | The data storage type of the new application.
The valid values for StorageType are :
|
None.
For a server application, the caller must have Application Create/Delete/Edit privilege (ESS_PRIV_APPCREATE).
ESS_FUNC_M ESS_CreateASOApp (ESS_HCTX_T hCtx) { ESS_FUNC_M sts = ESS_STS_NOERR; ESS_STR_T AppName; AppName = "Sample"; sts = EssCreateStorageTypedApplication (hCtx, AppName, ESS_ASO_DATA_STORAGE); return(sts); }
EssCreateApplication()
EssCreateDatabase()
EssCreateObject()