Tuesday, April 28, 2009

Essbase Security Filter Samples via Maxl

Here are some examples of other types of filters you may need to create:


/*-------------------------------------------------------------------------------------------------------------*/
/* WRITE ACCESS TO BUDGET */
/*-------------------------------------------------------------------------------------------------------------*/
create or replace filter Sample.Basic.'FilterName' WRITE on '"Budget"';


/*-------------------------------------------------------------------------------------------------------------*/
/* WRITE ACCESS TO BUDGET & LEVEL 0 MARKET */
/*-------------------------------------------------------------------------------------------------------------*/
create or replace filter Sample.Basic.'FilterName' WRITE on '"Budget", @LEVMBRS("Market",0)';

Essbase Security Maxl Script

Here is a simple example of how to maintain Essbase security in a maxl statement:

spool on to Security.log;
login admin password on localhost;
set timestamp on;


/*-------------------------------------------------------------------------------------------------------------*/
/* READ ACCESS TO WEST AND ITS DESCENDANTS ONLY */
/*-------------------------------------------------------------------------------------------------------------*/
create or replace filter Sample.Basic.'Read_WestMarket_Filter' READ on '@IDESCENDANTS("West")';


/*-------------------------------------------------------------------------------------------------------------*/
/* CREATE GROUP(S) */
/*-------------------------------------------------------------------------------------------------------------*/
create or replace group 'Read_WestMarket_Group';


/*-------------------------------------------------------------------------------------------------------------*/
/* GRANT FILTER ACCESS TO GROUP(S) */
/*-------------------------------------------------------------------------------------------------------------*/
grant filter TestApp.TestDb.'Read_WestMarket_Filter' to 'Read_WestMarket_Group';


/*-------------------------------------------------------------------------------------------------------------*/
/* ADD USERS TO GROUP(S) */
/*-------------------------------------------------------------------------------------------------------------*/
alter user testuser1 add to group 'Read_WestMarket_Group';


logout;
spool off;
exit;

Create all of your filters in one section, then create all of your groups, then grant the filters to the groups and finally put the users in those groups.

Sunday, April 26, 2009

Essbase - Export Data (Post 3 of 3)

DATAEXPORT Calculation function:
I have been working with Essbase for a long time and I wish this function came out a long time ago.

* Only available in BSO applications as Calc Functions are not supported in ASO.

* You can export data to a text file while specifying the delimiter and file path/name (I have used this often since the release)

* You can export data to a binary file (haven't needed to go down this path yet, but looking forward to testing with it)

* You can export data to a relational database (like SQL Server) using an ODBC connection, be careful with this if you are using SQL Server 2005, had some issues about 1 year ago and the help desk really didn't help...but no issues with SQL Server 2000.

* The best part about this function is that it works like any other calculation function where you can FIX on any subset of data. So, if you only to fix on "Actual", for the Month of January, for a specific product..YOU CAN!!! The performance is very fast (assuming you have your dense/sparse settings set up properly)

* You have the ability to Export data based on certain conditions, like "Sales">500.

* Not only can you export using a Fix statement, you have ability to control the format of the text file (similar to report script functionality). Here are the options (I've used the ones in bold most often):

DataExportLevel ALL | LEVEL0 | INPUT;
DataExportDynamicCalc ON | OFF;
DataExportDecimal n;
DataExportPrecision n;
DataExportColFormat ON | OFF;
DataExportColHeader dimensionName;
DataExportDimHeader ON | OFF;
DataExportRelationalFile ON | OFF;
DataExportOverwriteFile ON | OFF;
DataExportDryRun ON | OFF;

Essbase - Export Data (Post 2 of 3)

Report Scripts:

* You can export data using a report script. Prior to Version 9.3.1, this was the only means of getting a subset of data out of an Essbase database. Not a big fan of them, but if you are running a version prior to 9.3.1, then you need to use them.


/*--------------------------------------------------------------------------*/
/* EXPORT DATA USING REPORT SCRIPT */
/*--------------------------------------------------------------------------*/

export database ASOsamp.Sample using report_file "'$ARBORPATH/app/ASOsamp/Sample/XptData.rep'" to data_file 'C:\Temp\ReportExport.txt';

Essbase - Export Data (Post 1 of 3)

There are a couple ways to export data from an Essbase cube, the old-school way and now in version 9.3, there is the calculation function "DATAEXPORT". Let's discuss in detail:

Export Data (the capability that has been around all along):

* For Block Storage Applications, you can export all data, level-0 data or input-level data. The 'all data' option is nice, but that assumes your hierarchies don't change or level-0 member doesn't get remapped to a new Level-1 member. So, if you hierarchies don't change and it takes too long to aggregate (CALCALL) your cube, then the 'all data' option is the way to go. If your hierarchies change often, then you need your level-0 option (this is the option I prefer to use most of the time as the hierarchies will change at some point in time and its easier to reload based on level-0 then all data. I rarely use the input-level data, as my input data is usually my level-0 data.

* You can export the data into column format or non column format. This option works well depending on what you are trying to accomplish. Column format files will be larger in size than non column format files, but you can use a load rule to load that data into another cube. Say you have to make some sort of data manipulation to get that data into your new cube, it would be advantageous to use a load rule and perform your data manipulation. If you want to simply update your hierarchies, then you can use the non-column format option (which is not pretty), but the file size is smaller. Smaller files size will mean faster export time and faster import time, but you can't you use a load rule for any data manipulation.

* You can export to multiple files at one time, like this:


/*--------------------------------------------------------------------------*/
/* EXPORT DATABASE TO 8 FILES */
/*--------------------------------------------------------------------------*/
export database Sample.Basic level0 data in columns
to data_file 'C:\Temp\ExportData1.0.Txt',
'C:\Temp\ExportData2.0.Txt',
'C:\Temp\ExportData3.0.Txt',
'C:\Temp\ExportData4.0.Txt',
'C:\Temp\ExportData5.0.Txt',
'C:\Temp\ExportData6.0.Txt',
'C:\Temp\ExportData7.0.Txt',
'C:\Temp\ExportData8.0.Txt';

* When you run the level-0 export, you will get upper level data on all dense dimensions, don't be alarmed, its just how the functionality works, even if the member properties are set as dynamic calcs

* The export function will NOT export any values for Dynamic Calc members, only Stored members (unless its a dense dimension)

* In version 9 (not sure which release), but users are able to retrieve on the database during the export process. Previous versions used to lock the database from any Read-Only action.

Thursday, April 23, 2009

Additional Maxl Samples

/*--------------------------------------------------------------------------*/
/* SET VARIABLE FOR CURRENTMONTH */
/*--------------------------------------------------------------------------*/
alter database Basic.Sample set variable "CurrentMonth" "July";


/*--------------------------------------------------------------------------*/
/* EXPORT DATA USING REPORT SCRIPT */
/*--------------------------------------------------------------------------*/
export database ASOsamp.Sample using report_file "'$ARBORPATH/app/ASOsamp/Sample/XptData.rep'" to data_file 'C:\Temp\ReportExport.txt';


/*--------------------------------------------------------------------------*/
/* EXECUTE CALCULATION */
/*--------------------------------------------------------------------------*/
execute calculation Sample.Basic.CALCALL;


/*--------------------------------------------------------------------------*/
/* KILL ALL REQUESTS TO DATABASE */
/*--------------------------------------------------------------------------*/
alter system kill request on application Sample;


/*--------------------------------------------------------------------------*/
/* LOGOUT ALL SESSIONS TO DATABASE */
/*--------------------------------------------------------------------------*/
alter system logout session on application Sample;


/*--------------------------------------------------------------------------*/
/* DISABLE CONNECTIONS TO DATABASE */
/*--------------------------------------------------------------------------*/
alter application Sample disable connects;


/*--------------------------------------------------------------------------*/
/* ENABLE CONNECTIONS TO DATABASE */
/*--------------------------------------------------------------------------*/
alter application Sample enable connects;


/*--------------------------------------------------------------------------*/
/* CLEAR APPLICATION LOG FILE */
/*--------------------------------------------------------------------------*/
alter application Sample clear logfile;


/*--------------------------------------------------------------------------*/
/* CLEAR ESSBASE LOG FILE */
/*--------------------------------------------------------------------------*/
alter system clear logfile;

/*--------------------------------------------------------------------------*/
/* LOAD DATA TO ASO SLICE */
/*--------------------------------------------------------------------------*/
import database ASOsamp.Sample data from load_buffer with buffer_id 1 override values create slice;

Export Database to Multiple files

/*--------------------------------------------------------------------------*/
/* EXPORT DATABASE TO 8 FILES */
/*--------------------------------------------------------------------------*/
export database Sample.Basic level0 data in columns
to data_file 'C:\Temp\ExportData1.0.Txt',
'C:\Temp\ExportData2.0.Txt',
'C:\Temp\ExportData3.0.Txt',
'C:\Temp\ExportData4.0.Txt',
'C:\Temp\ExportData5.0.Txt',
'C:\Temp\ExportData6.0.Txt',
'C:\Temp\ExportData7.0.Txt',
'C:\Temp\ExportData8.0.Txt';

NOTE: This process is useful when the export files are very large and go over the standard 2GB size and this gives you the ability to control how many files are created (always 8 files)...especially if you have automated processes that rebuilds your databases each night.

Other commonly used Maxl Script commands

/*--------------------------------------------------------------------------*/
/* LOAD APPLICATION AND DATABASE */
/*--------------------------------------------------------------------------*/
alter system load application ASOsamp;
alter application ASOsamp load database Sample;


/*--------------------------------------------------------------------------*/
/* COPY BSO OTL TO ASO APPLICATION */
/*--------------------------------------------------------------------------*/
CREATE OR REPLACE OUTLINE ON AGGREGATE_STORAGE DATABASE ASOsamp.Sample AS OUTLINE ON DATABASE Sample.Basic ;

/*--------------------------------------------------------------------------*/
/* BUILD ACCOUNTS DIMENSION */
/*--------------------------------------------------------------------------*/
set Dimension=Accounts;
set RulesFile=AcctASO;
import database ASOsamp.Sample dimensions
from local data_file 'C:\Temp\Accounts.txt'
using server rules_file 'Accounts'
on error write to 'DimAcct.err';

NOTE: Same syntax for Block Storage vs Aggregate Storage Databases

Maxl Script Sample

Here are some examples of Essbase Maxl Scripts. They were based off of the Sample.Basic and ASOsamp.Sample databases.


Load Data into the ASOsamp.Sample database. Those items in bold should be utilized in all maxl scripts.

spool on to LoadData.Log;
login admin password on localhost;
set timestamp on;

/*--------------------------------------------------------------------------*/
/* UNLOAD APPLICATION */
/*--------------------------------------------------------------------------*/
alter system unload application ASOsamp;

/*--------------------------------------------------------------------------*/
/* LOAD APPLICATION */
/*--------------------------------------------------------------------------*/
alter system load application ASOsamp;

/*--------------------------------------------------------------------------*/
/* CLEAR DATA FROM ASO APPLICATION */
/*--------------------------------------------------------------------------*/
alter database ASOSamp.Sample reset;

/*--------------------------------------------------------------------------*/
/* INITIALIZE ASO BUFFER */
/*--------------------------------------------------------------------------*/
alter database ASOSamp.Sample initialize load_buffer with buffer_id 1;

/*--------------------------------------------------------------------------*/
/* LOAD DATA TO BUFFER 1 */
/*--------------------------------------------------------------------------*/
import database ASOSamp.Sample data
from local data_file "'$ARBORPATH/app/ASOsamp/Sample/dataload.txt'"
using server rules_file 'dataload' to load_buffer with buffer_id 1
on error write to 'dataload.err';

/*--------------------------------------------------------------------------*/
/* LOAD DATA FROM BUFFER */
/*--------------------------------------------------------------------------*/
import database ASOSamp.Sample data from load_buffer with buffer_id 1;

/*--------------------------------------------------------------------------*/
/* AGGREGATE DATABASE */
/*--------------------------------------------------------------------------*/
execute aggregate process on database ASOSamp.Sample stopping when total_size exceeds 1.5;

logout;
spool off;
exit;


NOTE: You can put the spool on after the login code so that your log file will capture the login information.

Wednesday, April 22, 2009

MDX Formula - Missing Quotes???

One odd thing that I've come across in an Aggregate Storage Cube in version 9.3.1 is adding an MDX formula to a member via load rule using a text file as the source. If you have an MDX formula that contains a statement like IsUda(Time.CurrentMember, "OPEN_MONTH"), Essbase will not build the formula in the outline with the quotes in it. Instead, it will create the formula like this IsUda(Time.CurrentMember, OPEN_MONTH). This will cause a verification issue since OPEN_MONTH is not a current member, but rather a UDA. However, without the quotes, it will not recognize it as a UDA. Check out an example here

Data Manipulation

Load rules can be used to load data, modify outlines or both. I've always been a big believer on making any "data manipulations" in your source system. For instance, you are performing a dimension build that needs to combine 2 or more columns to create a new field. This can be done with a load rule, but when in doubt, perform this step in SQL or your source system to limit the amount of data manipulations that need to occur in a load rule. Believe it or not, over time, a load rule can become corrupt and if you don't have a backup (and you should always have a backup, but just in case you don't, it will be hard to recreate all the data manipulations that you made in a load rule.

With that being said, I've come across numerous clients that don't have the ability to change the source dimension files (for example, the files come directly from SAP) so you will need to make data modifications in a load rule at some point in time, here's some examples of things you can do:

--------------------------------

Add Prefix or Suffix
As I noted on the Field Properties page, you can add a Prefix and Suffix to any field. This is really straight forward, let's say your data comes in as 2009, 2010, 2011, but your members in the Year dimension are YR2009, YR2010, YR2011. Instead of changing your data files, simply add a prefix of YR on the Global Properties tab of the Field Properties option. After you make the change, you will see the preview of your data change to YR2009, YR2010, YR2011 instead of 2009, 2010, 2011.

Thursday, January 15, 2009

Error Codes

Error 1001000 - Unable to Open Report File [%s] on Server
Error 1001001 - Unknown Command [%s] in Report
Error 1001002 - Incorrect Syntax for Range Format in Report
Error 1001003 - Unknown Member [%s] in Report
Error 1001004 - Incorrect Format Following [%s] in Report
Error 1001005 - Unknown Member [%s] in Report
Error 1001006 - Unknown Item [%s] Ignored in Report
Error 1001008 - Unknown Member [%s] in Reset Command in Report
Error 1001009 - Unknown Member [%s] in Zoom Command in Report
Error 1001010 - Unknown Member [%s] in Zoom In Command in Report
Error 1001011 - Currency Command in Report and No Currency Database Set
Error 1001013 - Unknown Member [%s] in Dimend Command in Report
Error 1001014 - Unknown Member [%s] in Page Command in Report
Error 1001015 - Unknown Member [%s] in Row Command in Report
Error 1001016 - Unknown Member [%s] in Column Command in Report
Error 1001017 - Unable to Send Data Over Pipe in Report
Error 1001018 - Unable to Send Data Over Pipe in Report
Error 1001019 - Unable to Read Data Over Pipe in Report
Error 1001020 - Unable to Read Data Over Pipe in Report
Error 1001022 - Extractor debug input: [%s]
Error 1001023 - Not Enough Memory to Complete Command
Error 1001025 - Not Enough Memory to Complete Command
Error 1001026 - Incorrect Syntax in Row Command in Report
Error 1001027 - Incorrect Syntax in Row Command in Report
Error 1001028 - Incorrect Syntax in Column Command in Report
Error 1001029 - Incorrect Syntax in Column Command in Report
Error 1001030 - Incorrect Syntax in Page Command in Report
Error 1001031 - Incorrect Syntax in Page Command in Report
Error 1001032 - Column Width Exceeded 255 Columns in Report
Error 1001033 - Missing Closing Brace in Report
Error 1001058 - Incorrect Asymmetric Report, [%s] Records Processed
Error 1001059 - Unrecognized Relationship Code in DdbSelMbrs [%s]-ignored
Error 1001060 - Formats Too Long, Ignoring Format [%s] in Report
Error 1001062 - Member [%s] From Same Dimension As Previous Member
Error 1001063 - You do not have sufficient access to perform a lock on this database
Error 1001064 - You do not have sufficient access to perform a read on this database
Error 1001065 - Regular Extractor Elapsed Time : [%s] seconds
Error 1001069 - Missing parenthesis in Link Command.
Error 1001070 - Unknown Latest Member for [%s] in Report
Error 1001071 - Unmatched parenthesis in [%s] command in Report
Error 1001072 - Syntax error in LINK Command
Error 1001073 - Members from different dimensions are selected in the LINK command.
Error 1001074 - Syntax error in LINK Command. Number of arguments exceeded the maximum of [%s].
Error 1001075 - The report contains an Attibute Aggregation member with no Attribute members present.
Error 1001076 - Member [%s] is not an attribute member.
Error 1001077 - Invalid date format in LINK Command
Error 1001078 - Cannot form a valid attribute value from [%s]
Error 1001079 - Dimension [%s] does not have any base members
Error 1001080 - Report parser internal error near [%s]. Cannot continue processing.
Error 1001081 - Report parser error at [%s]. Not enough memory to continue processing.
Error 1001082 - Report scanner error. Error in Scanning command [%s] in report.
Error 1001083 - Report parser error. Cannot have more than one RESTRICT command per script.
Error 1001084 - Report parser error. Cannot have more than one ORDERBY command per script.
Error 1001085 - Report parser error. Cannot have more than one TOP command per script.
Error 1001086 - Report parser error. Cannot have more than one BOTTOM command per script.
Error 1001087 - Report parser error. Missing left parenthesis at [%s].
Error 1001088 - Report parser error. Missing right parenthesis at [%s].
Error 1001089 - Report parser error. [%s] should be a numeric value.
Error 1001090 - Report parser error. [%s] should be a positive integer value greater than zero.
Error 1001091 - Report parser error. [%s] exceeds the [256] maximum number of columns allowed in a report.
Error 1001092 - Report parser error. [%s] should be a @DATACOL()
Error 1001093 - Report parser error. Syntax error at [%s].
Error 1001094 - Report parser error. Member [%s] not found.
Error 1001095 - Report parser error. Top of Stack is reached. Command too long at [%s].
Error 1001096 - Report parser error. Missing Comma near [%s].
Error 1001097 - Report parser error. Illegal command operations near [%s]. Cannot continue processing.
Error 1001099 - Report parser error. Unknown token [%s].
Error 1001200 - Report error. Not enough memory to continue processing.
Error 1001201 - Report error. The DATACOL() argument [%s] in the ORDERBY command must have a value between [1] and the max number of columns [%s] in the report.
Error 1001202 - Report error. [%s] in the ORDERBY command is not a row member.
Error 1001203 - Report error. The DATACOL() argument [%s] in the TOP or BOTTOM command must have a value between [1] and the max number of columns [%s] in the report.
Error 1001204 - Report error. [%s] in the TOP or BOTTOM command is not a row member.
Error 1001207 - Report error. The DATACOL() arguments [%s] and [%s] in the TOP and BOTTOM commands do not match.
Error 1001208 - Report error. The DATACOL() argument [%s] in the RESTRICT command must have a value between [1] and the max number of columns [%s] in the report.
Error 1001209 - Report error. TOP or BOTTOM returned rows argument value should be greater than 0.
Error 1001210 - Report error. Row Grouping member is not the same in the existing TOP, BOTTOM and ORDERBY statements.
Error 1001211 - Report error. The number of Columns in the Report exceed the allowed maximum of [256].
Error 1001212 - Invalid field name [%s] in SelectMbrInfo command
Error 1001213 - Invalid operator or value in expression involving [%s]
Error 1001214 - The UDA Command Does Not Support Attribute Dimension Members.
Error 1001250 - Report Writer Sparse Extractor method will be executed
Error 1001251 - Sparse Extractor method is setting SUPMISSINGROWS on
Error 1001252 - No sparse row dimensions exist in the report. Optimization is not performed in Sparse extractor method
Error 1001253 - Report Writer Sparse Optimization method will be enabled up to row dimension [%s]
Error 1001301 - Report execution aborted. Sort buffer limit of [%s] rows have been exceeded.
Error 1002000 - Unable to Open Ascii File [%s]
Error 1002001 - Reading Ascii Data File [%s]
Error 1002002 - Expecting Section Keyword and Received [%s] Instead
Error 1002003 - Database Outline not Loaded for Database
Error 1002004 - Unable to Load Database Outline Without SETDB Command
Error 1002005 - Unable to Load Ascii File [%s]
Error 1002006 - Ascii File [%s] Loaded
Error 1002022 - Config Parameter [%s] Too Low, Setting to Minimum [%s]
Error 1002023 - Config Parameter [%s] Too High, Setting to Maximum [%s]
Error 1002030 - Database Name [%s] Has Invalid Characters, Name Must Be Valid File Name
Error 1002031 - Database [%s] Has Already Been Created
Error 1002032 - 64K Memory Segment Limit Prevents Creation of Another Database Context
Error 1002034 - Unable to Create Member Locking Semaphore
Error 1002035 - Starting Essbase Server - Application [%s]
Error 1002076 - Unable to Update Server Configuration Information
Error 1002077 - Error Reading Server Configuration Information
Error 1002080 - Loading System CFG File [%s]
Error 1002081 - Processing System Command [%s]
Error 1002082 - Unknown System Config item [%s] Ignored
Error 1002083 - System CFG File [%s] Load Completed
Error 1002084 - Missing System Config File [%s], Using Internal Defaults
Error 1002086 - Unable to Open Spreadsheet Log File [%s]
Error 1002087 - Unable to create Spreadsheet Log Semaphore
Error 1002088 - Starting Spreadsheet Log [%s] For Database [%s]
Error 1002089 - RECEIVED ABNORMAL SHUTDOWN COMMAND - APPLICATION TERMINATING
Error 1002091 - Must specify either session or system
Error 1002092 - Must specify one of enable|disable|dump|reset
Error 1002093 - %s
Error 1002094 - Unable to create Last Rpl Semaphore
Error 1002095 - Connection was terminated
Error 1002096 - Operation cancelled at user request
Error 1002097 - Unable to load database [%s]
Error 1002098 - Timed out waiting for request queue
Error 1002099 - Essbase Kernel initialization (EssSmInit) failed. (userid = [%s] password = [xxxxxxx]).
Error 1002100 - Application [%s] init (EssSmAppInit) failed.
Error 1002101 - Application [%s] creation (EssSmAppCreate) failed.
Error 1002102 - Illegal combination of reset values %d
Error 1002104 - Unable to create Performance Statistic Mutex
Error 1002105 - Attempt to register database for statistics gathering failed
Error 1002107 - Invalid barrier synchronization type: %d
Error 1002108 - Cannot change owner for file: [%s] to [%s]
Error 1003000 - Unknown Item [%s] in Data Load, [%s] Records Completed
Error 1003001 - Duplicate Members From Same Dimension On Data Record, [%s] Records Completed
Error 1003003 - Unable to Continue Data Load After Item [%s], [%s] Records Completed
Error 1003004 - Incorrect Number Of Column Members In Symmetric File After [%s] Records Completed
Error 1003005 - Incorrect Number Of Column Members In Asymmetric File After [%s] Records Completed
Error 1003006 - Unknown Text File Type After [%s] Records Completed
Error 1003007 - Data Value [%s] Encountered Before All Dimensions Selected, [%s] Records Completed
Error 1003008 - With Data Value [%s], Too Many Values In Row, [%s] Records Completed
Error 1003010 - Data Value [%s] Does Not Match #Missing Value in Database, [%s] Records Completed
Error 1003011 - Data Value [%s] Does Not Match #Invalid Value in Database, [%s] Records Completed
Error 1003012 - Data Value [%s] is Greater Than Value in Database, [%s] Records Completed
Error 1003013 - Data Value [%s] is Less Than Value in Database, [%s] Records Completed
Error 1003014 - Unknown Member [%s] in Data Load, [%s] Records Completed
Error 1003015 - Member [%s] is from the same dimension as members defined in Header Name, [%s] Records Completed
Error 1003022 - Unable to Open Data File [%s]
Error 1003023 - You have insufficient access privileges to perform a lock on this database
Error 1003024 - Data Load Elapsed Time : [%s] seconds
Error 1003025 - DATAERRORLIMIT reached [%s]. Rejected records will no longer be logged
Error 1003026 - Invalid Token Encountered near EOF
Error 1003027 - Unable to open file [%s]
Error 1003028 - File [%s] is password protected and could not be read
Error 1003029 - Encountered formatting error in spreadsheet file [%s]
Error 1003030 - Unable to load file [%s]; see server logfile for details
Error 1003031 - Commit at record [%s] during arithmetic data load
Error 1003032 - Input line too long near record [%s]
Error 1003034 - Invalid member [%s] in data column
Error 1003035 - No data values modified by load of this data file
Error 1003036 - Cannot load data. Member name too long: [%s]
Error 1004000 - Continuation Character Must Be Last Character on Line [%s]
Error 1004001 - Extra { in Invalid Combination [%s]
Error 1004002 - Extra { in Invalid Combination [%s]
Error 1004003 - Processing Invalid Combination Group: [%s]
Error 1004004 - Unknown Member [%s] in Invalid Combination
Error 1004005 - ! Operator Not Implemented Yet. Ignored
Error 1004006 - '-' No Previous Member or Non-Matching Dimensions-Ignored
Error 1004007 - Unknown Item [%s] in Invalid Combination
Error 1004008 - Only '-' Operator or Space Allowed Between Members of Same Dimension
Error 1004009 - ! Operator Not Implemented Yet. Ignored
Error 1004010 - '-' No Previous Member or Non-Matching Dimensions-Ignored
Error 1004011 - Unknown Item [%s] in Invalid Combination
Error 1004012 - Internal Error: Invalid Return from GrpTok
Error 1004013 - Start Member Out of Range in Dimension [%s]
Error 1004014 - End Member Out of Range in Dimension [%s]
Error 1004015 - Start Member Out of Range in Dimension [%s]
Error 1004016 - End Member Out of Range in Dimension [%s]
Error 1005000 - Ascii Backup: Failed to open [%s].
Error 1005002 - Ascii Backup Completed. Total blocks: [%s]. Elapsed time: [%s].
Error 1005009 - Ascii Backup: Writing block [%s].
Error 1005017 - Unable to write information to export file [%s] due to insufficient free space on that drive
Error 1005018 - I/O failure writing to export file [%s]. Check the Essbase server log and the system console to determine the cause of the problem
Error 1005021 - Unable to create error file [%s]
Error 1005022 - Error writing to error file [%s]
Error 1005023 - Validate: total errors found [%s], total blocks with errors [%s]
Error 1005024 - Validate: no errors found during validation
Error 1005025 - Validate: errors were logged to file [%s]
Error 1006002 - Unable to Store Information In Page File
Error 1006004 - Unable to Read Information From Page File
Error 1006006 - Failed to bring block into the memory. Data cache is too small. Please increase the data cache size.
Error 1006010 - Invalid block header: Block's numbers do not match
Error 1006015 - Not Enough Memory to Allocate the Data Buffer Cache. [%s] aborted
Error 1006016 - Invalid block header: Illegal block type
Error 1006023 - Data cache is full. Please increase the data cache size for database [%s].
Error 1006024 - A valid outline must already have been loaded in order to initialize the Data Block Manager component of the Essbase Kernel.
Error 1006025 - Data cache size ==> [%s] bytes, [%s] data pages
Error 1006026 - Data file cache size ==> [%s] bytes, [%s] data file pages
Error 1006027 - Locking the data cache pages into physical memory.
Error 1006028 - Turning off cache memory locking due to lack of physical memory. Using virtual memory to allocate the remainder of the data cache.
Error 1006029 - Turning off cache memory locking due to insufficient privileges. Using virtual memory to allocate the remainder of the data cache.
Error 1006030 - Failed to bring a data file page into cache. Data file cache is too small. Please increase the data file cache size.
Error 1006031 - Data file cache is full. Please increase the data file cache size for database [%s].
Error 1006032 - Invalid stored logical data block size [%s].
Error 1006034 - Waiting to swap a data file cache page for database [%s]. Performance could potentially be improved by increasing the data file cache size.
Error 1006035 - Error [%s] encountered while waiting for completion of a data file cache flush for database [%s].
Error 1006036 - Data cache output transfer buffer for database [%s] is unavailable.
Error 1006037 - Error [%s] encountered while waiting for an in-transit data page of database [%s].
Error 1006039 - Error [%s] encountered while waiting for an in-transit data file page of database [%s].
Error 1006040 - Unable to flush to disk a data block within database [%s].
Error 1006041 - A read from file [%s], %s.
Error 1006042 - Completion of a read from file [%s], %s.
Error 1006043 - A write to file [%s], %s.
Error 1006044 - Completion of a write to file [%s], %s.
Error 1006045 - Error [%s] encountered while attempting to create or extend a data file for database [%s].
Error 1007016 - Unknown Member [%s]
Error 1007034 - Unrecognized Token in DdbInfoRet--Ignored
Error 1007035 - Unknown Member [%s].
Error 1007042 - Actual Dimension Sizes = [%s]
Error 1007043 - Declared Dimension Sizes = [%s]
Error 1007044 - Restructuring Database [%s]
Error 1007045 - Restructuring of Database [%s] Failed
Error 1007046 - Restructuring of Database [%s] Succeeded
Error 1007047 - Restructuring of Database [%s] is not needed
Error 1007066 - Database Restructuring canceled by user [%s]
Error 1007067 - Total Restructure Elapsed Time : [%s] seconds
Error 1007068 - Invalid Update Command
Error 1007069 - Restoring Data for Database [%s]
Error 1007070 - Data restore for database [%s] failed. Essbase could not restructure the database. Restore the database from archived files.
Error 1007071 - Restoring Data for Database [%s] Succeeded
Error 1007072 - Member [%s] tagged as REFER does not have a member to refer to
Error 1007073 - Member [%s] may not be tagged as LABEL
Error 1007074 - Invalid Member Tag (LABEL/REFER) in the Outline
Error 1007075 - Member [%s] tagged as REFER must be in the dimension # [%s]
Error 1007080 - Unable To Find Or Close [%s] For Database [%s]
Error 1007082 - Cannot restructure [%s] with a currency database mapping in DB [%s]
Error 1007083 - Dimension build failed. There are many possible causes (for example, problem allocating memory). Check the server log file to locate the error that caused the failure.
Error 1007084 - Member [%s] can not be tagged as SHARED or LABEL
Error 1007085 - Internal Error: Member name [%s] and Alias Name [%s] Exceed Maximum
Error 1007087 - Removing tag LABEL from the member [%s], as it does not have any offsprings
Error 1007088 - Unable to delete [%s] for database [%s]
Error 1007089 - Unable to open [%s] for database [%s]
Error 1007090 - Unknown member name [%s] in Outline Query
Error 1007100 - Dimension name is missing in Outline Query for NamedGen/NamedLevel
Error 1007101 - Generation name is missing in Outline Query
Error 1007102 - Level name is missing in Outline Query/p>Error 1007103 - Option (MEMBERSONLY/ALIASESONLY/MEMBERSANDALIASES) is missing in ESS_SEARCH/ESS_WILDSEARCH outline query
Error 1007104 - Search String missing in ESS_SEARCH/ESS_WILDSEARCH Outline Query
Error 1007105 - UDA String missing in Outline Query
Error 1007106 - Unknown Query Option [%s] in Outline UDA Query
Error 1007107 - The name [%s] is not a Dimension name in Outline UDA Query
Error 1007108 - Null Wild Card Search String
Error 1007110 - MEMBERSONLY and ALIASESONLY are mutually exclusive in Outline Query
Error 1007112 - Unable to change the permission of the file [%s] for database [%s]
Error 1007113 - Cannot write the new outline file during the restructuring of [%s]
Error 1007114 - Cannot write the new outline change log file
Error 1007115 - Dimension name or member name is required for Outline UDA query.
Error 1007116 - No dimension is tagged as Time dimension for virtual time series.
Error 1007117 - Cannot Write the New Outline File During the Restructuring of [%s]
Error 1007118 - Loading New Outline for Database [%s]
Error 1007119 - Loading New Outline for Database [%s] Failed
Error 1007120 - Loading New Outline for Database [%s] Succeeded
Error 1007121 - Error writing outline change log file for database [%s]
Error 1007122 - Restructuring LRO index and catalog for Database [%s]
Error 1007123 - Restructuring LRO index and catalog for Database [%s] Succeeded
Error 1007124 - Restructuring LRO index and catalog for Database [%s] Failed
Error 1007125 - The number of Dynamic Calc Non-Store Members = [%s]
Error 1007126 - The number of Dynamic Calc Store Members = [%s]
Error 1007127 - The logical block size is [%s]
Error 1007128 - Invalid attribute value type
Error 1007129 - Invalid attribute operation code
Error 1007130 - Invalid oputput structure format requested
Error 1007132 - Building Dimensions Elapsed Time : [%s] seconds
Error 1007133 - Number of base members with the Attribute association is [%s]
Error 1007134 - Input member [%s] not found
Error 1007135 - Member [%s] is not an attribute member
Error 1008001 - Unable to Allocate Memory.
Error 1008006 - Unable to Free Memory for [%s] in [%s].
Error 1008007 - Unable to Allocate Huge Memory: [%s] in function [%s]. Essbase cannot allocate the space needed due to a shortage of virtual memory. Allocate more virtual memory and retry the operation
Error 1008008 - Unable to Allocate Memory: [%s] in function [%s]. Essbase cannot allocate the space needed due to a shortage of virtual memory. Allocate more virtual memory and retry the operation.
Error 1008009 - Pointer is NULL - Free Canceled: [%s] in [%s]
Error 1008010 - Read Failed
Error 1008021 - Named Pipe Create Failed
Error 1008022 - Pipe Create Failed
Error 1008023 - Named Pipe Connect Failed
Error 1008024 - Named Pipe Disconnect Failed
Error 1008025 - Named Pipe Peek Failed
Error 1008028 - Pipe Read Error
Error 1008029 - Pipe Write Error
Error 1008030 - Pipe Open Failed
Error 1008031 - Pipe Close Failed
Error 1008036 - Incorrect # of Bytes Written To Pipe
Error 1008037 - Find Next Failed
Error 1008039 - Find Close Failed
Error 1008089 - Error receiving data from Agent
Error 1008090 - Timed out receiving data from Agent
Error 1008091 - Error sending data to Agent
Error 1008092 - Timed out sending data to Agent
Error 1008093 - Invalid data type for conversion
Error 1008099 - HALLOC: Possible duplicate memory allocation! [%s] in [%s]
Error 1008100 - HFREE: Pointer already freed! [%s] in [%s]
Error 1008101 - HFREE: Likely memory overwrite! [%s] in [%s]
Error 1008106 - Exception error log [%s] is being created...
Error 1008107 - Exception error log completed -- please contact technical support and provide them with this file
Error 1008108 - Essbase Internal Logic Error [%s]
Error 1008109 - Unable to Reallocate Memory for [%s] in [%s].
Error 1008110 - Unable to Allocate Memory. Refer to the Application Log for details.
Error 1008111 - Unable to Reallocate Memory for [%s] in [%s]. Refer to the Application Log for details.
Error 1008112 - Memory Allocation error codes: O/S error = [%s], O/S return code = [%s].
Error 1008113 - Memory Reallocation error codes: O/S error = [%s], O/S return code = [%s].
Error 1008114 - Allocation request for [%s] bytes of virtual memory. Percentage of memory in use is [%s%%].
Error 1008115 - Total physical memory is [%s] bytes. Available physical memory is [%s] bytes.
Error 1008116 - Total swap space is [%s] bytes. Available swap space is [%s] bytes.
Error 1008117 - Total virtual memory is [%s] bytes. Available virtual memory is [%s] bytes.
Error 1008118 - Memory page size is [%s] bytes. Allocation granularity is [%s] bytes.
Error 1008119 - Memory page size is [%s] bytes.
Error 1008120 - Unable to Allocate Physical Memory for [%s] in [%s].
Error 1008121 - Unable to Allocate Physical Memory for [%s] in [%s] for reallocation.
Error 1008122 - Unable to Lock the Allocated Memory for [%s] in [%s].
Error 1008123 - Unable to Lock the Allocated Memory for [%s] in [%s] for reallocation.
Error 1008124 - Unable to Lock the Allocated Memory [%s] in [%s], because of insufficient quota.
Error 1008125 - Unable to Lock the Allocated Memory [%s] in [%s], because of insufficient privilege.
Error 1008126 - Unable to Lock the Allocated Memory [%s] in [%s] for reallocation, because of insufficient quota.
Error 1008127 - Unable to Lock the Allocated Memory [%s] in [%s] for reallocation, because of insufficient privilege.
Error 1008128 - Unable to Allocate Physical Memory for [%s] in [%s]. Refer to the Application Log for details.
Error 1008129 - Unable to Allocate Physical Memory for [%s] in [%s] for reallocation. Refer to the Application Log for details.
Error 1008130 - Unable to Lock the Allocated Memory for [%s] in [%s]. Refer to the Application Log for details.
Error 1008131 - Unable to Lock the Allocated Memory for [%s] in [%s] for reallocation. Refer to the Application Log for details.
Error 1008132 - Unable to Lock the Allocated Memory [%s] in [%s], because of insufficient quota. Refer to the Application Log for details.
Error 1008133 - Unable to Lock the Allocated Memory [%s] in [%s], because of insufficient privilege. Refer to the Application Log for details.
Error 1008134 - Unable to Lock the Allocated Memory [%s] in [%s] for reallocation, because of insufficient quota. Refer to the Application Log for details.
Error 1008135 - Unable to Lock the Allocated Memory [%s] in [%s] for reallocation, because of insufficient privilege. Refer to the Application Log for details.
Error 1008136 - Unable to Free Locked Memory for [%s] in [%s].
Error 1008137 - Unable to Free Memory for [%s] in [%s] in reallocation.
Error 1008138 - Unable to Free Memory for [%s] in [%s] in reallocation. Refer to the Application Log for details.
Error 1008139 - Unable to Allocate Aligned Memory for [%s] in [%s].
Error 1008140 - Unable to Free Aligned Memory for [%s] in [%s].
Error 1008141 - Unable to Allocate Aligned Memory for [%s] in [%s] for reallocation.
Error 1008142 - Unable to Free Aligned Memory for [%s] in [%s] in reallocation.
Error 1008143 - Unable to Allocate Aligned Memory for [%s] in [%s]. Refer to the Application Log for details.
Error 1008144 - Unable to Allocate Aligned Memory for [%s] in [%s] for reallocation. Refer to the Application Log for details.
Error 1008145 - Unable to Free Aligned Memory for [%s] in [%s] in reallocation. Refer to the Application Log for details.
Error 1008146 - Unable to Unlock the Allocated Memory [%s] in [%s].
Error 1008147 - Unable to Allocate Memory for [%s] in [%s].
Error 1008148 - Unable to Allocate Memory for [%s] in [%s]. Refer to the Application Log for details.
Error 1009000 - In NavLev, Illegal Request - Member [%s], Level [%s]
Error 1009001 - UNIVERSE is Not a Member of Any Dimension
Error 1010002 - Not Enough Memory to Complete Command
Error 1010003 - The data block size of database [%s] exceeds the limit [%s]
Error 1010004 - Total possible blocks of database [%s] exceeds the limit [%s]
Error 1010007 - Maximum Actual Possible Blocks is [%s] with data block size of [%s]
Error 1010008 - Maximum Declared Blocks is [%s] with data block size of [%s]
Error 1010011 - Failed memory allocation using FS pool. [%s] aborted.
Error 1011078 - Client Sent Packet Larger Than Allowed Size. Sent: [%s] Max is [%s]
Error 1011079 - Output Record > Allowed Size: [%s] Max is [%s]
Error 1011080 - Null String Encountered During Replace--Terminating
Error 1011081 - Requested String Replacement Operation With [%s] Would Exceed Max Chars : [%s]
Error 1011082 - Tried To Remove Column Which Does Not Exist: [%s] Terminating.
Error 1011083 - Tried To Insert Too Many Columns: Max is [%s] Terminating.
Error 1011092 - Parser: No memory to copy token
Error 1012000 - Invalid Syntax - Not a CALC command [%s]
Error 1012001 - Invalid Calc Script syntax [%s]
Error 1012002 - Could not find the named list [%s]
Error 1012003 - Named list [%s] is not of STRING data type
Error 1012004 - Invalid member name [%s]
Error 1012005 - Invalid dimension name [%s]
Error 1012009 - Variable name [%s] too long
Error 1012010 - Redeclare Variable name [%s]
Error 1012011 - Variable name [%s] conflicts with member name
Error 1012012 - The array variable range specifier [%s] is not a dimension
Error 1012013 - Calc Script Error - Unexpected End of File reached
Error 1012015 - CALC ALL cannot be used in restricted calculation
Error 1012016 - Cannot calculate dimension member [%s] with restricted member [%s]
Error 1012017 - Cannot calculate dimension [%s] with restricted member [%s]
Error 1012018 - Redeclared dimension [%s] in AGG command
Error 1012019 - Calc Script block delimiter [%s] not balanced [%s]
Error 1012020 - Aggregate command [AGG] cannot be used within a restricted calculation block
Error 1012021 - Calc Script command [%s] is incomplete
Error 1012022 - The CALC command [%s] is not supported at this moment
Error 1012023 - Aggregating on Dense Dimension [%s] is currently not supported
Error 1012024 - Cannot aggregate dimension [%s] with restricted member [%s]
Error 1012025 - No Currency Database has been set on this database
Error 1012026 - [%s] command can only be fixed on a CURPARTITION member
Error 1012027 - No dimension is tagged CURPARTITION, [%s] command cannot be fixed on any member
Error 1012028 - [%s] command must be fixed on a CURPARTITION member
Error 1012029 - Invalid target range [%s] of DCOPY command
Error 1012030 - DATACOPY command [%s] cannot copy data to itself
Error 1012031 - DATACOPY command [%s] is conflict with Range Fix
Error 1012032 - When CURPARTITION is tagged, DATACOPY command [%s] can only be used to copy a whole Currency Partition
Error 1012033 - Currency Conversion is not available with this server, calc command [%s] is not supported
Error 1012034 - Variable [%s] not declared
Error 1012035 - Variable [%s] must be of VAR type
Error 1012036 - Calc Script block command [%s] does not end with [%s]
Error 1012037 - Custom calculation is not allowed for [%s] share member [%s]
Error 1012038 - The constant [%s] assigned to variable [%s] is not a number
Error 1012039 - The constant [%s] assigned to array variable [%s] is not a number
Error 1012040 - Too many initial constants assigned to array variable [%s]
Error 1012041 - [%s] is not a valid currency type member
Error 1012042 - Substitution variable [%s] doesn't exist.
Error 1012043 - Calculation is not allowed for virtual member [%s] in the Calc script.
Error 1012044 - Invalid fix member count [%s] when converting from Bitmap
Error 1012045 - Unable to convert bitmap to fix member in function [%s]
Error 1012046 - Unable to conver MEMNOR to MEMNO in function [%s]
Error 1012047 - Aggregating on Attribute Dimension [%s] is currently not supported
Error 1012048 - Calc Dim on Attribute Dimension [%s] is not supported
Error 1012049 - Cannot clear data from Attribute dimension member [%s]
Error 1012050 - Cannot DATACOPY on Attribute dimension member [%s]
Error 1012051 - Batch calc error, FIX statement cannot contain Dynamic Calc member from dimension [%s]
Error 1012052 - Unable to unfix blocks after calculation encounters an error.
Error 1012053 - Calculation is cancelled by user.
Error 1012054 - Batch calc error. All members that need to be calculated in dimension [%s] are Two Pass Calc and Dynamic.
Error 1012106 - Calc String function [%s] must be followed by '('
Error 1012121 - Error encountered when loading member [%s]'s calc string [%s], ignored
Error 1012122 - Error encountered when loading member [%s]'s last calc string [%s], ignored
Error 1012123 - Duplicate member [%s] specified on the X-Dimension variable[%s]
Error 1012129 - The dimension of the range parameter [%s] must be the same as the dimension specifier [%s]
Error 1012130 - Invalid Range Specifier [%s]
Error 1012131 - Calc range specifier [%s] is not supported in the function [%s]
Error 1012133 - Range argument [%s] has unbalance parenthesis in function [%s]
Error 1012134 - Generation number [%s] must be an integer
Error 1012135 - Level number [%s] must be an integer
Error 1012136 - Named generation [%s] is not defined
Error 1012137 - Named Level [%s] is not defined
Error 1012139 - No [%s] member found in Account dimension
Error 1012141 - Illegal match string [%s]
Error 1012142 - Input [%s] is not a valid gen/level name or valid gen/level number
Error 1012143 - @MATCH search string [%s] should always be in double quote
Error 1012500 - The requested calc script [%s] not found
Error 1012501 - Calculator internal error -- invalid input type [%s]
Error 1012550 - Total Calc Elapsed Time : [%s] seconds
Error 1012551 - Converting database [%s]'s currency to [%s]
Error 1012552 - Copying data from [%s]
Error 1012553 - Copying data from [%s] with fixed members [%s]
Error 1012554 - Clearing data from [%s] partition
Error 1012555 - Clearing data from [%s] partition with fixed members [%s]
Error 1012556 - Calculation canceled by user [%s]
Error 1012557 - Clearing all data blocks from [%s] partition
Error 1012558 - Clearing all data blocks from [%s] partition with fixed members [%s]
Error 1012559 - Clearing upper level data blocks from [%s] partition
Error 1012560 - Clearing upper level data blocks from [%s] partition with fixed members [%s]
Error 1012561 - Clearing noninput data blocks from [%s] partition
Error 1012562 - Clearing noninput data blocks from [%s] partition with fixed members [%s]
Error 1012563 - Calculation is aborted due to floating point error [%s]
Error 1012564 - Calculation is aborted due to floating point error
Error 1012566 - Begin of LOOP -- looping following commands [%s] times
Error 1012567 - End of LOOP -- actually looped above commands [%s] times
Error 1012600 - Member [%s] attempts to divide by Missing, Invalid, or Near Zero value (Message will not repeat)
Error 1012602 - Member [%s] has an illegal Calc Op Code [%s] for customized calculation
Error 1012667 - Your Server does not have a Currency Conversion Option, the Calc Script command [CCONV] is ignored
Error 1012668 - Calculating [%s] with fixed members [%s]
Error 1012669 - Calculating [%s]
Error 1012670 - Aggregating [%s] with fixed members [%s]
Error 1012671 - Aggregating [%s]
Error 1012672 - Calculator Information Message: %s
Error 1012673 - Calculator cannot handle concurrent updates of [%s] data blocks. Please increase CalcLockBlock setting and then retry.
Error 1012674 - Hash memory [%s] allocated for Calc is used up, Hash Table is turned off. Please increase the CalcHashTblMemLimit in the essbase.cfg file.
Error 1012675 - Commit Blocks Interval for the calculation is [%s]
Error 1012676 - Member [%s] attempts to execute @POWER/@FACTORIAL function. Arguments are out of range. Results may be different from versions 6.0 (Message will not repeat)
Error 1012700 - Dynamic calc processor cannot allocate more than [%s] blocks from the heap. Please increase CalcLockBlock setting and then retry
Error 1012701 - Unknown block type during the dynamic calculation, neither an ESM block nor a heap block. Essbase internal error, Please report to Hyperion.
Error 1012702 - The block in the dynamic calc processor block array is not marked correctly. Essbase internal error. Please report to Hyperion.
Error a href="http://www.essbaseinfo.com/commonerrors-administration">1012703/a> - Unknown calculation type [%s] during the dynamic calculation. Only default agg/formula/time balance operations are handled.
Error 1012704 - Dynamic Calc processor cannot lock more than [%s] ESM blocks during the calculation, please increase CalcLockBlock setting and then retry(a small data cache setting could also cause this problem, please check the data cahce size setting).
Error 1012706 - Need to copy to Esm block during the dynamic calculation. Esm Block not found. Essbase internal error, Please report to Hyperion.
Error 1012707 - Dynamic Calc Processor Message: %s
Error 1012708 - For virtual time series [%s] retrival, the latest time period is not set
Error 1012709 - For virtual time series, the latest time period setting [%s]is not a level 0 member
Error 1012710 - Essbase needs to retrieve [%s] Essbase Kernel blocks in order to calculate the top dynamically-calculated block.
Error 1012711 - Clearing dynamic calc store data blocks from [%s] partition
Error 1012712 - Clearing dynamic calc store data blocks from [%s] partition with fixed members [%s]
Error 1012713 - Two-pass Member [%s] is not tagged as Dynamic Calc.
Error 1012714 - Regular member [%s] depends on dynamic-calc member [%s].
Error 1012715 - Regular member [%s] depends on member [%s] from transparent partition. Consider making this member Dynamic or replicating the dependents.
Error 1012716 - Remote region [%s] is not validated correctly yet. Cannot continue the calc.
Error 1012717 - Remote bitmap cache is [%s]
Error 1012718 - For dynamic time series, the latest period [%s] setting has higher generation member than the time series member [%s].
Error 1012719 - Index Keys Verified: [%s], Qualified: [%s]
Error 1012720 - Index Scan Ranges: [%s], Index Hit Rate: [%s%%]
Error 1012721 - Blocks Verified: [%s], Non-existing Virtual Blocks Verified: [%s]
Error 1012722 - Blocks Aggr'd: [%s], Non-existing Virtual Blocks Aggr'd: [%s]
Error 1012723 - Blocks Calc'd: [%s], Virtual Block Search Method: [%s]
Error 1012724 - Lower Bound memno for dimension [%s] is [%s]
Error 1012725 - Upper Bound memno for dimension [%s] is [%s]
Error 1013000 - Unable to Create Request Server Thread
Error 1013003 - Database Outline Is Empty
Error 1013009 - Administrator Has Temporarily Disabled User Commands
Error 1013011 - Invalid Command %s Received in Request Manager
Error 1013013 - Active Database Needed To Execute This Command
Error 1013014 - User [%s] is Connected to Database [%s]
Error 1013015 - Unable to Connect to Database [%s]
Error 1013016 - Currency Database [%s] Has Been Set for Database [%s]
Error 1013018 - Cannot unload database [%s] while user [%s] is performing database operation. Wait for the user to complete the operation, or ask the user to abort it. Log out all users and then unload the database.
Error 1013020 - Cannot clear data for database [%s] while other users are connected
Error 1013021 - Cannot clear data for database [%s] while other user has locks on database
Error 1013022 - All data of database [%s] has been cleared by User [%s]
Error 1013025 - Failed to create Unnamed Pipe, report request is aborted
Error 1013026 - Failed to start Extractor thread
Error 1013028 - Failed to start ReportWriter thread
Error 1013033 - ReportWriter canceled
Error 1013080 - Already Connected to Server -- The previous connected request still running, try again
Error 1013091 - Received Command [%s] from user [%s]
Error 1013094 - No commands are allowed when an asynchronous operation is in progress
Error 1013095 - You have been logged out by supervisor [%s], please login again
Error 1013096 - Function Not Implemented In New Req Mgr
Error 1013100 - User [%s] is Active on Database [%s]
Error 1013101 - Cannot restructure. There are other active users on database [%s]
Error 1013102 - The database [%s] is not defined in application [%s]
Error 1013104 - [%s] is an invalid member name in database [%s]
Error 1013105 - The database [%s] has no currency database set
Error 1013106 - Your Server does not have a Currency Conversion Option, Please check with your system administrator
Error 1013107 - Your Server does not have a SQL Connection Option, Please check with your system administrator
Error 1013108 - Set Currency Database [%s] failed: see server log file
Error 1013110 - Your active database has been stopped by supervisor
Error 1013111 - Asynchronous process [%s] is at final stage, cannot cancel
Error 1013112 - Cannot calculate database [%s] while other user [%s] is calculating, please try again
Error 1013113 - Cannot unload database [%s] when it is still in use
Error 1013114 - Cannot commit database [%s] when it is still in use
Error 1013115 - Cannot clear data for database [%s] when it is still in use
Error 1013116 - Database [%s] is Still in Active Use
Error 1013119 - Cannot export database [%s] when it is still in use
Error 1013120 - Cannot restructure on database [%s]. Please clear all user's exclusive locks and try again
Error 1013121 - Cannot load alias. There are other active users on database
Error 1013122 - Cannot remove alias. There are other active users on database
Error 1013123 - Cannot clear alias tables. There are other active users on database
Error 1013124 - Cannot commit database [%s]. Please clear all user's exclusive locks and try again
Error 1013125 - Cannot export database [%s] while %s on the database
Error 1013126 - User [%s] canceled database export
Error 1013128 - Out of disk space, please free some disk space and try again
Error 1013129 - Error [%s] in writing to disk, please check your logfile and try again
Error 1013131 - Failed to start Asynchronous thread
Error 1013132 - Cannot build dimensions. There are other active users on database [%s]
Error 1013133 - Cannot build dimensions on database [%s]. Please clear all user's exclusive locks and try again
Error 1013134 - User [%s] canceled database validate
Error 1013136 - Invalid login id - please login again
Error 1013139 - Cannot unload currency database [%s] when it is being referenced by database [%s]
Error 1013140 - User's log message: %s
Error 1013141 - Duplicate disk volume name [%s] encountered in the disk volume settings for database [%s].
Error 1013142 - Restructuring from update file not supported.
Error 1013202 - Waiting for Login Requests
Error 1013203 - Connected to Admin Pipe
Error 1013204 - Client Commands are Currently Not Being Accepted
Error 1013205 - Received Command [%s]
Error 1013206 - SetActive Commands are Currently Not Being Accepted
Error 1013207 - RECEIVED SHUTDOWN COMMAND - SERVER TERMINATING
Error 1013210 - User [%s] set active on database [%s]
Error 1013213 - Illegal Login Key [%s] in Clear Active - Canceled
Error 1013214 - Clear Active on User [%s] Instance [%s]
Error 1013216 - User [%s] still have a request in process - Will clear active when the request is finished
Error 1013217 - Cannot commit database [%s] while %s on the database
Error 1013219 - Failed to rename file [%s]
Error 1013220 - Supervisor [%s] has forced user [%s] to logout
Error 1013221 - Failed to create database, error code [%s]
Error 1013222 - Cannot shutdown application [%s] while %s
Error 1013223 - Cannot shutdown application [%s] while other users are restructuring
Error 1013224 - Cannot shutdown application [%s] while other users are calculating
Error 1013225 - Cannot shutdown application [%s] while other users are updating or reporting
Error 1013227 - Cannot copy application [%s] while other users are restructuring
Error 1013228 - Cannot copy application [%s] while other users are calculating
Error 1013229 - Cannot copy application [%s] while other users are updating
Error 1013231 - Unable to update database while in readonly mode for backup
Error 1013232 - Failed to rename application [%s]
Error 1013233 - Failed to copy application/database [%s/%s]
Error 1013234 - Failed to copy application [%s]
Error 1013235 - Failed to delete application/database [%s/%s]
Error 1013236 - Failed to delete application [%s]
Error 1013237 - Failed to create database [%s]
Error 1013238 - Failed to create application [%s]
Error 1013239 - Cannot transition the state of database [%s] between read-write and read-only modes while %s on the database.
Error 1013240 - Failed to conclude the copying of application/database [%s/%s].
Error 1013241 - Failed to conclude the copying of application [%s] upon processing database [%s].
Error 1013242 - Failed to generate the list of persistent database files belonging to application/database [%s/%s].
Error 1013243 - User [%s] has been forced off database [%s] to clear exclusive locks
Error 1013244 - User [%s] has a request in progress and will be forced off upon completion
Error 1013245 - User [%s] does not have any locks active
Error 1013246 - Unable to allocate memory stack
Error 1013247 - Unable to Create System Daemon Thread
Error 1014004 - Unable to Update Members Which Have Not Been Locked
Error 1014018 - Members Currently Locked by another transaction
Error 1014024 - The data may have been modified while you were accessing it. Please retry
Error 1014025 - Unable to update database while in readonly mode for backup
Error 1014026 - Requested lock is currently held by another transaction, and waiting is currently not allowed.
Error 1014027 - Transaction [%s] is deadlocked with transaction [%s].
Error 1014028 - Transaction [%s] is waiting for transaction [%s], which is deadlocked with another transaction.
Error 1014031 - Lock request timed out in [%s].
Error 1014032 - Lock request timed out in [%s].
Error 1014033 - Failed to allocate lock manager event. [%s] aborted
Error 1014034 - Failed to create lock manager event. [%s] aborted
Error 1014035 - Failed to allocate lock manager waiter node. [%s] aborted
Error 1014036 - Lock request would block, but waiting is not allowed.
Error 1014039 - Unable to perform a write operation to database [%s] while the database is in read-only mode.
Error 1014040 - Failed to get the current thread's handle. [%s] aborted
Error 1014041 - Failed to get the current thread's base priority. [%s] aborted
Error 1014042 - Failed to get the current thread's high priority. [%s] aborted
Error 1015000 - Missing Alias for Member [%s]
Error 1015001 - Alias Already Exists: Member [%s] Alias [%s] Not Loaded
Error 1015002 - Base Member Name Not Found: [%s] Alias Not Loaded: [%s]
Error 1015003 - Alias [%s] Greater Than Maximum Permitted Length
Error 1015004 - Member Already Has An Alias: Member [%s] Alias [%s] Not Loaded
Error 1015008 - Alias [%s] Does Not Exist For Database [%s]
Error 1015009 - Alias [%s] Already Exists For Database [%s]
Error 1015010 - Alias [%s] For Database [%s] Is Active And Can Not Be Unloaded
Error 1015011 - Alias [%s] For User [%s] Is Active And Can Not Be Unloaded
Error 1015012 - List Of Alias Tables For Database [%s] Is Empty
Error 1015013 - Alias [%s] For Database [%s] is Empty
Error 1015014 - No alias table for database [%s]
Error 1015015 - Cannot remove alias table [%s] from database [%s]
Error 1015016 - No more alias tables can be added to database [%s]
Error 1015017 - Invalid Alias for Member [%s]
Error 1015018 - [%s] is an invalid member name in alias combination for member [%s]
Error 1015019 - Too Many Aliases [%ld] To Dump For Database [%s]
Error 1016001 - Invalid FORMATCOLUMNS Value [%s]
Error 1016002 - Expected Numeric Character Position After SETCENTER, Not [%s]
Error 1016003 - No Member Name Following PAGEONDIM Specification
Error 1016004 - Unknown Dimension Member Name: [%s] Following PAGEONDIM Specification
Error 1016005 - No Member Name Following PAGEONDIM Specification
Error 1016006 - Unknown Dimension Member Name: [%s] Following PAGEONDIM Specification
Error 1016007 - No Member Name Following SKIPONDIM Specification
Error 1016008 - Unknown Dimension Member Name: [%s] Following SKIPONDIM Specification
Error 1016009 - No Member Name Following SKIPONDIM Specification
Error 1016010 - Unknown Dimension Member Name: [%s] Following SKIPONDIM Specification
Error 1016011 - No Member Name Following UNAMEONDIM Specification
Error 1016012 - Unknown Dimension Member Name: [%s] Following UNAMEONDIM Specification
Error 1016013 - No Member Name Following UNAMEONDIM Specification
Error 1016014 - Unknown Dimension Member Name: [%s] Following UNAMEONDIM Specification
Error 1016015 - Expected COLUMN or ROW after CALC Specification [%s]
Error 1016016 - Invalid Report Specification [%s]
Error 1016019 - Abnormal Exit From Report Writer
Error 1016020 - HEADING not allowed within STARTHEADING/ENDHEADING (use PAGEHEADING, COLHEADING) [%s]
Error 1016021 - Max WIDTH Allowed is 200: [%s]
Error 1016022 - Expected Legal Decimal Value for WIDTH: [%s]
Error 1016023 - Expected 'Variable' or Legal Decimal Value (0 to 40) for DECIMAL: [%s]
Error 1016024 - Expected 'Variable' or Legal Decimal Value (0 to 40) for DECIMAL: [%s]
Error 1016025 - Expected Legal Decimal Value for SCALE: [%s]
Error 1016026 - Expected Decimal Value Between 2 and 161 for NAMEWIDTH: [%s]
Error 1016027 - Expected Positive Decimal Value for SKIP: [%s]
Error 1016028 - Expected Positive Decimal Value for PAGEWIDTH: [%s]
Error 1016029 - Expected Quoted String for TEXT Specification after Position [%s]
Error 1016030 - Expected COLHDR Level for TEXT *COLHDR Specification [%s]
Error 1016031 - Expected Decimal Column Number for 2nd *COLHDR Specification [%s]
Error 1016032 - *MASK Option Not Allowed in MASK Specification [%s]
Error 1016033 - *MASK Option in TEXT, but no MASK Defined]
Error 1016034 - Requested *DATA Column is not Valid. Mbr: [%s] Col: [%s]
Error 1016035 - Requested *DATA Output in TEXT, but This Member is not a Data Row [%s]
Error 1016036 - Requested *DATA Column is not Valid at This Point--Mbr: [%s] Col: [%s]
Error 1016037 - *DATA Command Output Too Wide--Max Width is [%s] - Truncated
Error 1016038 - Requested TEXT *CALC Output Column is Not a Data Column [%s]
Error 1016039 - Requested *CALC Data Column is not Valid at This Point--Mbr: [%s] Col: [%s]
Error 1016040 - *CALC Must be Followed by Calc Row Name in Double Quotes, Not: [%s]
Error 1016041 - *CALC Name [%s] Not Defined
Error 1016042 - *CALC Command Output Too Wide--Max Width is [%s] - Truncated
Error 1016043 - Report Output Record Too Wide--Truncated
Error 1016045 - No Text Followed INVALTEXT Specification: [%s]
Error 1016046 - No Text in Double Quotes Followed UNDERLINECHAR Specification: [%s]
Error 1016047 - No Text in Double Quotes Followed UNDERSCORECHAR Specification: [%s]
Error 1016048 - Expected Positive Decimal Value for PAGELENGTH: [%s]
Error 1016049 - Expected Decimal Value Between 0 and 100 for LMARGIN: [%s]
Error 1016050 - Max Column Header Range Exceeded: [%s]
Error 1016051 - Page Header Report Output Record Too Wide--Truncated
Error 1016052 - Page Header Report Output Record Too Wide--Truncated
Error 1016053 - Page Header Report Output Record Too Wide--Truncated
Error 1016054 - Page Header Report Output Record Too Wide--Truncated
Error 1016055 - Page Header Report Output Record Too Wide--Truncated
Error 1016056 - Requested Column Does Not Exist. Column # [%s]
Error 1016057 - Col Header Report Output Record Too Wide--Truncated
Error 1016058 - Col Header Report Output Record Too Wide--Truncated
Error 1016059 - Requested Column Does Not Exist. Column # [%s]
Error 1016060 - Col Header Report Output Record Too Wide--Truncated
Error 1016061 - Col Header Report Output Record Too Wide--Truncated
Error 1016062 - Col Header Report Output Record Too Wide--Truncated
Error 1016063 - Col Header Report Output Record Too Wide--Truncated
Error 1016064 - Col Header Report Output Record Too Wide--Truncated
Error 1016065 - Report Output Data Record Too Wide--Truncated
Error 1016066 - Report Output Data Record Too Wide--Truncated
Error 1016067 - Column Order Resulted in Attempt to Access an Invalid Data Column: [%s]
Error 1016068 - Report Output Data Record Too Wide--Truncated
Error 1016069 - Report Output Data Record Too Wide--Truncated
Error 1016070 - Report Output Data Record Too Wide--Truncated
Error 1016071 - Report Output Data Record Too Wide--Truncated
Error 1016072 - Column Order Resulted in Attempt to Access an Invalid Data Column: [%s]
Error 1016073 - Report Output Data Record Too Wide--Truncated
Error 1016074 - Report Output Data Record Too Wide--Truncated
Error 1016075 - Max Columns Exceeded in Report Request: [%s]
Error 1016076 - No Column Name Found After CALC COL in Report Specification
Error 1016077 - Too Many Column Calc Definitions. Max is [%s]
Error 1016078 - Column Calc [%s] Has Too Many Tokens--Max is [%s]
Error 1016079 - Column Calc Referenced Calculated Row Name Which Doesn't Exist: [%s]
Error 1016080 - Column Calc Reference to Row Calc [%s] Must Include Column Number, Not [%s]
Error 1016081 - Invalid Constant in Column Calc: [%s] [%s]
Error 1016082 - Maximum Constant Length in Col Calc is 50 Characters [%s] [%s]
Error 1016083 - Column Calc: Expected Column Number or Constant (w/Dec Point): [%s] at [%s]
Error 1016084 - Too Many Constants in Calcs--Max is [%s] Constant: [%s]
Error 1016085 - Invalid CALC COL Column Number for [%s] : [%s] (Must be DATA Column in Original Order)
Error 1016086 - Invalid CALC COL Syntax Following Column Name [%s]
Error 1016087 - Requested Column [%s] in Column Calc For [%s] Doesn't Exist
Error 1016088 - Requested Column [%s] in Column Calc For [%s] Doesn't Exist
Error 1016089 - RANGE operator (:) Only Allowed as First Operator [%s] -- Set to #Invalid
Error 1016090 - RANGE operator (:) May Not Refer to Constants (w/Dec Points) [%s] -- Set to #Invalid
Error 1016091 - Requested Column [%s] in Column Calc For [%s] Doesn't Exist
Error 1016092 - Invalid Syntax on Column Calc [%s] -- Set to #Invalid
Error 1016093 - Expected Value Between 1 and [%s] for FIXCOLUMNS, Not: [%s]
Error 1016094 - No Row Name Found After CALC Row in Report Specification
Error 1016095 - Duplicate Row Calc Name: [%s] (May be Attached to Repeating Mbr)--Ignored
Error 1016096 - Too Many Row Calc Definitions. Max is [%s]
Error 1016097 - Invalid Calc Row Operator [%s] Encountered During Calc--Contact your software provider
Error 1016098 - No Row Name Found After PRINTROW in Report Specification
Error 1016099 - PRINTROW Row Calc Name: [%s] Not Defined
Error 1016100 - No Row Name Found After CLEARROWCALC in Report Specification
Error 1016101 - CLEARROWCALC Row Calc Name: [%s] Not Defined
Error 1016102 - No Row Name Found After SETROWOPERATION in Report Specification
Error 1016103 - SETROWOPERATION Row Calc Name: [%s] Not Defined
Error 1016104 - No Operator Found After SETROWOPERATION Report Specification
Error 1016105 - SETROWOPERATION: Invalid Operation: [%s]
Error 1016106 - Expected Character Enclosed in Double Quotes for BEFORE character [%s]
Error 1016107 - Expected Character Enclosed in Double Quotes for AFTER character [%s]
Error 1016108 - Too Many Row Calc Definitions Already Exist for this STORE. Max is [%s]
Error 1016109 - Invalid ROW CALC Column Number for [%s] : [%s] (Must be DATA Column in Original Order)
Error 1016110 - Expected Equal Sign ('=') With Calc Row [%s] Not : [%s]
Error 1016111 - Too Many Values or Missing ']'to Right of '[' in Calc Row [%s] \nOnly [%s] Calc Row Data Columns are Set Up at this Point
Error 1016112 - If You Need This Many Values Here, use FORMATCOLUMNS to Preset The Number of Columns
Error 1016113 - Expected Decimal Number to Right of [ in Calc Row [%s]
Error 1016114 - No Row Name Found After \
Error 1016116 - Column Requested for [%s] in Row Calc for [%] is Not a Valid Data Column
Error 1016118 - Wrong {TEXT} format at [%s]
Error 1017000 - No active database being set, can not connect to Currency Database
Error 1017001 - The Application Database [%s] is not initialized
Error 1017002 - The requested Currency Database [%s] is not loaded
Error 1017003 - The Currency Database [%s] is not initialized
Error 1017004 - The database [%s] is not properly tagged as a Currency Database
Error 1017005 - No dimension of the Application Database [%s] is tagged as TIME
Error 1017006 - The tagged TIME member [%s] does not exist in Currency Database [%s]
Error 1017007 - The tagged TIME member [%s] is not in Currency TIME dimension
Error 1017008 - No dimension of the Application Database [%s] is tagged as COUNTRY
Error 1017009 - Member [%s] of tagged COUNTRY dimension [%s] is not tagged with [CNAME]
Error 1017010 - The tagged CURNAME member [%s] does not exist
Error 1017011 - The tagged CURNAME member [%s] is not in Currency COUNTRY dimension
Error 1017012 - No dimension of the Application Database [%s] is tagged as ACCOUNTS
Error 1017013 - No dimension of the Application Database [%s] is tagged as CURPARTITION
Error 1017014 - Member [%s] of tagged ACCOUNTS dimension [%s] is not tagged with [CCATEGORY]
Error 1017015 - The tagged CCATEGORY member [%s] does not exist
Error 1017016 - The tagged CCATEGORY member [%s] is not in Currency ACCOUNTS dimension
Error 1017018 - Removed [%s] data blocks
Error 1017019 - Unknown Member [%s] in Currency Database [%s] for SETCRTYPE Command
Error 1017020 - Member [%s] is not of TYPE dimension in Currency Database [%s] for SETCRTYPE Command
Error 1017021 - Currency Database Not Set to Database [%s]
Error 1019001 - Unable to Init Res Stack, Stack Ptr Not NULL
Error 1019002 - Unable To Open [%s]
Error 1019003 - Unable To Read Information From [%s]
Error 1019004 - Unable to write information to file [%s], errno is [%s].
Error 1019005 - Unable to Read [%s], Not a Recognized Format
Error 1019006 - Unable to Read [%s], Created Using A Previous Version
Error 1019007 - Unable To Read [%s], Type Does Not Match Name
Error 1019008 - Reading Application Definition For [%s]
Error 1019009 - Reading Database Definition For [%s]
Error 1019010 - Writing Application Definition For [%s]
Error 1019011 - Writing Database Definition For [%s]
Error 1019012 - Reading Outline For Database [%s]
Error 1019013 - Writing Outline For Database [%s]
Error 1019014 - Unable To Write Information For Database [%s]
Error 1019015 - Database Outline Already Loaded For Database [%s]
Error 1019017 - Reading Parameters For Database [%s]
Error 1019018 - Writing Parameters For Database [%s]
Error 1019019 - Reading Data File Free Space Information For Database [%s]...
Error 1019020 - Writing Free Space Information For Database [%s]
Error 1019021 - Reading Database Mapping For [%s]
Error 1019022 - Writing Database Mapping For [%s]
Error 1019024 - Reading Outline Transaction For Database [%s]
Error 1019025 - Reading Rules From Rule Object For Database [%s]
Error 1019026 - Unknown member [%s] found while processing string [%s]
Error 1019028 - Out of disk space, Unable to write information to file [%s]
Error 1019029 - Can not read data. Page file volume [%s] from the index section differs from the volume defined by ARBORPATH [%s]
Error 1019030 - Checking Data Indexes For Database [%s]
Error 1019031 - Unable to write [%s]; database is in readonly mode for backup
Error 1019032 - Unable to write to [%s]; database is in readonly mode for archive
Error 1019034 - Reading Outline Change Log For Database [%s]
Error 1019035 - Writing Outline Change Log For Database [%s]
Error 1019036 - Dimension number [%s] for Database [%s] is invalid
Error 1019037 - Member number [%s] for Database [%s] is invalid
Error 1019038 - DB file is missing.
Error 1019039 - Cannot write to file [%s] because object type [%s] is invalid. Make sure Essbase is properly installed and configured.
Error 1019040 - Unable to write to file [%s] because the application is shutting down
Error 1019041 - Unable to write information to file [%s], adWriteObject returns [%s]. See server logfile for details.
Error 1019042 - Unable to move the file pointer to the location specified for file [%s], errno is [%s].
Error 1019043 - Error Creating Outline Pool For Database [%s]
Error 1019044 - Error Allocating Mem in Outline Pool For Database [%s]
Error 1019045 - Reading Partition Definition File For Database [%s]
Error 1019046 - Outline buffer cannot handle more than [%s] hole
Error 1019047 - Outline buffer error. Hole position [%s] does not match with [%s] in the buffer
Error 1019048 - Outline buffer writing error. [%s] bytes written does not match with hole size [%s]
Error 1019049 - Outline buffer error. Cannot flush buffer with [%s] hole to a fragmented outline file
Error 1019050 - Outline buffer error. File position [%s] does not match with [%s] bytes written
Error 1019051 - Total adReadStruct Elapsed Time using outline buffer: [%s] seconds
Error 1019052 - Total adOtlReadOutline Elapsed Time using outline buffer: [%s] seconds
Error 1019053 - Total adOtlWriteOutline Elapsed Time using outline buffer: [%s] seconds
Error 1019054 - Invalid Named Attribute Opcode For Member [%s]
Error 1020001 - Bad Binary spreadsheet table
Error 1020002 - Invalid Binary Spreadsheet token
Error 1020004 - An error [%s] occurred in Spreadsheet Extractor.
Error 1020005 - Report contains multiple title rows
Error 1020006 - Title row must be first row with member names
Error 1020007 - Not all dimensions represented for Update
Error 1020008 - Report mixes title row with multiple members from a single dimension
Error 1020009 - [%s] is not a valid member.
Error 1020010 - No data was generated: Suppress Missing = [%s], Zeros = [%s]. Sheet not overwritten.
Error 1020011 - Maximum number of rows [%s] exceeded [%s].
Error 1020012 - Maximum number of columns [%s] exceeded [%s].
Error 1020013 - The resultant report cannot be retrieved. Your report heading cannot be interpreted.
Error 1020014 - Your pivot operation has no effect on this report.
Error 1020016 - Pivot ending point cannot be determined.
Error 1020017 - Datapoint could not be determined.
Error 1020018 - Cannot Cascade on member [%s].
Error 1020019 - The sheet contains an unknown member: %s.
Error 1020021 - Member [%s] is out of place.
Error 1020022 - Member [%s] is out of place.
Error 1020023 - Currently, multiple reports per retrieval is not supported.
Error 1020024 - No valid members selected to Cascade upon.
Error 1020025 - Pivot starting point cannot be determined.
Error 1020027 - This operation would generate a nonsensical report.
Error 1020028 - This operation would generate a nonsensical report.
Error 1020030 - Token [%s] is out of place.
Error 1020031 - This report cannot be retrieved.
Error 1020032 - Data item found before member.
Error 1020033 - Binary spreadsheet table error.
Error 1020034 - Binary spreadsheet table token error.
Error 1020035 - Item [%s] cannot be Cascaded upon.
Error 1020036 - You cannot Cascade on more than one member from any dimension. [%s]
Error 1020037 - Currency Command in Report and No Currency Database Set
Error 1020038 - Member names must be present as row items to perform a pivot.
Error 1020039 - You are not allowed to lock blocks or update at this time.
Error 1020040 - Only one member per dimension is allowed. [%s]
Error 1020041 - You do not have sufficient access to perform a read on this database
Error 1020042 - You do not have sufficient access to perform a lock on this database
Error 1020043 - You do not have sufficient access to perform a %s on this database
Error 1020044 - The Spreadsheet Extractor does not support one dimensional databases.
Error 1020045 - The resultant report cannot be retrieved. Your report heading cannot be interpreted.
Error 1020046 - No valid members to pivot.
Error 1020047 - A column item [%s] conflicts with a row item [%s].
Error 1020048 - You must have a column header in order to perform this retrieval.
Error 1020050 - Your request cannot be performed.
Error 1020051 - Maximum number of rows processed [%s] exceeded [%s].
Error 1020052 - Spreadsheet Extractor internal error: [%s].
Error 1020053 - Spreadsheet Extractor internal error: Invalid input spreadsheet table.
Error 1020054 - Spreadsheet updates aborted. Failed to write to update log files.
Error 1020055 - Spreadsheet Extractor Elapsed Time : [%s] seconds
Error 1020056 - Your pivot operation cannot be performed on this report.
Error 1020058 - Unable to close audit trail file [%s]. Possible causes are file does not exist or file is in use by another system operation. Make sure the file exists or that another system operation is not using it.
Error 1020059 - Unable to open audit trail file [%s]. Possible causes are file does not exist or file is in use by another system operation. Make sure the file exists or that another system operation is not using it.
Error 1020060 - Unable to write audit trail file [%s]. You may have run out of disk space in your Essbase application directory. Free up some disk space in your Essbase application directory.
Error 1020061 - Unable to flush audit trail file [%s]. You may have run out of disk space in your Essbase application directory. Free up some disk space in your Essbase application directory.
Error 1020062 - Cannot attach Linked Reporting Objects to a range of cells. Create a Linked Reporting Objects only for a single cell.
Error 1020063 - Valid Essbase data cell(s) must be selected prior to selecting the Linked Object Menu
Error 1020064 - No linked partition defined within selected cell range
Error 1020065 - Valid Essbase data cell(s) must be selected prior to performing Linked Object functions
Error 1020067 - Cannot perform zoom action on dynamic time series member [%s].
Error 1020068 - Invalid latest setting on dynamic time series member [%s].
Error 1020069 - Cannot pivot last row.
Error 1020070 - Cannot pivot last column.
Error 1020071 - Members locked will be released before calculation can proceed.
Error 1020072 - You are not allowed to perform a Lock or Send operation or be in Update mode while the Navigate without data option is selected.
Error 1020073 - Filter access to the database does not allow you to access this data cell.
Error 1020074 - Filter access to the database does not allow you to update this data cell.
Error 1020075 - The resultant report cannot be retrieved. A dynamic time series member in your report cannot be interpreted
Error 1020078 - Report contains inner row member with ambiguous parent.
Error 1020079 - Codeset conversion buffer too small.
Error 1020080 - Your sheet contains an Attibute Aggregation member with no Attribute members present.
Error 1020081 - Member combinations with Attribute members are not allowed when performing Linked Object operations.
Error 1021000 - Connection With SQL Database Server is Established
Error a href="http://www.essbaseinfo.com/commonerrors-administration">1021001/a> - Failed to Establish Connection With SQL Database Server. See log file for more information
Error 1021002 - SQL Connection is Freed
Error 1021003 - Connection String for [%s] is generated
Error 1021004 - Connection String is generated
Error 1021005 - Failed to Generate CONNECT string
Error 1021006 - SELECT Statement [%s] is generated
Error 1021007 - Failed to Generate SELECT Statement
Error 1021008 - Failed to Allocate Memory for SQL Context
Error 1021009 - Failed to Fetch the Next Record
Error 1021010 - Failed to Allocate Memory for SQL Buffers
Error 1021012 - Row: [%s]
Error 1021013 - ODBC Layer Error: [%s] ==> [%s]
Error 1021014 - ODBC Layer Error: Native Error code [%s]
Error 1021015 - Failed to Execute SQL Statement: [%s]
Error 1021016 - Executed SQL Statement: [%s]
Error 1021017 - Invalid SQL context
Error 1021018 - Execution of SQL statement canceled by user [%s]
Error 1021019 - Total Execution of SQL Statement Elapsed Time : [%s] seconds
Error 1021020 - Cannot read SQL driver name for [%s] from [%s]
Error 1021022 - Failed to access SQL driver
Error 1021024 - Failed to get the list of available SQL data sources. See server log for more information
Error 1021025 - SQL driver [%s] for [%s] is in use already and does not allow multiple connections. Please try later
Error 1021027 - Failed to get the list of SQL tables. See log for more information
Error 1021028 - Failed to get the list of table [%s] columns. See log for more information
Error 1021030 - List of tables is empty
Error 1021031 - List of table [%s] columns is empty
Error 1021033 - SQL data source name is not supplied for the connection string
Error 1021034 - Table name is not provided. Failed to get the list of columns.
Error 1021035 - Value in the column [%s] might be truncated to [%s] bytes
Error 1021036 - Connection String [%s] is too long (exceeds [%s])
Error 1021037 - SQL Config file syntax error [%s], ignored
Error 1021038 - SQL driver for [%s] is in use already and does not allow multiple connections. Please try later
Error 1022001 - Administrator Has Temporarily Disabled User Update Commands
Error 1022002 - User [%s] Does Not Have Correct Access for Command [%s]
Error 1022003 - Database Outline Must Be Loaded For This Command
Error 1023001 - No matching region defined for the specified server,app,db: [%s]
Error 1023002 - Remote connection loops back to current database
Error 1023003 - DB [%s] does not exist in current application
Error 1023004 - User [%s] canceled database replication operation
Error 1023005 - Update of replicated partition elapsed time : [%s] seconds
Error 1023006 - Partition [%s] received parse error generating definition for area [%s]
Error 1023007 - Parse error in partition definition line [%s]
Error 1023008 - Member [%s] specified in mapping does not exist
Error 1023009 - Area [%s]: mapping contains too many NULL->member entries
Error 1023011 - Unable to map remote member [%s]
Error 1023012 - Area [%s] : unable to map sparse combination - skipping grid
Error 1023013 - Area [%s]: multiple NULL->MBR mapping elements map to same dimension
Error 1023014 - Area [%s]: multiple sparse combination members map to same dimension
Error 1023015 - Area [%s] : dense dim member maps to dim specified by sparse combination
Error 1023016 - Area [%s] : members specified for same dimension map to different ones
Error 1023017 - Area [%s] : not all dims specified between sparse combination and grid
Error 1023024 - Linked members do not have the same dimensionality
Error 1023025 - Skipping member %s (remote name %s) not in local partition
Error 1023026 - Area [%s]: dimension at source does not exist at target
Error 1023027 - Area [%s]: unable to map grid - skipping data block
Error 1023028 - On-the-fly currency conversion not supported for transparent partitions
Error 1023029 - Internal Error: remote commit requested but no txn active
Error 1023030 - Unable to commit remote site participating in distributed transaction
Error 1023031 - Unable to commit local site participating in distributed transaction
Error 1023032 - Area [%s] : dynamic calc member [%s] in sparse combination - skipping grid
Error 1023033 - No write access to database %s
Error 1023034 - No read access to database %s
Error 1023035 - Insufficient access to perform operation
Error 1023036 - Current database is not defined as a replication source for any other database
Error 1023037 - This server is not licensed with the application partition option
Error 1023038 - Error [%s] received initializing connection - see server log for details
Error 1023039 - Error [%s] received terminating remote connection - see server log for details
Error 1023040 - msg from remote site [%s %s]
Error 1023041 - Current database is not defined as a replication target of any other database
Error 1023042 - No areas defined for partition [%s]
Error 1023043 - Replication of all data cells required since some blocks were removed since last refresh and timestamps are no longer available for these blocks
Error 1023044 - Processing distributed request from [%s]
Error 1023045 - Cached connection to remote site failed. Retrying...
Error 1023046 - Incorrect number of dimensions in request from remote site; [%s] sent [%s] required; check member mapping between regions
Error 1023047 - Warnings(s) found in partition definition(s) - see server log for details
Error 1023048 - Error(s) found in partition definition(s) - see server log for details
Error 1023049 - Error(s) found in partition definition(s). Partition changes will not take effect - see server log for details
Error 1023050 - Partition verification failed - see server log for details
Error 1023051 - Partition [%s] contains no areas
Error 1023052 - Partition [%s] contains member mapping errors
Error 1023053 - Partition [%s] overlaps with partition [%s]
Error 1023054 - Partition [%s] contains overlapping areas
Error 1023055 - Partition [%s] already exists from database [%s]
Error 1023056 - unable to process transparent request from [%s] because entire request was not mappable; check area and mapping definitions
Error 1023057 - Cannot replace partition defn file while there are other active users on database [%s], check application log for details
Error 1023058 - Transparent operation involving [%s] timed out. Retrying...
Error 1023059 - Replication operation generated %s warnings on %s - see remote server log for details
Error 1023060 - Replication operation [Put Updates] generated %s warnings - see server log for details
Error 1023061 - Replication operation [Get Updates] generated %s warnings - see server log for details
Error 1023062 - Replicated partition source has sparse dynamic member [%s]
Error 1023063 - Unable to map remote latest time period member [%s]
Error 1023064 - Received RPC reqeuest [%s], Params [%s]
Error 1023065 - Definition of slice [%s] has only dynamic cells on the target
Error 1023066 - Unable to resolve location alias %s
Error 1023067 - Location alias %s not found -- delete failed
Error 1023069 - Location alias %s already exists
Error 1023070 - String %s is too long -- location alias create failed
Error 1023071 - Partition [%s] has definition [%s] using attribute members - partition will be ignored
Error 1023072 - Partition [%s] has definition [%s] using base dimension members
Error 1023073 - One or more attribute dimensions were mapped away
Error 1023075 - HashBufferContents = [%s],[%s]
Error 1023076 - Partitioning protocols mismatch between source and target databases
Error 1023077 - Database [%s] has no dense dims - cannot store data
Error 1024000 - Syntax error! Null fixed region defined.
Error 1024001 - Query execution aborted. This query requires a [%s]k buffer. Set or increase the query buffer size to [%s]k.
Error 1024003 - You do not have sufficient access to read from this database
Error 1024004 - You do not have sufficient access to write to this database
Error 1024005 - You do not have sufficient access to update data values on this database
Error 1024007 - All members specified along one dimension were invalid. Request cannot be satisfied
Error 1024008 - Grid Expansion enabled for this query.
Error 1024009 - Member %s specified for external reference formula does not exist
Error 1024010 - Members %s and %s added for external reference from same dimension
Error 1024011 - Current period member %s specified for dynamic time series external reference does not exist
Error 1024012 - Members %s and %s not in same dimension in external reference call
Error 1024013 - Members %s and %s in same dimension in external reference call
Error 1030002 - Invalid call sequence in ESSAPI function %s
Error 1030003 - Unable to Allocate Requested Memory
Error 1030005 - Maximum allocation size (%s bytes) exceeded
Error 1030006 - You have exceeded the maximum [%s] connections for this session.
Error 1030007 - NULL structure pointer passed to EssInit function
Error 1030008 - NULL argument (%s) passed to ESSAPI function %s
Error 1030009 - Name too long (%s) in ESSAPI function %s
Error 1030010 - Invalid blank character in name (%s) in ESSAPI function %s
Error 1030011 - Invalid character in name (%s) in ESSAPI function %s
Error 1030012 - Improper access to ESSAPI function %s
Error 1030013 - Local operation not allowed in ESSAPI function %s
Error 1030014 - Invalid object type passed to ESSAPI function %s
Error 1030015 - Combined object type not allowed in ESSAPI function %s
Error 1030016 - Context to delete is not local
Error 1030017 - ESSAPI function %s called while processing message
Error 1030018 - Cannot create client identification file
Error 1030019 - The Essbase API version (%s) for this application is incompatible with this version of the Essbase API (%s).
Error 1030021 - Illegal structure ID
Error 1030100 - Cannot open file: [%s]
Error 1030101 - Incorrect gen statement after member: %s
Error 1030102 - Invalid member name: %s
Error 1030103 - Invalid unary operator [%s] tagged on member: %s
Error 1030104 - Unknown ATYPE [%s] tagged on member: %s
Error 1030105 - Invalid tag command [%s] on member: %s
Error 1030106 - [%s] function is OBSOLETE
Error 1030200 - Cannot access object: %s
Error 1030201 - Cannot create object: %s
Error 1030202 - Cannot delete object %s
Error 1030203 - Cannot rename object: %s
Error 1030204 - Cannot create client directory: %s
Error 1030205 - Client directory does not exist: %s
Error 1030206 - Cannot create application directory: %s
Error 1030207 - Application directory already exists: %s
Error 1030208 - Application directory does not exist: %s
Error 1030209 - Cannot create database directory: %s:%s
Error 1030210 - Database directory already exists: %s:%s
Error 1030211 - Database directory does not exist: %s:%s
Error 1030212 - Object %s does not exist
Error 1030213 - Cannot create local file: %s
Error 1030214 - User [%s] cannot access calc script: %s
Error 1030215 - Client or server is not Version 5.0.2 or later. Error 1030216 - Invalid file type specification (%s) passed to ESSAPI function %s.
Error 1030300 - Cannot rename application %s to %s
Error 1030301 - Cannot rename database %s to %s
Error 1030302 - Error writing database outline
Error 1030303 - No application specified for server rules object
Error 1030304 - No application specified for server data object
Error 1030400 - Invalid Blank argument(s) passed to eSSAutoLogin function
Error 1030500 - Number of SQL columns (%s) exceeded maximum (%s). Extra columns have been truncated.
Error 1030530 - Unable to list information for more than (%s) users due to operating system limitations. Information for (%s) users not provided.
Error 1030531 - Substitution variable definition is missing the variable name.
Error 1030532 - Substitution variable [%s] exceeds the maximum length (80)
Error 1030533 - Substitution variable [%s] can only have alphanumeric characters or '_'.
Error 1030534 - Substitution variable [%s] value exceeds the maximum length (256)
Error 1030602 - As of V5.0, explicit defragmentation of data freespace is unnecessary because defragmentation of data freespace is performed dynamically by the Essbase Kernel.
Error 1030700 - No operation types specified for function [%s]
Error 1030701 - Invalid operation type [%s] specified for function [%s]
Error 1030702 - No data direction types specified for function [%s]
Error 1030703 - Invalid data direction type [%s] specified for function [%s]
Error 1030704 - Invalid area count (%s) passed to ESSAPI fn %s
Error 1030705 - Invalid area information passed to ESSAPI fn %s
Error 1030706 - Invalid file location %s
Error 1030707 - Invalid input: %s from argument %s is NULL
Error 1030708 - Invalid input: 0 as argument [%s]
Error 1030709 - Invalid file handle specified for function [%s]
Error 1030710 - No meta data direction types specified for function [%s]
Error 1030711 - Invalid meta data direction type [%s] specified for function [%s]
Error 1030712 - LRO File size exceeds size limit - %s K bytes
Error 1030713 - Invalid member count entered - %s
Error 1030714 - Invalid store object option entered - %s
Error 1030715 - Invalid object option entered - %s
Error 1030717 - Invalid object type entered - %s
Error 1030718 - Invalid object option for cell note entered - %s
Error 1030719 - Invalid object option for LRO files entered - %s
Error 1030720 - Empty cell note entered
Error 1030721 - Invalid object option for URL link entered - %s
Error 1030722 - Empty URL location string entered
Error 1030723 - Failed to initialize localization functions
Error 1030724 - Failed to set locale information
Error 1030725 - Failed to obtain locale information
Error 1040002 - Too many arguments supplied for this request
Error 1040003 - No length specified for data type
Error 1040004 - Invalid structure type. An application protocol error might exist between server and client processes.
Error 1040006 - No message database specified
Error a href="http://www.essbaseinfo.com/commonerrors-exceladd-in">1040007/a> - Cannot find message database %s, which is required for normal operations. Make sure your PATH and ARBORPATH variables are pointing to the correct directories. Make sure that %s exists in the ARBORPATH\bin directory
Error 1040008 - Error reading message database %s. %s could be corrupted, or it could be the wrong version. Make sure that the file you are using is from the same Essbase version level as the .exe and .dll files
Error 1040009 - Invalid message database format
Error 1040010 - Invalid data type for conversion
Error 1040011 - NULL network context passed to message function
Error 1040012 - Invalid structure type
Error 1040013 - Invalid structure field type
Error 1040014 - RegOpenKeyEx() Failed
Error 1040015 - RegQueryInfoKey() Failed
Error 1040016 - RegEnumValue() Failed
Error 1040017 - Host Name Not Available
Error 1040018 - Bad hostname to adNetIsLocalHost()
Error 1041000 - Network error [%s]: Cannot Create Named Pipe
Error 1041002 - Network error: Timed out waiting for connection, Error Code:(%s)
Error 1041003 - Network error [%s]: Cannot disconnect named pipe
Error 1041004 - Network error [%s]: Cannot send data
Error 1041005 - Network error [%s]: The Network API timed out waiting to receive data from the Named Pipe. Increase the NetRetryCount and/or NetDelay values in your ESSBASE.CFG file. Make sure you update this file on both client and server, if they exist on different machines. Restart the client and try again.
Error 1041006 - Network error: Timed out waiting to receive message
Error 1041007 - Network error: Cannot locate connect information for %s
Error 1041008 - Network error: Cannot locate Essbase on server %s. Verify that the %s is accessible using the Named Pipe and that the Essbase Agent is running on the server
Error 1041009 - Network error: Cannot connect to server %s
Error 1041010 - Network error: Cannot locate server %s
Error 1041011 - Network error [%s]:InitializeSecurityDescriptor failed
Error 1041012 - Network error [%s]: SetSecurityDescriptorDacl failed
Error 1041013 - Network error: Timed out sending data
Error 1041014 - Network error: NodeName required in ESSBASE.CFG for Named Pipe
Error 1042002 - Network error [%s]: Cannot Terminate Socket
Error 1042003 - Network Error [%s]: Unable To Locate [%s] In Hosts File
Error 1042004 - Network Error [%s]: Unable To Create Local Socket
Error 1042005 - Network Error [%s]: Unable To Bind Local Socket
Error 1042006 - Network Error [%s]: Unable To Connect To [%s]. The client timed out waiting to connect to the Essbase Agent using TCP/IP. Check your network connections.
Error 1042007 - Network Error [%s]: Unable To Listen For Connections
Error 1042008 - Network Error [%s]: Unable To Accept Connections
Error 1042009 - Network Error [%s]: Unable To Create Host Server Socket
Error 1042010 - Network Error [%s]: Unable to Bind Host Server Socket On Port [%s]
Error 1042011 - Network error [%s]: Cannot Close Socket
Error 1042012 - Network error [%s]: Cannot Send Data
Error 1042013 - Network error [%s]: Cannot Receive Data
Error 1042015 - Network error: Cannot Locate Connect Information For [%s]
Error 1042016 - Network error [%s]: Connection has been closed
Error 1042017 - Network error: The client or server timed out waiting to receive data using TCP/IP. Check network connections. Increase the NetRetryCount and/or NetDelay values in the ESSBASE.CFG file. Update this file on both client and server. Restart the client and try again.
Error 1042018 - Network error: Timed out waiting to send message
Error 1042019 - Network error [%s]: Cannot initialize windows sockets
Error 1042020 - Network error [%s]: Cannot initialize windows sockets
Error 1042021 - Network error [%s]: Cannot initialize IBM sockets
Error 1042022 - Network info [%s]: Got Host Name
Error 1051000 - Received login request
Error 1051001 - Received client request: %s (from user %s)
Error 1051002 - Unrecognized command: %s
Error 1051003 - Error %s processing request [%s] - disconnecting
Error 1051004 - Logins are currently not permitted
Error 1051005 - Incorrect password
Error 1051006 - Disconnecting user %s from application %s
Error 1051007 - Invalid login id - request [%s] failed
Error 1051008 - Invalid login id - logout failed
Error 1051009 - Setting application %s active for user %s
Error 1051010 - The system is temporarily busy - please wait
Error 1051011 - System timed out (error %s)
Error 1051012 - User %s does not exist
Error 1051013 - User/group %s does not exist
Error 1051014 - User/group %s already exists
Error 1051015 - Invalid user/group name: %s
Error 1051016 - Cannot rename yourself!
Error 1051017 - Cannot delete yourself!
Error 1051018 - Cannot rename to same name!
Error 1051019 - Cannot alter your own access level
Error 1051020 - Cannot log yourself out!
Error 1051021 - You have been logged out due to inactivity or explicitly by the supervisor.
Error 1051022 - Password too short - must be at least %s characters
Error 1051023 - Invalid type for user/group %s - ignored
Error 1051024 - Unknown name %s in user/group list - ignored
Error 1051025 - User %s is not permitted to access application %s
Error 1051026 - User %s is not permitted to access database %s
Error 1051027 - All logins are currently in use - please try again
Error 1051028 - Cannot remove last supervisor!
Error 1051029 - Cannot change access privileges. User/group %s has higher access privileges than %s
Error 1051030 - Application %s does not exist
Error 1051031 - Application %s already exists
Error 1051032 - Database %s does not exist
Error 1051033 - Database %s already exists
Error 1051034 - Logging in user %s
Error 1051035 - Last login on %s
Error 1051036 - %s unsuccessful attempt(s) since last login
Error 1051037 - Logging out user %s, active for %s
Error 1051038 - Filter %s does not exist
Error 1051039 - Filter %s already exists
Error 1051040 - Cannot copy filter %s to itself
Error 1051041 - Insufficient privilege for this operation
Error 1051042 - User %s has insufficient privilege
Error 1051043 - Cannot delete application - object %s locked by user %s
Error 1051044 - Cannot delete database - object %s locked by user %s
Error 1051045 - Cannot delete application %s - you are not the application creator
Error 1051046 - Cannot delete database %s - you are not the database creator
Error 1051047 - Cannot load spreadsheet [%s], file corrupted or password protected
Error 1051048 - Cannot rename a user who is currently logged in
Error 1051049 - Your software evaluation period has expired. Please contact your database administrator for more information.
Error 1051050 - You must upgrade your client software to perform this function.
Error 1051051 - Hyperion Essbase OLAP Server - started
Error 1051052 - Hyperion Essbase OLAP Server - finished
Error 1051053 - *** Unauthorized access - program terminating
Error 1051054 - Starting autoload applications:
Error 1051055 - Timed out - cannot start application %s
Error 1051056 - Unknown application name %s - ignored
Error 1051057 - Application %s is already loaded
Error 1051058 - Timed out - cannot stop application %s
Error 1051059 - Application %s is not loaded
Error 1051060 - System password updated
Error 1051061 - Application %s loaded - connection established
Error 1051062 - Security file dumped to %s
Error 1051063 - All connections for user [%s] have been logged out!
Error 1051064 - *** Incorrect password!
Error 1051065 - Creating sample currency databases
Error 1051066 - Creating sample application and database
Error 1051067 - Database is already in archive read-only mode
Error 1051068 - Database is not in archive read-only mode
Error 1051069 - All connections for user [%s] have automatically been logged out!
Error 1051070 - InactivityCheck must be less than or equal to InactivityTime ... setting InactivityCheck to %s
Error 1051071 - This version of Essbase (%s) is older than the version of the Essbase API (%s) you are using.
Error 1051072 - Cannot create application: name is invalid.
Error 1051073 - Cannot delete application: name is invalid.
Error 1051074 - Differences found in license numbers: %s is registered, %s found in security file.
Error 1051075 - Creating demo application and database
Error 1051076 - Database %s is in archive read-only mode
Error 1051077 - The server you have attempted to connect to is restricted to personal use only. Please contact your database administrator for more information.
Error 1051078 - Received shutdown server request
Error 1051079 - Unable to shutdown server
Error 1051080 - You are not allowed to select an application.
Error 1051081 - You do not have sufficient access to create or update this substitution variable.
Error 1051082 - This substitution variable already exists.
Error 1051083 - This substitution variable does not exist.
Error 1051084 - You do not have sufficient access to delete this substitution variable.
Error 1051085 - You do not have sufficient access to get this substitution variable.
Error 1051088 - Duplicate disk volume name [%s] encountered in the disk volume settings for database [%s].
Error 1051089 - User name and password can not be the same
Error 1051090 - User Password has expired
Error 1051091 - User has been locked out. Please contact your system administrator.
Error 1051092 - User has not login the system for more than %s days. Please contact your system administrator.
Error 1051093 - Please change the password now
Error 1051094 - The new password can not be the same as the old password
Error 1051096 - Failed to rename application [%s].
Error 1051097 - Creating Samppart application and Company database
Error 1051098 - Cannot rename the only supervisor
Error 1051099 - Creating Sampeast application and East database
Error 1051100 - Failed to add application %s. License restricted to one application.
Error 1051101 - Creating East database
Error 1051102 - Getting lock for Application %s failed
Error 1051103 - Failed to Initialize the Application Specific Concurrency Control Structure for application %s.
Error 1051105 - Failed to add application. License does not allow this data storage type. Please refer to the Essbase Documentation for valid settings.
Error 1051107 - \nCannot copy database %s between applications with different storage types
Error 1052001 - Error reading from server
Error 1052002 - Error writing to server
Error 1052003 - Timed out reading from server
Error 1052004 - Timed out writing to server
Error 1053001 - Cannot open object file: %s
Error 1053002 - Cannot create application directory: %s [%s]
Error 1053003 - Application directory does not exist: %s
Error 1053004 - Cannot create database directory: %s [%s]
Error 1053005 - Database directory does not exist: %s
Error 1053006 - Invalid object type
Error 1053007 - Cannot rename object %s to %s
Error 1053008 - Cannot create object %s
Error 1053009 - Cannot delete object %s
Error 1053010 - Object %s is already locked by user %s
Error 1053011 - Object %s is not locked by user %s
Error 1053012 - Object %s is locked by user %s
Error 1053013 - Object %s unlocked by user %s
Error 1053014 - Object %s does not exist
Error 1053015 - Object %s already exists
Error 1053016 - Cannot open temporary file
Error 1053017 - Cannot open log file for application %s
Error 1053018 - Operation not permitted on outline objects
Error 1053019 - Cannot rename directory: %s [%s]
Error 1053020 - Error writing file: %s
Error 1053021 - Cannot copy object %s to itself
Error 1053022 - Database [%s] is in read-only mode for backup
Error 1053023 - User's log message: %s
Error 1054001 - Cannot load application %s - see server log file
Error 1054002 - Loading application %s is not currently permitted
Error 1054003 - Error %s loading application: %s
Error 1054004 - Application %s is not loaded
Error 1054005 - Shutting down application %s
Error 1054006 - Cannot terminate application %s
Error 1054007 - Application %s not responding
Error 1054008 - Cannot load application %s - enable IOPL in CONFIG.SYS
Error 1054009 - Application %s is currently not accepting connections
Error 1054010 - Application %s is currently not accepting user commands
Error 1054011 - Loading database %s is not currently permitted
Error 1054012 - Invalid syntax in filter line %s
Error 1054013 - Syntax error loading filters - operation canceled
Error 1054014 - Database %s loaded
Error 1054016 - Invalid file name [%s]. [%s] aborted
Error 1054017 - Cannot read from file with handle [%s], [%s] failed
Error 1054018 - RECEIVED ABNORMAL SHUTDOWN COMMAND - ESSBASE TERMINATING
Error 1054019 - Cannot modify settings for application [%s] while application is loaded and user who has modified the settings is logged in
Error 1054020 - *** Missing command line password! [%s]
Error 1054021 - Cannot modify settings for application [%s]. See server log for more information
Error 1054022 - Cannot copy application [%s] while database [%s] is in archive or read only mode
Error 1054023 - Cannot modify settings for application [%s] while database [%s] is in archive or read only mode
Error 1054024 - Agent on [%s] could be deadlocked. Increase number of t
Error 1054025 - Cannot rename application [%s] while database [%s] is in archive or read only mode
Error 1054026 - Cannot create a new database in application [%s] while database [%s] is in archive or read only mode
Error 1054027 - Application [%s] started with process id [%s]
Error 1054029 - Invalid parameter values for database file information request.
Error 1055001 - \n%s login system\n
Error 1055002 - \n Welcome to the Hyperion Essbase OLAP Server.\n\n Before using this product, you will need to register your personal\n details, including the name of your company or organization, your own\n name (which will be used to create your user id), and a secret system\n password which you will need to use each time you run the product.\n\n Be sure to choose a password which is easy to remember, but difficult\n to guess (you may wish to write it down and keep it in a safe place).\n
Error 1055003 - \n The password must be at least %s charaters long, and it can consist\n of any number of letters or spaces.\n\n
Error 1055004 - \nUser name and password can not be the same.\n\n
Error 1055005 - \n\nYou have entered the following details:\n
Error 1055006 - \n\tCompany name: %s
Error 1055007 - \n\tYour name: %s
Error 1055008 - \n\tSystem password: %s
Error 1055009 - \n\nThese will be used to create the initial system security information\nincluding the system supervisor.\n
Error 1055010 - \n\rAre these details correct? (y/n):
Error 1055011 - \n\nRe-enter your details\n\n
Error 1055012 - \n\nRegistering user information\n
Error 1055013 - \nCreating initial system security defaults...\n
Error 1055014 - \n\r%s [%s]:
Error 1055015 - \n\rPlease re-enter (must be between %s and %s characters)
Error 1055016 - \nUnlimited login system\n
Error 1055017 - \r\n*** Abnormal shutdown request entered ***\r\nShutting down all applications and exiting Essbase\r\n
Error 1055018 - \r\n*** A fatal error has happened, Essbase is trying to shutdown ***\r\n
Error 1055019 - \r\nShutdown request is aborted, Essbase will continue processing\r\n
Error 1055020 - \r\nCannot stop application %s
Error 1055021 - \nEssbase Default Storage type is Multidimensional\n
Error 1055022 - \nEssbase Default Storage type is DB2Relational\n
Error 1055023 - \nEssbase Default Storage type is Oracle Relational\n
Error 1055024 - \nEssbase Default Storage type is Undefined\n
Error 1055025 - \nHyperion Essbase OLAP Server - %s
Error 1055026 - \nCopyright 1991-2000 Hyperion Solutions Corporation.\nUS Patent Number 5,359,724\nAll Rights Reserved.\n
Error 1055027 - \nSerial number: %s\n
Error 1055028 - \r\nRegistered to: %s\r\n %s\r\n\n
Error 1055029 - Use essbase password> -b to start in background
Error 1055030 - Error:\t*** Incorrect password!\n
Error 1055031 - \r\nPlease type the system password:
Error 1055032 - \n\nStartup sequence completed\n
Error 1055033 - \nSecurity is enabled
Error 1055034 - \nSecurity is disabled
Error 1055035 - \nLogins are enabled
Error 1055036 - \nLogins are disabled
Error 1055037 - \nAgent Threads - %s
Error 1055038 - \nWaiting for Client Requests...\n
Error 1055039 - \nError: Cannot allocate memory.
Error 1055040 - \nError: Cannot create thread.
Error 1055041 - \nError: Cannot create daemon thread.
Error 1055042 - \n
Error 1055043 - \nExecuting command: %s\n
Error 1055044 - \n*** Usage: START application\n
Error 1055045 - \n*** Usage: STOP application\n
Error 1055046 - \nHyperion Essbase by courtesy of:\n%s
Error 1055047 - \n\n%s connection%s in use\n
Error 1055048 - \nNo users connected\n
Error 1055049 - %s port%s available\n
Error 1055050 - \nNo ports available\n
Error 1055051 - \n\n%s port%s in use\n
Error 1055052 - \nEnter system password:
Error 1055053 - \nUser [%s
Error 1055054 - ] is not logged in!\n
Error 1055055 - \n*** Usage: DUMP filename\n
Error 1055056 - \nEnter old system password:
Error 1055057 - Enter new system password:
Error 1055058 - Re-type new system password:
Error 1055059 - \n*** Passwords do not match!
Error 1055060 - \n*** Password must be less than 100 characters\n
Error 1055061 - \n*** Password must be at least %s characters\n
Error 1055062 - \nInvalid argument: %s\n
Error 1055063 - \nDebugging %sabled\n
Error 1055064 - \n*** Unknown user!\n
Error 1055065 - \n*** Usage: LOGOUTUSER user\n
Error 1055066 - \nCommands available are:\n\n
Error 1055067 - START application - start an application\n
Error 1055068 - STOP application - stop an application\n
Error 1055069 - USERS - list all connected users\n
Error 1055070 - PORTS - list port usage\n
Error 1055071 - LOGOUTUSER user - forcibly logout a user\n
Error 1055072 - PASSWORD - change the Essbase system password\n
Error 1055073 - DUMP filename - dump current state of security to a file\n
Error 1055074 - VERSION - display the Essbase version number\n
Error 1055075 - HELP - display this text\n
Error 1055076 - QUIT/EXIT - exit program (stop all applications)\n
Error 1055077 - \nERROR: Could Not Initialize Application specific Concurrency Control structure for application %s.\n
Error 1055078 - ERROR: Invalid application index %s for Substitution Variable %s\n
Error 1055079 - ERROR: Invalid database index %s for Substitution Variable %s\n
Error 1055080 - \nERROR: Substitution Variable(s) corrupted in security file\n
Error 1055081 - ACTION REQUIRED: Redefine the applications for all Substitution Variables\n
Error 1055082 - ACTION REQUIRED: Redefine the databases for all Substitution Variables\n
Error 1060000 - Invalid outline handle passed to ESSOTL function %s
Error 1060001 - NULL argument (%s) passed to ESSOTL function %s
Error 1060002 - Invalid outline type
Error 1060003 - Invalid sort type
Error 1060004 - Invalid sorting compare function
Error 1060005 - Too many members to sort
Error 1060006 - The outline is a currency outline
Error 1060007 - There is no accounts dimension
Error 1060008 - There is no time dimension
Error 1060009 - There is no country dimension
Error 1060010 - Invalid member name (%s)
Error 1060011 - Invalid consolidation type
Error 1060013 - Illegal move of member
Error 1060014 - Invalid input member name string
Error 1060015 - Illegal member name
Error 1060016 - Duplicate member name
Error 1060017 - Illegal currency member
Error 1060018 - Illegal default alias name
Error 1060019 - Illegal combinational alias name
Error 1060020 - Illegal member combinational for alias
Error 1060021 - Illegal dimension tag
Error 1060022 - No time dimension defined
Error 1060023 - Duplicate alias
Error 1060024 - Illegal member formula
Error 1060025 - Shared member not at level 0
Error 1060026 - Shared member with no actual member
Error 1060027 - Accounts dimension is dense and time dimension sparse
Error 1060028 - Leaf member defined as a label member
Error 1060030 - Illegal time balance value
Error 1060031 - Illegal time balance skip value
Error 1060032 - Illegal share value
Error 1060033 - Illegal dimension storage value
Error 1060034 - Illegal storage category
Error 1060035 - Illegal alias table
Error 1060036 - Invalid user attribute
Error 1060037 - Cannot find user attribute %s
Error 1060038 - The maximum number of alias tables has been reached
Error 1060039 - Illegal alias table name
Error 1060040 - Alias table %s already exists
Error 1060041 - Cannot rename the default alias table
Error 1060042 - Cannot delete the default alias table
Error 1060043 - Invalid object type
Error 1060044 - Cannot create temporary file name
Error 1060045 - Invalid transaction type
Error 1060046 - Could not open file
Error 1060047 - Could not read from or Write to file
Error 1060048 - Invalid restructure type passed to ESSAPI function %s
Error 1060049 - Too many dimensions in a currency outline
Error 1060050 - Member name already used
Error 1060051 - Member name already used
Error 1060052 - Too many dimensions to configure
Error 1060053 - Outline has errors
Error 1060054 - Cannot find gen or level name
Error 1060055 - Invalid gen or level name passed to ESSAPI function %s
Error 1060056 - Gen or level name already exists
Error 1060057 - Dimension name expected
Error 1060058 - Shared member cannot have a formula
Error 1060059 - There is no alias combination
Error 1060060 - Gen or level already has a name
Error 1060061 - Illegal gen or level value
Error 1060062 - There is no alias for this member
Error 1060063 - There is no formula for this member
Error 1060064 - A shared member cannot have user-defined attributes
Error 1060065 - The generation or level name is the same as a member or alias
Error 1060066 - There is a generation or level name with the same name as the member or one of its aliases
Error 1060067 - The source and destination alias tables are the same
Error 1060068 - The file was opened in the wrong mode to make this call
Error 1060069 - Illegal option
Error 1060070 - Level 0 virtual members must have a formula associated with them
Error 1060072 - Parent of an only child virtual member must also be virtual
Error 1060073 - Virtual member has more than 100 children
Error 1060074 - Dimension without children cannot be virtual
Error 1060075 - Unknown DTS member
Error 1060076 - Member in which to store data is type Dynamic Calc
Error 1060077 - DTS member is not enabled for this generation
Error 1060079 - Extended member comment exceeds maximum length
Error 1060080 - Invalid Structure ID
Error 1060081 - Attribute Dimension is not associated to the base dimension
Error 1060082 - Base member's level is not matching with the association level
Error 1060083 - Not an Attribute member
Error 1060084 - Base member is invalid. It Might be Attribute or Aggregate type
Error 1060085 - Attribute is not level zero
Error 1060086 - Attribute dimension is already associated
Error 1060087 - Not a sparse dimension(s)
Error 1060088 - Attribute is not associated with the base member
Error 1060089 - Non attribute dimension(s) exist(s) after attribute dimension
Error 1060090 - Attribute association and disassociation is not allowed for shared/label only members.
Error 1060091 - Attribute longname for member %s is longer than ESS_MBRNAMELEN
Error 1060092 - NULL value for member name string
Error 1060093 - Invalid setting for usGenNameBy in attribute specifications
Error 1060094 - Invalid setting for usUseNameOf in attribute specifications
Error 1060095 - Invalid setting for delimiter in attribute specifications
Error 1060096 - Invalid setting for Date Format in attribute specifications
Error 1060097 - Invalid setting for usBucketingType in attribute specifications
Error 1060098 - Illegal numeric attribute value
Error 1060099 - Illegal boolan attribute value
Error 1060100 - Illegal date value.
Error 1060101 - Attribute dimension can not be followed by Standard/base dimensions
Error 1060102 - Illegal datatype for attribute
Error 1060103 - Attribute members datatype is not matching with Attribute dimensions datatype.
Error 1060104 - Attribute parent-child category illegal
Error 1060105 - Attributes can not have associated UDAs
Error 1060106 - Refer to Error2 in ESS_OUTERROR_T
Error 1060107 - Illegal operation for the member
Error 1060108 - Illegal attribute value for level 0 attribute member
Error 1060109 - Boolean/AttrCalc dimensions have invalid children count
Error 1060110 - Illegal Attrcalc dimension/member name
Error 1060111 - More than one AttrCalc dimension
Error 1060112 - Invalid value being set for attribute memberinfo
Error 1060113 - Invalid value being set for attrcalc dimension/member memberinfo
Error 1060114 - Attribute Calculations dimension can not be created
Error 1060115 - Attribute Calculations dimension/member name already used.
Error 1060116 - Not a member
Error 1060118 - The error in operation has resulted in unrecoverable outline. Please abort! do not save.
Error 1060119 - In the tree/subtree being traversed, Level 0 Attribute Member's long name %s already used.
Error 1060120 - The member is not fetched as part of the query
Error 1070000 - Index cache is full. Please increase the index cache size for database [%s].
Error 1070013 - Index cache size ==> [%s] bytes, [%s] index pages.
Error 1070014 - Index page size ==> [%s] bytes.
Error 1070016 - Invalid index Context. [%s] aborted
Error 1070017 - Invalid file id [%s]. [%s] aborted
Error 1070018 - Invalid file handle [%s]. [%s] aborted
Error 1070019 - Invalid file name [%s]. [%s] aborted
Error 1070020 - Out of disk space. Cannot create a new [%s] file. [%s] aborted
Error 1070022 - Cannot Get a Free Frame From the Buffer Pool. [%s] aborted
Error 1070024 - Main page has not been written since [%s] file is created. Ignored
Error 1070026 - Corrupted Node Page in the B+tree. [%s] aborted
Error 1070028 - Chsize failed. [%s] aborted
Error 1070031 - Invalid frames link, [%s] aborted
Error 1070033 - Failed to allocate a fixed size memory pool. [%s] aborted
Error 1070035 - Recovering Database [%s] After Abnormal Termination...
Error 1070036 - The number of disk partitions is 0. [%s] aborted
Error 1070039 - Not Enough Memory to Allocate the Index Buffer Cache. Using default
Error 1070041 - Index For Database [%s] Is Corrupted, Unable To Recover Free Fragments. [%s] aborted
Error 1070042 - Recovering Free Space In The Data Files For The Database [%s]...
Error 1070043 - Unable to determine the amount of virtual memory available on the system
Error 1070045 - File [%s] cannot be created because it already exists. [%s] aborted
Error 1070049 - Requested Cache Size + Internal Adjustment = [%s bytes]; Available Virtual Memory: [%s Kbytes].
Error 1070051 - Duplicate key [%s.%s] found in AVL-Tree.
Error 1070052 - Key [%s.%s] not found in AVL-Tree.
Error 1070053 - Attempt to delete key [%s.%s] from an empty AVL-Tree.
Error 1070054 - Lookup of key [%s.%s] encountered an empty AVL-Tree.
Error 1070055 - Invalid traversal order [%s] on AVL-Tree.
Error 1070056 - Invalid lookup of AVL-Tree. [%s] aborted.
Error 1070057 - Database migration to the current version of Essbase is needed.
Error 1070058 - Database migration cannot be performed while the database is in read-only mode
Error 1070059 - Migrating the database index from V4 format to V6 format ...
Error 1070060 - Converted [%s] index entries
Error 1070061 - Index migration from V4 format to V6 format completed successfully
Error 1070062 - Index migration from V4 format to V6 format failed
Error 1070063 - Database restructuring cannot be performed while the database is in read-only mode
Error 1070064 - Deleted [%s] index entries
Error 1070066 - Cannot read from file with handle [%s], [%s] failed
Error 1070067 - Invalid file name [%s]. [%s] aborted
Error 1070068 - Recovering database [%s] during fatal error processing...
Error 1070069 - Expanding the index freespace cache for database [%s] to [%s] index pages.
Error 1070070 - Performing index file recovery for database [%s].
Error 1070071 - Converting index file descriptors for database [%s].
Error 1070072 - Migration has resulted in an empty database
Error 1070073 - Restructuring has resulted in an empty database
Error 1070074 - Database migration to an index page size of [%s] is needed.
Error 1070075 - Sparse incremental restructuring is not supported during migration. Apply all changes in the outline change log before attempting to migrate.
Error 1070076 - Converted [%s] LRO index entries
Error 1070077 - Locking the index cache pages into physical memory.
Error 1070078 - Turning off cache memory locking due to lack of physical memory. Using virtual memory to allocate the remainder of the index and data caches.
Error 1070079 - Turning off cache memory locking due to insufficient privilege. Using virtual memory to allocate the remainder of the index and data caches.
Error 1070080 - Using direct I/O for the index and data files.
Error 1070081 - Using buffered I/O for the index and data files.
Error 1070082 - Using no-wait I/O for the index and data files.
Error 1070083 - Using waited I/O for the index and data files.
Error 1070084 - Migrating the database index from V5 format to V6 format ...
Error 1070085 - Index migration from V5 format to V6 format completed successfully
Error 1070086 - Index migration from V5 format to V6 format failed
Error 1070087 - Migrating the database index to an index page size of [%s] ...
Error 1070088 - Index migration to an index page size of [%s] completed successfully
Error 1070089 - Index migration to an index page size of [%s] failed
Error 1070090 - Unable to unlock physical memory allocated for the index of database [%s].
Error 1070091 - Not enough memory to allocate the index buffer cache. Using the minimum size.
Error 1070092 - Waiting to swap an index cache page for database [%s]. Performance could potentially be improved by increasing the index cache size.
Error 1070093 - Error [%s] encountered while waiting for completion of an index flush for database [%s].
Error 1070094 - Premature end of a file descriptor page chain for database [%s] was encountered.
Error 1070095 - Migrating the database index from V6 Beta I format to V6 format ...
Error 1070096 - Index migration from V6 Beta I format to V6 format completed successfully
Error 1070097 - Index migration from V6 Beta I format to V6 format failed
Error 1070098 - Error [%s] encountered while waiting to traverse the index for database [%s].
Error 1080001 - Block in the transaction list has an invalid status. [%s] aborted
Error 1080004 - Unable to set the transaction flag in the .ESM file. [%s] aborted.
Error 1080007 - Transaction Commit: [%s] blocks will be processed
Error 1080009 - Fatal error [%s] encountered during transaction commit.
Error 1080010 - The Transaction Manager component of the Essbase Kernel must already have been initialized in order to begin a transaction.
Error 1080011 - The Transaction Manager component of the Essbase Kernel must already have been initialized in order to commit a transaction.
Error 1080012 - The Transaction Manager component of the Essbase Kernel must already have been initialized in order to abort a transaction.
Error 1080013 - Fatal error [%s] encountered during transaction abort.
Error 1080014 - Transaction [%s] aborted due to status [%s].
Error 1080015 - Unable to create Transaction Cleanup Daemon thread.
Error 1080016 - Error [%s] upon creating the event to stop the Transaction Cleanup Daemon.
Error 1080017 - Error [%s] upon setting the event to stop the Transaction Cleanup Daemon.
Error 1080018 - Error [%s] upon waiting for the Transaction Cleanup Daemon to stop.
Error 1080019 - Error [%s] upon deleting the Transaction Cleanup Daemon's Thread Context resources.
Error 1080020 - Transaction Cleanup Daemon terminating due to error [%s].
Error 1080021 - Invalid transaction handle [%s] passed to the Essbase Kernel for database [%s].
Error 1080022 - Reinitializing the Essbase Kernel for database [%s] due to a fatal error ...
Error 1080023 - Reinitializing the Essbase Kernel for currency database [%s] due to a fatal error ...
Error 1080024 - Reinitializing the Essbase Kernel for currency database [%s] due to a fatal error ...
Error 1080026 - Unable to recover database [%s] while the database is in read-only mode.
Error 1080027 - Performing transaction recovery for database [%s] following an abnormal termination of the server.
Error 1080028 - Performing transaction recovery for database [%s] during fatal error processing.
Error 1080029 - Transactions for database [%s] have temporarily been disabled. Please retry your operation later.
Error 1080030 - The Transaction Manager component of the Essbase Kernel must already have been initialized in order to disable transactions.
Error 1080032 - Forcibly aborting transaction [%s] while quiescing update activity on database [%s].
Error 1080033 - TCT File opened (fd = %s)
Error 1080034 - TCT File closed (fd = %s)
Error 1080035 - TCT File read error (%s, %s)
Error 1080036 - TCT File write error (%s, %s)
Error 1080037 - Transaction [%s] aborted due to invalid transaction status [%s].
Error 1080038 - Terminating the Essbase Application Server process due to a fatal error encountered by the Essbase Kernel for database [%s].
Error 1080039 - Unable to create the Database Writer's thread.
Error 1080040 - Error [%s] upon setting the event to stop the Database Writer.
Error 1080041 - Error [%s] upon waiting for the Database Writer to stop.
Error 1080042 - Database Writer terminating due to error [%s].
Error 1080043 - Error [%s] upon creating the event to start the Database Writer.
Error 1080044 - Error [%s] upon setting the event to start the Database Writer.
Error 1080045 - Error [%s] upon waiting for the Database Writer to start.
Error 1090000 - Cannot create temporary file name
Error 1090001 - Column Ordering is Incorrect (Column %s)
Error 1090002 - Member Missing For Add As Of Child Dimension Setting For Dimension [%s]
Error 1090003 - Dimension Invalid For Column [%s]
Error 1090004 - Unable To Open File [%s]
Error 1090005 - Unable To Read From File [%s]
Error 1090006 - Revision Invalid For From File [%s]
Error 1090007 - Member [%s] For Add As Of Child Dimension Is From Wrong Dimension
Error 1090008 - Field Label (Column %s) does not match build method
Error 1090009 - File [%s] Can Not Be Read, The File is Password Protected
Error 1090010 - Error in File [%s] Which is a [%s] Spreadsheet
Error 1090011 - Unable to Open Error File (%s)
Error 1090012 - Unable to Process Rules File (%s)
Error 1090013 - Cannot Open Data Source
Error 1090014 - Initialization failed - Memory Error
Error 1090015 - Error processing data file
Error 1090016 - Illegal DUPLEVEL (Column %s)
Error 1090017 - Column Contains Invalid Generation (Column %s)
Error 1090018 - Error Initializing Outline Information
Error 1090019 - Error Modifying Outline Information
Error 1090020 - Dynamic Reference Initialization failed
Error 1090021 - Error Initializing Dimension Field Name Information
Error 1090022 - Processing Terminated - No Valid Build Fields
Error 1090023 - Bad string length [%s] found reading outline
Error 1090024 - Bad region type found reading region defn file
Error 1090025 - Invalid slice map count found reading region defn file
Error 1090026 - Bad data direction found in region defn file
Error 1090027 - Unable to open file %s
Error 1090028 - File %s has bad type
Error 1090029 - Unable To Create File [%s]
Error 1090030 - Advanced numeric method (Column %s) does not match attribute dimension type
Error 1090031 - Range size must be greater than 0
Error 1090032 - Base dimension (%s) not sorted for ranges
Error 1090033 - Dimension in column %s is not a base dimension for (%s)
Error 1090034 - ATTRPARENT column %s must precede a numeric or date/time attribute association column
Error 1090035 - ATTRPARENT column %s gen value %s must match next column gen value
Error 1090036 - There were errors validating the outline. Please check the error file.
Error 1120000 - Unable to lock file [%s].
Error 1120001 - Unable to unlock physical memory allocated by the Essbase Kernel for database [%s].
Error 1140000 - Invalid LRO Context. [%s] aborted
Error 1140002 - Invalid member name entered - %s.
Error 1140003 - index entry for Linked Object not found. [%s]
Error 1140004 - mismatch linked object handle. [%s] aborted
Error 1140005 - Missing member name.
Error 1140007 - Corrupted Node Page in the LRO B+tree. [%s] aborted
Error 1140008 - Object type can not be updated. [%s]
Error 1140009 - You do not have sufficient access to perform a %s on this database
Error 1140011 - This server is not licensed with the Linked Object option
Error 1140012 - Unable to [%s] linked object; database is in readonly mode for archive
Error 1140013 - Invalid cell address entered.
Error 1140014 - Unable to delete LRO file - [%s]
Error 1140015 - Invalid member count [%s], expected [%s] members
Error 1140017 - Unable to add a linked object in [%s] due to object handle overflow.
Error 1140018 - Attribute members not allowed in LRO operations.
Error 1150000 - Cannot apply file [%s], error [%s] returned
Error 1150001 - Cannot read from file handle [%s]
Error 1150003 - Cannot create alias table [%s], error [%s] encountered
Error 1150004 - Cannot delete alias table [%s], error [%s] encountered
Error 1150005 - OUTLINE SYNC: Cannot add dimension [%s], error [%s] encountered
Error 1150006 - OUTLINE SYNC: Cannot delete dimension [%s], error [%s] encountered
Error 1150007 - OUTLINE SYNC: Cannot update dimension [%s], error [%s] encountered
Error 1150008 - OUTLINE SYNC: Cannot move dimension [%s], error [%s] encountered
Error 1150009 - OUTLINE SYNC: Cannot rename dimension [%s], error [%s] encountered
Error 1150010 - OUTLINE SYNC: Cannot add member [%s], error [%s] encountered
Error 1150011 - OUTLINE SYNC: Cannot delete member [%s], error [%s] encountered
Error 1150012 - OUTLINE SYNC: Cannot move member [%s], error [%s] encountered
Error 1150013 - OUTLINE SYNC: Cannot update member [%s], error [%s] encountered
Error 1150014 - OUTLINE SYNC: Cannot rename member [%s], error [%s] encountered
Error 1150019 - There is 1 message in the application log identifying a change that was not applied during outline synchronization.
Error 1150020 - There are %s messages in the application log identifying changes that were not applied during outline synchronization.
Error 1150021 - OUTLINE SYNC: Cannot find location for adding member [%s]
Error 1150022 - OUTLINE SYNC: Cannot find member [%s] to rename
Error 1150023 - OUTLINE SYNC: Cannot find member [%s] to move
Error 1150024 - OUTLINE SYNC: Cannot find destination for moving member [%s] with parent [%s]
Error 1150025 - OUTLINE SYNC: Cannot find member [%s] to update
Error 1150026 - OUTLINE SYNC: Cannot find dimension [%s] to rename
Error 1150027 - OUTLINE SYNC: Cannot find dimension [%s] to move
Error 1150028 - OUTLINE SYNC: Cannot find destination for moving dimension [%s]
Error 1150029 - OUTLINE SYNC: Cannot find dimension [%s] to update
Error 1150030 - OUTLINE SYNC: Cannot find location for adding dimension [%s]
Error 1150031 - OUTLINE SYNC: Cannot find attribute dimension [%s] to associate with dimension [%s]
Error 1150032 - OUTLINE SYNC: Cannot find attribute [%s] to associate with member [%s]
Error 1150033 - OUTLINE SYNC: Attribute dimension [%s] deleted due to missing base dimension
Error 1150034 - OUTLINE SYNC VERIFY: Global Error -- Too many dimensions in currency outline
Error 1150035 - OUTLINE SYNC VERIFY: Global Error -- Attribute calculations dimension is absent
Error 1150036 - OUTLINE SYNC VERIFY: No Global Error
Error 1150037 - OUTLINE SYNC VERIFY: Unknown Global Error
Error 1150038 - OUTLINE SYNC VERIFY: Member errors follow
Error 1150039 - OUTLINE SYNC VERIFY: No errors
Error 1150040 - OUTLINE SYNC VERIFY: Member %s verification fails
Error 1150041 - OUTLINE SYNC VERIFY: Illegal member name %s
Error 1150042 - OUTLINE SYNC VERIFY: Duplicate member name %s
Error 1150043 - OUTLINE SYNC VERIFY: Illegal currency member %s
Error 1150044 - OUTLINE SYNC VERIFY: Illegal default alias for member %s
Error 1150045 - OUTLINE SYNC VERIFY: Illegal alias combination for member %s
Error 1150046 - OUTLINE SYNC VERIFY: Illegal alias string for member %s
Error 1150047 - OUTLINE SYNC VERIFY: Illegal tag for member %s
Error 1150048 - OUTLINE SYNC VERIFY: No time dimension for member %s
Error 1150049 - OUTLINE SYNC VERIFY: Duplicate alias for member %s
Error 1150050 - OUTLINE SYNC VERIFY: Illegal member formula for member %s
Error 1150051 - OUTLINE SYNC VERIFY: Shared member %s not at level 0
Error 1150052 - OUTLINE SYNC VERIFY: Shared member %s with no actual member
Error 1150053 - OUTLINE SYNC VERIFY: Accounts dimension is dense and time dimension sparse
Error 1150054 - OUTLINE SYNC VERIFY: Leaf member %s defined as a label member
Error 1150055 - OUTLINE SYNC VERIFY: Alias shared for member %s
Error 1150056 - OUTLINE SYNC VERIFY: Illegal time balance value for member %s
Error 1150057 - OUTLINE SYNC VERIFY: Illegal time balance skip value for member %s
Error 1150058 - OUTLINE SYNC VERIFY: Illegal share value for member %s
Error 1150059 - OUTLINE SYNC VERIFY: Illegal dimension storage value for member %s
Error 1150060 - OUTLINE SYNC VERIFY: Illegal category for member %s
Error 1150061 - OUTLINE SYNC VERIFY: Illegal storage category for member %s
Error 1150062 - OUTLINE SYNC VERIFY: Base member (%s) association level does not match base dimension association level
Error 1150063 - OUTLINE SYNC VERIFY: Attribute dimension can not be followed by Standard/base dimensions
Error 1150064 - OUTLINE SYNC VERIFY: Attribute member (%s) datatype is not matching with Attribute dimensions datatype.
Error 1150065 - OUTLINE SYNC VERIFY: Attribute parent-child category illegal for member %s
Error 1150066 - OUTLINE SYNC VERIFY: Attribute Dimension %s is not associated to the base dimension
Error 1150067 - OUTLINE SYNC VERIFY: Attribute member %s can not have associated UDAs
Error 1150068 - OUTLINE SYNC VERIFY: Boolean/AttrCalc dimension %s has invalid children count
Error 1150069 - OUTLINE SYNC VERIFY: Illegal Attrcalc dimension/member name %s
Error 1150070 - OUTLINE SYNC VERIFY: Invalid value being set for attribute memberinfo of member %s
Error 1150071 - OUTLINE SYNC VERIFY: Invalid value being set for attrcalc dimension/member memberinfo
Error 1150072 - OUTLINE SYNC VERIFY: Illegal datatype for attribute member %s
Error 1150073 - OUTLINE SYNC VERIFY: Illegal attribute value for level 0 attribute member %s
Error 1160000 - The size of outline change records exceeds [%s], changes are not logged. Please increase OutlineChangeLogFileSize setting to [%s]
Error 1170000 - AttrTest Info [%s] [%s]
Error 1170010 - Number of base members with the Attribute association is [%s]
Error 1200000 - Framework initialization failed, error code [%s]
Error 1200001 - Error [%s] preprocessing macro [%s]
Error 1200002 - Compilation failed
Error 1200003 - Optimization stage error [%s]
Error 1200004 - Program tree rebuild error [%s]
Error 1200005 - Dependency checking error [%s]
Error 1200006 - Unable to create execution control data structure
Error 1200008 - Error [%s] executing function [%s] during optimization
Error 1200314 - Invalid array length specified
Error 1200315 - Invalid object type
Error 1200316 - Internal calculator framework error
Error 1200317 - Error : index out of range
Error 1200318 - Calculator framework error: stack full
Error 1200319 - Error: memory buffer full
Error 1200320 - Error getting function signature. Invalid function code: [%s]
Error 1200321 - Error: name redefinition
Error 1200322 - Error: bracket mismatch
Error 1200323 - Syntax error: expression expected after [%s]
Error 1200324 - Syntax error: operator expected after [%s]
Error 1200325 - Error: nothing to do
Error 1200326 - Error: semicolon missing
Error 1200327 - Error: identifier expected after [%s]
Error 1200328 - Invalid declaration
Error 1200329 - Invalid assignment
Error 1200330 - Invalid variable name
Error 1200331 - Invalid initializer
Error 1200332 - Invalid number format
Error 1200333 - Error: no matching quote found
Error 1200334 - Error: invalid argument number
Error 1200335 - Error: invalid argument
Error 1200336 - Error: [%s] without [%s]
Error 1200337 - Error: [%s] without [%s]
Error 1200338 - Error: [%s] without [%s]
Error 1200339 - Error: [%s] without [%s]
Error 1200340 - Error: [%s] without [%s]
Error 1200341 - Error: [%s] without [%s]
Error 1200342 - Error: procedure without [%s]
Error 1200343 - Error: [%s] without procedure
Error 1200344 - Error: [%s] without [%s]
Error 1200345 - Error: [%s] without [%s]
Error 1200346 - Error: [%s] without [%s]
Error 1200347 - Error: [%s] must be function
Error 1200348 - Error: name is reserved
Error 1200349 - Expression is constant
Error 1200350 - Error: construction requires more points
Error 1200351 - Error: spline data invalid (may be repeated points)
Error 1200352 - Error: invalid weight
Error 1200353 - Error: invalid data
Error 1200354 - Type mismatch: argument [%s] cannot be [%s]
Error 1200355 - Error: name redefinition
Error 1200356 - Error: invalid type
Error 1200357 - Error: invalid dimension
Error 1200358 - Unexpected end of expression: [%s]
Error 1200359 - Error: illegal procedure variable name
Error 1200360 - Error: illegal syntax
Error 1200361 - Error: unknown function: [%s]
Error 1200362 - Error: [%s] withour [%s]
Error 1200363 - Invalid array dimension
Error 1200364 - Arguments have different dimensions ([%s] and [%s])
Error 1200365 - Infinite loop suspected. Execution cancelled
Error 1200366 - Invalid macro argument number
Error 1200367 - Error: invalid moving window width
Error 1200368 - Error: delimiter mismatch Error 1200369 - Error: cannot cross members from the same dimension
Error 1200370 - Error: attempt to cross a null member
Error 1200371 - [%s] dimension undefined. No default parameter allowed
Error 1200372 - Error: range not from the [%s] dimension
Error 1200373 - Error: argument must be a valid generation or level name or number
Error 1200374 - Invalid expression return type
Error 1200375 - Invalid procedure syntax
Error 1200376 - Fatal error: core function [%s] undefined
Error 1200377 - Invalid [%s] syntax
Error 1200378 - Empty [%s] block
Error 1200379 - Error: arrays have different sizes
Error 1200380 - Invalid tag
Error 1200381 - Invalid range
Error 1200382 - Invalid dimension number in projection
Error 1200383 - Invalid SKIP instruction
Error 1200384 - Invalid execution mode
Error 1200385 - Invalid macro syntax
Error 1200386 - Number of arguments in a macro must be an integer
Error 1200387 - Invalid member name
Error 1200390 - Basis member for allocation not supplied
Error 1200391 - Invalid method specified to allocate function
Error 1200392 - Allocation amount must include a member from every allocation range dimension. Calculation results may be unpredictable
Error 1200393 - Round member must include a member from every allocation range. Calculation results may be unpredictable
Error 1200394 - Allocation range is empty. Calculation results may be unpredictable
Error 1200395 - Xref connection to data source [%s] timed out. Restoring connection...
Error 1200396 - Invalid argument number in argument request
Error 1200397 - Invalid argument type (double expected)
Error 1200398 - Invalid argument type (member range expected)
Error 1200399 - Invalid argument type (external variable or array expected)
Error 1200400 - Scalar double argument expected
Error 1200401 - Single member argument expected
Error 1200402 - Single string argument expected
Error 1200403 - Single range argument expected
Error 1200404 - Single numerical argument expected
Error 1200405 - Operands of a binary operator have different dimensions
Error 1200406 - Error: attempt to redefine constant [%s]
Error 1200407 - Error: attempt to redefine function [%s]
Error 1200408 - Error: attempt to redefine macro [%s]
Error 1200409 - Internal error: calculator stack contains a null object
Error 1200410 - Error [%s] getting parameters for function [%s]
Error 1200411 - Error [%s] executing function [%s]
Error 1200412 - Argument type mismatch in function [%s]
Error 1200413 - Argument dimension mismatch in function [%s]
Error 1200414 - Argument [%s] may not have length [%s]
Error 1200415 - Internal error: unexpected end of program code
Error 1200416 - Cannot assign [%s] objects of different length
Error 1200417 - Cannot assign objects of different types ([%s] and [%s])
Error 1200418 - Cannot assign objects of different length ([%s] and [%s])
Error 1200419 - Attempt to assign an object of type [%s] where [%s] was expected
Error 1200420 - Error encountered on line [%s]
Error 1200421 - Error encountered on or after line [%s]
Error 1200422 - Expected type [%s] found [%s]
Error 1200423 - Exceeded [%s] iterations in [%s]. The result may be meaningless
Error 1200426 - Argument missing in function [%s]
Error 1200427 - Invalid date format string in function [%s]
Error 1200428 - Arguments out of range when compiling a formula involving @POWER and constants. Returned value may be different from versions 6.0
Error 1200429 - Argument [%s] is out of range when compiling a formula involving @FACTORIAL and constants. Returned value may be different from versions 6.0
Error 1200430 - Division by zero occured when compiling a formula involving constants. Returned value may be different from versions 6.0
Error 1200431 - Formula for member [%s] altered internally
Error 1200432 - Original formula [%s] Modified formula [%s]
Error 1200434 - Invalid operator specified in function [%s]
Error 1200436 - Error: procedure should return a value. [%s] operator missing
Error 1200437 - Error: invalid mode [%s] in function [%s]
Error 1200438 - Compiling formula for member [%s]
Error 1200439 - Reserved token [%s] encountered on line [%s] currently not supported
Error 1120110 - Could not open the DB2 OLAP Server configuration file.
Error 1120111 - No relational database name was supplied in the DB2 OLAP Server configuration file.
Error 1120113 - DB2 OLAP Server has encountered an error. %s
Error 1120200 - The cube could not be located in the Cube Catalog table.
Error 1120201 - The number of start-up connections is greater than the maximum pool size.
Error 1120202 - A database with the name [%s] already exists in the relational database for this application.
Error 1120300 - Anchor dimension definition cannot be changed with data loaded. Outline changes rejected. Remove all data from the database and try again.
Error 1120301 - No anchor dimension specified. Outline changes rejected. Specify an anchor dimension and try again.
Error 1120302 - More than one anchor dimension specified. Outline changes rejected.
Error 1120303 - Anchor dimension specified is SPARSE. The anchor dimension must be DENSE. Outline changes rejected.
Error 1120304 - Not enough columns remain in the fact table to store the added dimensions. Outline changes rejected.
Error 1120305 - Not enough columns remain in the fact table to store the anchor dimension members added. Outline changes rejected.
Error 1120306 - A short name for the dimension could not be created. Rename the dimension and try again.
Error 1120307 - A relational name for a fact column could not be created.
Error 1120308 - DB2 OLAP Server could not select a suitable anchor dimension from those in the outline. Outline changes rejected.
Error 1120309 - The system selected anchor dimension [%s] cannot be replaced by a user-specified anchor dimension with data loaded. Outline changes rejected.
Error 1120310 - The system selected anchor dimension [%s] has been deleted with data loaded. Outline changes rejected.
Error 1120311 - The system selected anchor dimension [%s] has been made SPARSE with data loaded. Outline changes rejected.
Error 1120312 - The system selected anchor dimension [%s] has been made SPARSE but no suitable replacement anchor dimension could be found. Outline changes rejected.
Error 1120313 - The system selected anchor dimension [%s] has been deleted but no suitable replacement anchor dimension can be found. Outline changes rejected.
Error 1120314 - The migration of database [%s] has begun.
Error 1120315 - The migration of database [%s] has ended successfully.
Error 1120316 - The addition of alias table [%s] has failed because its name is the same as a current relational attribute column name on dimension [%s]. Outline changes were rejected.
Error 1120323 - Database [%s] in application [%s] was not started because the outline file does not match the outline stored in the relational database.
Error 1120501 - Some relational database commits worked and some failed. Database [%s] in application [%s] may not be valid.
Error 1120801 - The outline restructure used up all the available [%s] bytes of memory. Increase the data or index cache by [%s] bytes to improve outline restructure performance.
Error 1120900 - The relational database environment could not be initialized.
Error 1120901 - An error was encountered when closing the relational database environment.
Error 1120902 - Using default isolation level of cursor stability. The value specified in the configuration file is not valid.
Error 1120903 - DB2 OLAP Server could not establish a connection to the relational database %s.
Error 1120904 - DB2 OLAP Server could not establish a connection to the relational database %s.
Error 1120905 - The relational database returned information when a connection was terminated.
Error 1120906 - The relational database returned information when a connection was established.
Error 1120907 - The relational database returned information when the DB2 OLAP Server disconnected.
Error 1120908 - Failure to set the isolation level prevented a connection to the relational database being established.
Error 1120909 - Failure to set the autocommit option prevented a connection to the relational database being established.
Error 1120910 - The relational database returned an error when the DB2 OLAP Server committed a transaction.
Error 1120911 - The relational database returned an error when the DB2 OLAP Server aborted a transaction.
Error 1120912 - An SQL statement failed to execute.
Error 1120913 - The relational database returned information when executing an SQL statement.
Error 1120914 - The relational database returned an error when the DB2 OLAP Server released an execution statement.
Error 1120915 - DB2 OLAP Server could not obtain an execution statement from the relational database.
Error 1120916 - DB2 OLAP Server encountered an error when attempting to lock a table in the relational database.
Error 1120918 - DB2 OLAP Server was unable to lock a table because it is already locked.
Error 1120919 - The relational database returned information when the DB2 OLAP Server locked a table.
Error 1120920 - DB2 OLAP Server encountered an error while preparing to read data.
Error 1120921 - DB2 OLAP Server encountered an internal error while preparing to read data.
Error 1120922 - DB2 OLAP Server encountered an error while preparing to run an SQL statement to read data.
Error 1120923 - DB2 OLAP Server detected an internal error while reading data.
Error 1120924 - The relational database returned information when data was read.
Error 1120925 - The relational database returned an error when data was read.
Error 1120926 - The relational database returned information following an extended read.
Error 1120927 - The relational database returned an error when processing an extended read.
Error 1120928 - The relational database returned an error when preparing an extended read.
Error 1120929 - The relational database returned information when the DB2 OLAP Server requested a named data cursor.
Error 1120930 - The relational database returned an error when the DB2 OLAP Server requested a named data cursor.
Error 1120931 - DB2 OLAP Server encountered a column with an unsupported data type while copying a table.
Error 1120932 - DB2 OLAP Server encountered a column with an unknown data type while copying a table.
Error 1120937 - Database error information: %s.
Error 1120938 - The relational database returned an error when the DB2 OLAP Server requested a result column count.
Error 1120939 - The relational database returned information when the DB2 OLAP Server requested a result set description.
Error 1120940 - The relational database returned an error when the DB2 OLAP Server requested a result set description.
Error 1120941 - DB2 OLAP Server encountered an internal error while preparing an SQL string.
Error 1120942 - The relational database returned information when the DB2 OLAP Server prepared an SQL SELECT statement.
Error 1120943 - The relational database returned information when the DB2 OLAP Server read internal ID data.
Error 1120944 - The relational database returned an error when the DB2 OLAP Server read internal ID data.
Error 1120945 - DB2 OLAP Server encountered an internal error when attempting to allocate a new internal ID.
Error 1120946 - DB2 OLAP Server encountered an error when attempting to query configuration information for the relational database.
Error 1120947 - DB2 OLAP Server encountered an error because DB2 is not enabled for multiple concurrent connections.
Error 1120952 - The relational database has encountered an error: %s
Error 1121000 - DB2 OLAP Server failed to open the storage manager. %s (%s) Report this error to your system administrator.
Error 1121001 - DB2 OLAP Server failed to close the storage manager. %s (%s) Report this error to your system administrator.
Error 1121002 - DB2 OLAP Server failed to open an application. %s (%s) Report this error to your system administrator.
Error 1121003 - DB2 OLAP Server failed to close an application. %s (%s) Report this error to your system administrator.
Error 1121004 - DB2 OLAP Server failed to open a database. %s (%s) Report this error to your system administrator.
Error 1121005 - DB2 OLAP Server failed to close a database. %s (%s) Report this error to your system administrator.
Error 1121006 - DB2 OLAP Server failed to open a thread. %s (%s) Report this error to your system administrator.
Error 1121007 - DB2 OLAP Server failed to close a thread. %s (%s) Report this error to your system administrator.
Error 1121008 - DB2 OLAP Server failed to open a transaction. %s (%s) Report this error to your system administrator.
Error 1121009 - DB2 OLAP Server failed to close a transaction. %s (%s) Report this error to your system administrator.
Error 1121010 - DB2 OLAP Server failed to commit a transaction. %s (%s) Report this error to your system administrator.
Error 1121011 - DB2 OLAP Server failed to abort a transaction. %s (%s) Report this error to your system administrator.
Error 1121012 - DB2 OLAP Server failed to fix a block. %s (%s) Report this error to your system administrator.
Error 1121013 - DB2 OLAP Server failed to fix the next block. %s (%s) Report this error to your system administrator.
Error 1121014 - DB2 OLAP Server failed to read a block. %s (%s) Report this error to your system administrator.
Error 1121015 - DB2 OLAP Server failed to unfix a block. %s (%s) Report this error to your system administrator.
Error 1121016 - DB2 OLAP Server failed to set the database to a read-only state. %s (%s) Report this error to your system administrator.
Error 1121017 - DB2 OLAP Server failed to set the database to a read-write state. %s (%s) Report this error to your system administrator.
Error 1121018 - DB2 OLAP Server failed to clear data from the database. %s (%s) Report this error to your system administrator.
Error 1121019 - DB2 OLAP Server failed to retrieve database information. %s (%s) Report this error to your system administrator.
Error 1121020 - DB2 OLAP Server failed to retrieve database runtime information. %s (%s) Report this error to your system administrator.
Error 1121021 - DB2 OLAP Server failed to free database information. %s (%s) Report this error to your system administrator.
Error 1121022 - DB2 OLAP Server failed to restructure a database. %s (%s) Report this error to your system administrator.
Error 1121023 - DB2 OLAP Server failed to create a new database. %s (%s) Report this error to your system administrator.
Error 1121024 - DB2 OLAP Server failed to delete a database. %s (%s) Report this error to your system administrator.
Error 1121025 - DB2 OLAP Server failed to rename a database. %s (%s) Report this error to your system administrator.
Error 1121026 - DB2 OLAP Server failed to copy a database. %s (%s) Report this error to your system administrator.
Error 1121027 - DB2 OLAP Server failed to archive a database. %s (%s) Report this error to your system administrator.
Error 1121028 - DB2 OLAP Server failed to validate a database. %s (%s) Report this error to your system administrator.
Error 1121029 - DB2 OLAP Server failed to create a new application. %s (%s) Report this error to your system administrator.
Error 1121030 - DB2 OLAP Server failed to delete an application. %s (%s) Report this error to your system administrator.
Error 1121031 - DB2 OLAP Server failed to rename an application. %s (%s) Report this error to your system administrator.
Error 1121032 - DB2 OLAP Server failed to copy an application. %s (%s) Report this error to your system administrator.
Error 1121033 - DB2 OLAP Server failed to link an object. %s (%s) Report this error to your system administrator.
Error 1121034 - DB2 OLAP Server failed to delete a linked object. %s (%s) Report this error to your system administrator.
Error 1121035 - DB2 OLAP Server failed to update a linked object. %s (%s) Report this error to your system administrator.
Error 1121036 - DB2 OLAP Server failed to get a linked object. %s (%s) Report this error to your system administrator.
Error 1121037 - DB2 OLAP Server failed to get the catalog of linked objects. %s (%s) Report this error to your system administrator.
Error 1121038 - DB2 OLAP Server failed to list the linked objects. %s (%s) Report this error to your system administrator.
Error 1121039 - DB2 OLAP Server failed to purge the linked objects. %s (%s) Report this error to your system administrator.
Error 1121040 - IBM DB2 OLAP Server 5679-OLP (C) Copyright IBM Corp., 1998. All rights reserved. Licensed Materials - Property of IBM. US Government Users Restricted Rights. Use, duplication or disclosure restricted by GSA ADP Schedule contract with IBM Corp.
Error 1121041 - DB2 OLAP Server failed to create a list of LRO flags. %s (%s) Report this error to your system administrator.
Error 1121042 - DB2 OLAP Server failed to free LRO memory. %s (%s) Report this error to your system administrator.
Error 1121043 - DB2 OLAP Server failed to retrieve the current database settings. %s (%s) Report this error to your system administrator.
Error 1121044 - DB2 OLAP Server internal error.
Error 1121102 - DB2 OLAP Server could not continue because the [%s] entry in the rsm.cfg file is not a supported parameter. Report this error to your system administrator.
Error 1121103 - DB2 OLAP Server could not continue because the [%s] parameter in the rsm.cfg file is not supported in the section for application [%s]. Report this error to your system administrator.
Error 1121104 - DB2 OLAP Server could not continue because the [%s] parameter in the rsm.cfg file is not supported in the section for database [%s]. Report this error to your system administrator.
Error 1121105 - DB2 OLAP Server could not continue because the value [%s] specified in the rsm.cfg file for parameter [%s] is incorrect. Report this error to your system administrator.
Error 1121200 - The LRO object was not updated because the provided status did not match the status in the LRO table.
Error 1121201 - The LRO object was not updated because the provided object type did not match the object type in the LRO table.
Error 1121202 - The update or get LRO operation failed because the LRO object was not found in the LRO table.
Error 1121302 - The removal of the relational attribute column [%s] failed because relational attributes exist in the column. The column must be empty before being removed. Outline changes were rejected.
Error 1121303 - No relational attribute column name was found after the RELCOL keyword for dimension [%s]. Outline changes were rejected.
Error 1121304 - No data type was found after the RELCOL keyword and relational attribute column name [%s] for dimension [%s]. Outline changes were rejected.
Error 1121305 - The relational attribute column name [%s] specified after the RELCOL keyword for dimension [%s] is too long. Outline changes were rejected.
Error 1121306 - No recognized data type was found after the RELCOL keyword and relational attribute column name [%s] for dimension [%s]. Outline changes were rejected.
Error 1121307 - No size was found following a character data type after the RELCOL keyword and relational attribute column name [%s] for dimension [%s]. Outline changes were rejected.
Error 1121308 - No matching single quote was found at the end of a column name after the RELCOL keyword for dimension [%s]. Outline changes were rejected.
Error 1121309 - The column name [%s] after the RELCOL keyword for dimension [%s] does not conform to the naming convention for columns in the relational database. Outline changes were rejected.
Error 1121310 - The column name [%s] after the RELCOL keyword for dimension [%s] is the same as the name of a current relational attribute column or an attribute column being deleted. Outline changes were rejected.
Error 1121311 - The column name [%s] after the RELCOL keyword for dimension [%s] is the same as the name of a current alias table. Outline changes were rejected.
Error 1121312 - No relational attribute column name was found after the RELVAL keyword for member [%s] in dimension [%s]. Outline changes were rejected.
Error 1121313 - No data value was found after the relational attribute column name and RELVAL keyword for member [%s] in dimension [%s]. Outline changes were rejected.
Error 1121314 - The relational attribute column name specified after the RELVAL keyword for member [%s] in dimension [%s] is too long. Outline changes were rejected.
Error 1121315 - The column name specified after the RELVAL keyword for member [%s] is not recognized as an existing relational attribute column for dimension [%s]. Outline changes were rejected.
Error 1121316 - No quotes were found surrounding the character data after the RELVAL keyword and relational attribute column name for member [%s] in dimension [%s]. Outline changes were rejected.
Error 1121317 - No matching single quote was found at the end of a column name after the RELVAL keyword for member [%s] in dimension [%s]. Outline changes were rejected.
Error 1121318 - Character data following the RELVAL keyword is larger than the size specified for the relational attribute column for member [%s] in dimension [%s]. Outline changes were rejected.
Error 1121500 - Current anchor dimension [%s] is dimension number
Error 1121501 - Number of blocks currently fixed
Error 1121502 - High water number of blocks fixed
Error 1121503 - Number of blocks currently cached
Error 1121504 - High water number of blocks cached
Error 1121505 - Maximum number of cache blocks
Error 1121506 - Block cache hit rate
Error 1121507 - Number of keys currently cached
Error 1121508 - High water number of keys cached
Error 1121509 - Maximum number of cached keys
Error 1121510 - Key cache hit rate
Error 1121511 - Percent waste fact table space in unused columns
Error 1121512 - Number of values per row in the fact table
Error 1121513 - Maximum number of rows per block in the fact table
Error 1121514 - Current number of connections
Error 1121515 - High water number of connections
Error 1121516 - Connection pool size
Error 1121517 - Maximum connection pool size
Error 1121518 - High water block cache size
Error 1121519 - High water key cache size
Error 1180000 - Autodelete group (%s) is not an Essbase/400 group. Autodelete disabled.
Error 1180001 - Cannot autodelete only supervisor!
Error 1180002 - OS400UsersGroup (%s) is not an OS/400 Group User Profile, OS400UsersGroup disabled
Error 1180003 - OS400UsersGroup (%s) is not an Essbase/400 group, OS400UsersGroup disabled
Error 1180004 - OS400CommonGroup (%s) ignored. It is not an OS/400 Group User Profile
Error 1180005 - OS400CommonGroup (%s) ignored. It is not an Essbase/400 group
Error 1180006 - Autodelete group (%s) has been deleted, Autodelete disabled
Error 1180007 - User (%s) holds lock on object (%s). Autodelete skipped
Error 1180008 - OS400UsersGroup group (%s) has been deleted, OS400UsersGroup disabled
Error 1180009 - Attempt to rename OS400UsersGroup [%s] group disallowed
Error 1180010 - Attempt to rename OS400AutoDelete [%s] group disallowed
Error 1180011 - Attempt to rename OS400CommonGroup [%s] group disallowed
Error 1180012 - Attempt to rename OS400 integrated user [%s] disallowed
Error 1180013 - OS/400 Change Password validation error: [%s]
Error 1180018 - Received Get NLS Info request
Error 1180019 - NLS Configuration differs between client and server
Error 1180020 - NLS Configuration cannot be verified with non-OS/400 Essbase server
Error 1180021 - Total Calc CPU Time : [%s] seconds
Error 1180022 - Calc Percent CPU: [%s]
Error 1180023 - Free space management overflow. Sorting input data based on sparse columns before loading or using SQL ORDER BY clause to order on sparse columns in data load rule file may alleviate this problem
Error 1180024 - %s error(s) logged during data load operation
Error 1180025 - ESSCMD/400 exiting
Error 1180026 - Too few arguments for %s command. Each missing argument will be substituted with argument-missing>. This may cause the command to fail. See subsequent messages (if any) to determine if this command was successful.
Error 1180027 - You must login before using the %s command
Error 1180028 - You must select a Database before using the %s command
Error 1180029 - Error(s) logged during dimension build operation
Error 1180030 - User (%s) is managed via Integrated Security. This change must be made via OS/400 User Profile management interfaces