MaxL 6.2

Did MaxL change from Essbase 6.1 to 6.2?Here are some examples of things that worked until I upgraded:1)I have a calc script named “clear?. Version 6.1 accepted it r now it seems to be rejected because it is a reserved word.2)Import statements no longer work unless the “on error write to …? is appended to the statement.3)The default message level now appears to be 6all?.Any ideas what happened?Thanks,Harold

Clear is a key word is 6.2 something with log files. Quote your string and the problem should go away.Hagar---Message Posted by hsummer ??3/12/02 02:37---I had the following statement which worked in 6.1, then I upgraded to 6.2 and it doesn't work - I get a MaxL error "syntax error near ['clear'].execute calculation aps01.aps.clear;What gives? Is "clear" now a reserved word? I also have other syntax errors in a script that worked fine in 6.1?Thanks, Harold

Similar Messages

  • How to delete the members in one dimension use the maxl script

    i have question that i want to delete the members in one dimension useing the maxl script, but i do not know how to do it. can the maxl delete the members in one dimension? if can, please provide an sample script, thank you so mcuh.

    MaxL does not have commands to alter an outline directly, except the reset command which can delete all dimensions but not members selectively. The best you could do would be to run a rules file (import dimensions) using a file that contains the members you want to keepload rule for the dimension. As typical the warning is to test this first before you do it on a production database

  • HOW can i delete the members in dim using MAXL

    Hi All,
    I want to delete the all the memebers for dimensions before reloading so how ca n i write the maxl script for this to delete the members in the dimensions
    plz can any one help on this its very urjent ,
    It would be appriciated ...
    Thanks

    There is no way to alter an outline with MaxL, MaxL is an admin language for processing. The only option, as Glenn mentioned is to issue the reset all command to blow away everything. But you probably don't want to do that, so instead you use Maxl to run a series of load rules to achieve your goal.
    Load rules do not have functionality to delete outline members, it does have a feature however that allows you to remove unspecified members from a dimension build, so when loading in your members, if existing members are not in the import, they are removed. So Glenn's point was to create a source file with a single dummy member. When you load using "Remove Unspecified" it will delete all the members and just keep the one dummy member. Then when you go back a second time and actually load the real members, the dummy member will be removed and you will have a clean dim with only your new members. This is a work around solution, but it's what a lot of people do.
    Now if you have 15 dimensions you need to do this with, you might want to take a slightly different approach. I'm assuming 15 dimensions is probably an ASO cube and this method will be preferable to avoid outline fragmentation.
    Create a copy of your outline with all the base dimensions that do not change intact. For the ones that do change, just have your dim root member. Consider this your starting outline template and save a copy of it. When you want to rebuild your cube have a server process that takes the copy of your template outline and copies it over your existing outline file in the directory structure. Then run your load rules to import your new members.

  • How to change the Existing alias with new alias name...MAXL SCRIPT

    HI Experts
    I need to change alias name of the existing member with new alias name.
    please send me maxl code to change the alias name .
    My thought is
    1) Old alias should be replaced with new alias name .
    2)There is one account that should be rolled out to another parent..these parents are already exsist
    3) I need a MAXL Script to change the new alias name .
    please suggest ASAP.
    Thanks
    USER

    John
    I heard that we can replace existing alias name with new alias thru MAXL
    i.e replace alias name XXXX member with YYYY ;
    please correct me if iam wrong ,might be Maxl command is wrong but this is the idea.
    Thanks
    USER

  • Can we use Substitution variables in MAXL?

    Hi,
    Can we use substitution variables in MAXL script?
    I have to run this MAXL command for clearing a slice of ASO cube on V11.1.1.3.
    alter database Apname.DBname clear data in region 'CrossJoin({[2009]},{[Dec]})';
    I am planning to use Current_year & Current_month variables instead of hardcoding 2009 & Dec as I have to use this everymonth to clear the current months data.
    If it is allowed, what is the syntax?
    Is there any alternative apart from substitution variables?
    Appreciate your thoughts.
    Thanks,
    -Ethan.

    You would just use ampersand and the variable name instead of the hard coding e.g. &yearVar &periodVar.
    Not tried it on aso clears but in theory it should work as ...'CrossJoin({&yearVar},{&periodVar})';
    just change yearVar and periodVar for your substitution variable names.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Error is not getting logged in error file while running dataload maxl

    Hello All,
    I am running a Maxl to load data in a database which is running fine but noted a weird issue that the errors are not getting logged in error file. Suppose i changed the name of data file then it should give error something like
    ERROR - {Error no.} - Unable to open file {filename} which should be logged in error file but my error file is still empty.
    I am using the Maxl -
    import database {dbname} data from data_file {filename} on error append to "D:/Error/errorfile.err";
    Any inputs please...
    Thanks

    Try to use single quotes and the backslash. It may depend on the operating system and /or the version of essbase used. This is an example from one of my maxls:
    on error append to 'D:\Hyperion\logfiles\myload.err';
    cheers, chris

  • Double Quotes in MaxL Strings

    I am trying to pass in a calc script string from a Perl script to a MaxL script. The calc script needs double quotes around some of the member names (yes, I know I can create aliases with underscores to work around this, but I can't believe this isn't possible). I can escape the double quote characters in Perl, no problem. But the double quotes just get stripped by MaxL. Here is an example:<BR><BR>MAXL> echo 'I am "quoting" this';<BR><BR>I am "quoting" this<BR><BR>MAXL> set X = 'I am "quoting" this';<BR><BR>MAXL> echo $X;<BR><BR>I am quoting this<BR><BR>MAXL><BR><BR>There is nothing in the docs about escaping double quote characters. I've tried using backslash, no luck there. I've tried using double double quotes and they all get stripped. I've tried doing this inside single quoted strings and double quoted strings - no joy whatsoever. The funny thing is the example above, where simply echoing the literal string works, but assigning it to a variable strips out the double quotes.<BR><BR>Does anyone know how to get double quotes into a MaxL string variable? There has to be a way...<BR><BR>Thanks,<BR><BR>James

    Yes, I've dealt with enclosing variables in double quotes in order for MaxL to parse them properly, but what I'm trying to do is use a variable that contains a double quote. Such as:<BR><BR> set QuoteVar = 'I am "quoting" this';<BR><BR>I'm trying to set substitution variables via MaxL, and some of my existing sub vars have double quotes in them so that they can be used to store member names that appear in calc scripts. As I said, I know I can accomplish this with an alias table that creates a version of the member name that doesn't need quotes, but that's a whole deal to maintain just for this one thing and it seems overly burdensome for such a simple task.<BR><BR>Also, as I said, MaxL does fine with double quotes in literal strings, it's only when assigned to variables that it always strips them out. I want to create a relatively generic script for setting sub vars, so I need to pass variables around. Just calling MaxL from Perl and passing in parameters that get converted to $1, $2, etc. causes these double quotes to get stripped.<BR><BR>So, is there any way around this?<BR><BR>Thanks,<BR><BR>James

  • Unable to load multiple files to Essbase using MaxL and wildcards

    I have multiple data files to load:
    Files:
    Filename.txt
    Filename_1.txt
    Filename_2.txt
    According to the following link, Essbase is able to load multiple files to BSO databases via MaxL by using wildcards:
    http://docs.oracle.com/cd/E17236_01/epm.1112/esb_tech_ref/frameset.htm?launch.html
    However, when I try to run the following I receive the following error:
    MaxL:
    import database MyApp.DB data from server text data_file "../../MyApp/Filename*.txt" using server rules_file "L_MyRule" on error append to "\\Server\Folder\L_MyRule.err";
    Error:
    ERROR - 1003027 - Unable to open file [DB01/oracleEPM/user_projects/epmsystem2/EssbaseServer/essbaseserver1/app/MyApp/DB/../../Filename*.txt].
    ERROR - 1241101 - Unexpected Essbase error 1003027.
    I can run the following fine without any problem, but this only deals with the first of several files, and I’d rather not hard-code multiple files since the number might vary in the future:
    MaxL:
    import database MyApp.DB data from server text data_file "../../MyApp/Filename.txt" using server rules_file "L_MyRule" on error append to "\\Server\Folder\L_MyRule.err";
    Any ideas? And how about ASO databases?

    JamesD wrote:
    According to the following link, Essbase is able to load multiple files to BSO databases via MaxL by using wildcards:
    http://docs.oracle.com/cd/E17236_01/epm.1112/esb_tech_ref/frameset.htm?launch.html
    That is the tech ref for 11.1.2.2, are you on 11.1.2.2?
    Import Data
    11.1.2.2 - http://docs.oracle.com/cd/E17236_01/epm.1112/esb_tech_ref/frameset.htm?maxl_imp_data.html
    11.1.2.1 - http://docs.oracle.com/cd/E17236_01/epm.1112/esb_tech_ref_1112100/frameset.htm?maxl_imp_data.html
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Cannot Connect to Essbase Server Using MaxL

    After installing and configuring planning. I was able to create data source and application. When I shot down and restart the machine. The diagnostics report highlighted these srrors
    EPMVAL - 01010 can not connect to Essbase server using MaxL
    Network Error - 10061 unable connect to oracle.vision.com:1423. the client timed out waiting to connect Essbase Agent using TCP/IP
    Can some help please
    chi

    Hi John
    This is error from Sharedservices_security_client may it will you to identify the cause of this issue
    PMCSS] [ERROR] [EPMCSS-00001] [oracle.EPMCSS.CSS] [tid: 10] [ecid: disabled,0] [SRC_CLASS: com.hyperion.css.registry.RegistryManager] [SRC_METHOD: RegistryManager] Failed to initialize EPM Shared Services security instance. Component SYSTEM9/FOUNDATION_SERVICES_PRODUCT/SHARED_SERVICES_PRODUCT is null in EPM System Registry. Verify EPM System Registry configuration.
    [2012-03-04T17:29:20.953+00:00] [EPMCSS] [ERROR] [EPMCSS-00001] [oracle.EPMCSS.CSS] [tid: 10] [ecid: disabled,0] [SRC_CLASS: com.hyperion.css.registry.RegistryManager] [SRC_METHOD: RegistryManager] Failed to initialize EPM Shared Services security instance. Component SYSTEM9/FOUNDATION_SERVICES_PRODUCT/SHARED_SERVICES_PRODUCT is null in EPM System Registry. Verify EPM System Registry configuration.
    [2012-03-04T17:29:24.906+00:00] [EPMCSS] [ERROR] [EPMCSS-00001] [oracle.EPMCSS.CSS] [tid: 10] [ecid: disabled,0] [SRC_CLASS: com.hyperion.css.registry.RegistryManager] [SRC_METHOD: RegistryManager] Failed to initialize EPM Shared Services security instance. Component SYSTEM9/FOUNDATION_SERVICES_PRODUCT/SHARED_SERVICES_PRODUCT is null in EPM System Registry. Verify EPM System Registry configuration.
    [2012-03-05T05:21:13.515+00:00] [EPMCSS] [ERROR] [EPMCSS-00001] [oracle.EPMCSS.CSS] [tid: 10] [ecid: disabled,0] [SRC_CLASS: com.hyperion.css.registry.RegistryManager] [SRC_METHOD: RegistryManager] Failed to initialize EPM Shared Services security instance. Component SYSTEM9/FOUNDATION_SERVICES_PRODUCT/SHARED_SERVICES_PRODUCT is null in EPM System Registry. Verify EPM System Registry configuration.
    [2012-03-05T05:21:19.359+00:00] [EPMCSS] [ERROR] [EPMCSS-00001] [oracle.EPMCSS.CSS] [tid: 10] [ecid: disabled,0] [SRC_CLASS: com.hyperion.css.registry.RegistryManager] [SRC_METHOD: RegistryManager] Failed to initialize EPM Shared Services security instance. Component SYSTEM9/FOUNDATION_SERVICES_PRODUCT/SHARED_SERVICES_PRODUCT is null in EPM System Registry. Verify EPM System Registry configuration.
    [2012-03-05T05:21:24.890+00:00] [EPMCSS] [ERROR] [EPMCSS-00001] [oracle.EPMCSS.CSS] [tid: 10] [ecid: disabled,0] [SRC_CLASS: com.hyperion.css.registry.RegistryManager] [SRC_METHOD: RegistryManager] Failed to initialize EPM Shared Services security instance. Component SYSTEM9/FOUNDATION_SERVICES_PRODUCT/SHARED_SERVICES_PRODUCT is null in EPM System Registry. Verify EPM System Registry configuration.
    [2012-03-05T10:08:08.812+00:00] [EPMCSS] [ERROR] [EPMCSS-00001] [oracle.EPMCSS.CSS] [tid: 10] [ecid: disabled,0] [SRC_CLASS: com.hyperion.css.registry.RegistryManager] [SRC_METHOD: RegistryManager] Failed to initialize EPM Shared Services security instance. Component SYSTEM9/FOUNDATION_SERVICES_PRODUCT/SHARED_SERVICES_PRODUCT is null in EPM System Registry. Verify EPM System Registry configuration.
    [2012-03-05T10:08:14.875+00:00] [EPMCSS] [ERROR] [EPMCSS-00001] [oracle.EPMCSS.CSS] [tid: 10] [ecid: disabled,0] [SRC_CLASS: com.hyperion.css.registry.RegistryManager] [SRC_METHOD: RegistryManager] Failed to initialize EPM Shared Services security instance. Component SYSTEM9/FOUNDATION_SERVICES_PRODUCT/SHARED_SERVICES_PRODUCT is null in EPM System Registry. Verify EPM System Registry configuration.
    [2012-03-05T10:08:18.890+00:00] [EPMCSS] [ERROR] [EPMCSS-00001] [oracle.EPMCSS.CSS] [tid: 10] [ecid: disabled,0] [SRC_CLASS: com.hyperion.css.registry.RegistryManager] [SRC_METHOD: RegistryManager] Failed to initialize EPM Shared Services security instance. Component SYSTEM9/FOUNDATION_SERVICES_PRODUCT/SHARED_SERVICES_PRODUCT is null in EPM System Registry. Verify EPM System Registry configuration.
    Thanks
    Chi

  • Multiple DimBuilds w/Only One Restructure in MaxL?

    I am doing a series of dimension builds via load rules (v7.1.5). In this case I am building this entire dimension from scratch every time, but I want to preserve data, because there is forecast and plan data in this cube, not just actuals. My problem is this: In order to build completely from scracth, my first dimbuild load rule has "Remove Unspecified" turned ON. But that that dimbuild does not include all the level 0 members I will end up adding to this dimension by the end of this process. And I cannot find a way to delay Essbase from performing the restructure until the last dimbuild. I have tried using the "suppress verification" option in MaxL's import dimension command, but it doesn't accomplish this. I cannot find anything in the MaxL docs that refers to this and no one I work with has an answer. There has to be a way to do this, doesn't there? Otherwise I will have to abandon this "build from scratch" methodology and just leave old, dead members lying around in this dimension until they are removed manually.<BR><BR>Thanks,<BR><BR>James

    James:<BR><BR>What's important here is that ALL of the dimension build happen in the same IMPORT statement, as follows:<BR><BR>import database sample.basic dimensions <BR><b>from server text data_file 'genref' using server rules_file 'genref' suppress verification, <BR>from server text data_file 'level' using server rules_file 'level' suppress verification, <BR>from server text data_file 'time' using server rules_file 'time' suppress verification </b><BR>preserve all data on error append to 'C:\Hyperion\EAS\eas\client\dataload.err';<BR><BR>This is the only way that the suppression works.<BR>

  • Error 109 : MaxL api instance is not Active  after installing excel add-in

    Hello Gurus
    I am getting error Error 109 : MaxL api instance is not Active while expanding essbase server in EAS console.
    I am using EPM 11.1.2.1 on Windows server 2008 x64 with MS Office 2007 x32
    EAS was working properly before installing Excel Add-in,
    What i did is
    1. I first installed excel add-in and when I clicked on connect Log-in screen didn't appears.
    2. Then I reinstalled excel add-in and it started working properly and EAS was also working fine.
    3. But after restarting VM, EAS is not working, it is giving error like "Error 109 : MaxL api instance is not Active"
    4. I also searched on OTN for EAS issue and checked following environment variables
    ESSBASEPATH : C:\Oracle\Middleware\EPMSystem11R1\products\ExcelAddin
    ESSLANG : English_UnitedStates.Latin1@Binary
    5. And also tried reinstalling EAS
    Any help will be highly appreciated.
    Thanks
    Yash
    Edited by: yash on Apr 10, 2012 8:01 PM

    Hello,
    I had the same problem, after add-in 's installation on epm 11.121
    Without solution, I was forced to uninstall all epm and reintsall.
    Is there another method to solve this problem ?
    thx

  • Error While doing aggregate operaion in ASO cube using MaxL

    Hi,
    when I try to run a Maxl script against an ASO application to aggeragate the cube. I end up with an error msg as shown below.
    ERROR - 1270102 - Merge and view build operations cannot be performed while data load buffers exist.
    Maxl I used "execute aggregate process on database app_name.db_name stopping when total_size exceeds 1.5"
    Please guide me on what caused this issue.
    Thanks
    Sathish

    Is it working now?
    If not maybe you have other buffers that still exist, you can also destroy buffers e.g. alter database ASOSamp.Sample destroy load_buffer with buffer_id 1;
    Also restarting the database should clear the buffers, try restarting and then aggregating to see if it was a buffer issue.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Issue in MaxL

    Hi all,
    Iam using MaxL statements for validating and backup of the databases.
    The statements are as follows:
    MAXL> alter database app1.db1 validate using error_file "E:\hyperion\samp.txt";
    MAXL> export database app1.db1 data to data_file "d:exp.txt";
    When I execute the above statements, Iam encountering the following error messages:
    ERROR - 1042013 - Network error [10054]: Cannot Receive Data.
    ERROR - 1042012 - Network error [10054]: Cannot Send Data.
    ERROR - 1241101 - Unexpected Essbase error 1042012.
    The version of Essbase Iam using is 9.3.1.1 and my operating system is Windows.
    Can anyone help me with what causes the issue and how to prevent it ?
    Thanks in advance,
    Raja

    Hi Glenn,
    Thanks for your immediate response.
    The application log was a very big one and I have attached few snippets from it:
    Mon Aug 25 16:08:25 2008]Local/app1///Info(1012713)
    Two-pass Member [Pct of Overtime YTD] is not tagged as Dynamic Calc.
    [Mon Aug 25 16:08:25 2008]Local/app1///Info(1012713)
    Two-pass Member [Capital Charge as % of Earnings YTD] is not tagged as Dynamic Calc.
    [Mon Aug 25 16:20:12 2008]Local/app1/db1/admin/Info(1008139)
    Unable to Allocate Aligned Memory for [pMemByte] in [adDatPhExpandBufferPool].
    [Mon Aug 25 16:20:12 2008]Local/app1/db1/admin/Info(1006065)
    Reducing file cache memory pages from [250000] to [187392] due to a lack of virtual memory.
    [Mon Aug 25 16:20:12 2008]Local/app1///Info(1008108)
    Essbase Internal Logic Error [7333]
    Also there were around 5 exception files created and all the files had the following exception:
    Assertion Failure - id=7333 condition='((!( dbp )->bFatalError))'
    - line 7773 in file kernel/datbuffm.c
    - arguments [1006031] [0] [0] [0]
    Please help me in the above regard.
    Thanks,
    Raja

  • Issue in MaxL. illegal block type.

    hi all.
    I am using Essbase 9.3
    I have got a Invalid block header.
    error message "Invalid block header: Illegal block type -- Please use the IBH Locate/Fix utilities to find/fix the IBH problem"
    For recovery, I use the following command
    alter application sample disable commands;
    alter system logout session on database sample.basic;
    alter database sample.basic validate data to local logfile 'invalid_blocks';
    alter database sample.basic repair invalid_block_headers;
    When I execute the above statements, Iam encountering the following error messages:
    MAXL> alter database pov_fin.f1_pl validate data to local logfile 'D://hyperion/
    essbase/app/pov_fin/pov_fin.log';
    OK/INFO - 1054014 - Database F1_plCCP loaded.
    OK/INFO - 1051061 - Application POV_FIN loaded - connection established.
    OK/INFO - 1054027 - Application [POV_FIN] started with process id [11228].
    OK/INFO - 1054014 - Database F1_pl loaded.
    ERROR - 1042012 - Network error [10054]: Cannot Send Data.
    ERROR - 1042012 - Network error [10054]: Cannot Send Data.
    ERROR - 1241101 - Unexpected Essbase error 1042012.
    Can anyone help me with what causes the issue and how to prevent it ?
    Thanks for your time.
    With Regards
    The application log
    [Wed Mar 06 15:10:38 2013]Local/POV_FIN///Info(1002035)
    Starting Analytic Services Server - Application [POV_FIN]
    [Wed Mar 06 15:10:38 2013]Local/POV_FIN///Info(1200480)
    Loaded and initialized JVM module
    [Wed Mar 06 15:10:39 2013]Local/POV_FIN///Info(1200445)
    External [GLOBAL] function [@ESSBASEALERT] registered OK
    [Wed Mar 06 15:10:39 2013]Local/POV_FIN///Info(1019008)
    Reading Application Definition For [POV_FIN]
    [Wed Mar 06 15:10:39 2013]Local/POV_FIN///Info(1019009)
    Reading Database Definition For [F1_pl]
    [Wed Mar 06 15:10:39 2013]Local/POV_FIN///Info(1019009)
    Reading Database Definition For [F1_plCCP]
    [Wed Mar 06 15:10:39 2013]Local/POV_FIN///Info(1019021)
    Reading Database Mapping For [POV_FIN]
    [Wed Mar 06 15:10:39 2013]Local/POV_FIN///Info(1019010)
    Writing Application Definition For [POV_FIN]
    [Wed Mar 06 15:10:39 2013]Local/POV_FIN///Info(1019011)
    Writing Database Definition For [F1_pl]
    [Wed Mar 06 15:10:39 2013]Local/POV_FIN///Info(1019011)
    Writing Database Definition For [F1_plCCP]
    [Wed Mar 06 15:10:39 2013]Local/POV_FIN///Info(1019022)
    Writing Database Mapping For [POV_FIN]
    [Wed Mar 06 15:10:39 2013]Local/POV_FIN///Info(1013202)
    Waiting for Login Requests
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1013205)
    Received Command [Load Database]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1019018)
    Writing Parameters For Database [F1_plCCP]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1019017)
    Reading Parameters For Database [F1_plCCP]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1019012)
    Reading Outline For Database [F1_plCCP]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1007043)
    Declared Dimension Sizes = [311 3 3 1 7 17 5834 54 ]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1007042)
    Actual Dimension Sizes = [305 2 2 1 6 12 5755 54 ]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1007125)
    The number of Dynamic Calc Non-Store Members = [55 1 1 0 0 5 0 0 ]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1007126)
    The number of Dynamic Calc Store Members = [0 0 0 0 0 0 0 0 ]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1007127)
    The logical block size is [1220]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1010008)
    Maximum Declared Blocks is [37489284] with data block size of [2799]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1010007)
    Maximum Actual Possible Blocks is [31698540] with data block size of [250]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1200481)
    Formula for member [PY] will be executed in [CELL] mode
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1200481)
    Formula for member [YTD] will be executed in [CELL] mode
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1012710)
    Essbase needs to retrieve [12] Essbase Kernel blocks in order to calculate the top dynamically-calculated block.
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1012736)
    The Dyn.Calc.Cache for database [F1_plCCP] can hold a maximum of [107436] blocks.
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1012737)
    The Dyn.Calc.Cache for database [F1_plCCP], when full, will result in [allocation from non-Dyn.Calc.Cache memory].
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1019018)
    Writing Parameters For Database [F1_plCCP]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1019017)
    Reading Parameters For Database [F1_plCCP]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1070013)
    Index cache size ==> [1048576] bytes, [128] index pages.
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1070014)
    Index page size ==> [8192] bytes.
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1070081)
    Using buffered I/O for the index and data files.
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1070083)
    Using waited I/O for the index and data files.
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1019019)
    Reading Data File Free Space Information For Database [F1_plCCP]...
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1006025)
    Data cache size ==> [3145728] bytes, [1572] data pages
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1006026)
    Data file cache size ==> [0] bytes, [0] data file pages
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1024033)
    Missing Database Config File [D:\Hyperion\ESSBASE\APP\POV_FIN\F1_plCCP\F1_plCCP.cfg], Query logging disabled
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1203135)
    Starting the Data Mining Framework
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1203136)
    Data Mining Framework successfully initialized.
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1200551)
    Allocated TRIGMAXMEMSIZE: [4096] Bytes.
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1013205)
    Received Command [Get Database Volumes]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1013205)
    Received Command [Set Database State]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1019018)
    Writing Parameters For Database [F1_plCCP]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1019018)
    Writing Parameters For Database [F1_plCCP]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1013205)
    Received Command [Get Database State]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1013205)
    Received Command [Get Database Info]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1013205)
    Received Command [SetApplicationState]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1019010)
    Writing Application Definition For [POV_FIN]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1019011)
    Writing Database Definition For [F1_pl]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1019011)
    Writing Database Definition For [F1_plCCP]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1019022)
    Writing Database Mapping For [POV_FIN]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1013205)
    Received Command [Load Database]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1019018)
    Writing Parameters For Database [F1_pl]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1019017)
    Reading Parameters For Database [F1_pl]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1019012)
    Reading Outline For Database [F1_pl]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1007043)
    Declared Dimension Sizes = [321 16 9 1 7 17 8377 6195 4 5 5 6 ]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1007042)
    Actual Dimension Sizes = [315 15 8 1 6 12 8311 6094 0 0 0 5 ]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1007125)
    The number of Dynamic Calc Non-Store Members = [53 11 7 0 0 5 0 0 ]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1007126)
    The number of Dynamic Calc Store Members = [0 0 0 0 0 0 0 0 ]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1007127)
    The logical block size is [37800]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1010008)
    Maximum Declared Blocks is [6175566285] with data block size of [46224]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1010007)
    Maximum Actual Possible Blocks is [5166017868] with data block size of [1048]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1200481)
    Formula for member [LM] will be executed in [CELL] mode
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1200481)
    Formula for member [PY] will be executed in [CELL] mode
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1200481)
    Formula for member [PPY] will be executed in [CELL] mode
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1200481)
    Formula for member [YTD] will be executed in [CELL] mode
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1200481)
    Formula for member [PYTD] will be executed in [CELL] mode
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1200481)
    Formula for member [PYTD AVG] will be executed in [CELL] mode
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1012710)
    Essbase needs to retrieve [12] Essbase Kernel blocks in order to calculate the top dynamically-calculated block.
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1012736)
    The Dyn.Calc.Cache for database [F1_pl] can hold a maximum of [3467] blocks.
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1012737)
    The Dyn.Calc.Cache for database [F1_pl], when full, will result in [allocation from non-Dyn.Calc.Cache memory].
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1019018)
    Writing Parameters For Database [F1_pl]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1019017)
    Reading Parameters For Database [F1_pl]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1070013)
    Index cache size ==> [314572800] bytes, [38400] index pages.
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1070014)
    Index page size ==> [8192] bytes.
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1070081)
    Using buffered I/O for the index and data files.
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1070083)
    Using waited I/O for the index and data files.
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1019019)
    Reading Data File Free Space Information For Database [F1_pl]...
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1006025)
    Data cache size ==> [821657600] bytes, [98003] data pages
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1006026)
    Data file cache size ==> [0] bytes, [0] data file pages
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1080053)
    Free space recovery skipped. Estimated free space recoverable by RecoverDbFreeSpace: [11394603094] bytes
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1024033)
    Missing Database Config File [D:\Hyperion\ESSBASE\APP\POV_FIN\F1_pl\F1_pl.cfg], Query logging disabled
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1200551)
    Allocated TRIGMAXMEMSIZE: [4096] Bytes.
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1013205)
    Received Command [Get Database Volumes]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1013205)
    Received Command [Set Database State]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1019018)
    Writing Parameters For Database [F1_pl]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1019018)
    Writing Parameters For Database [F1_pl]
    [Wed Mar 06 15:10:40 2013]Local/POV_FIN///Info(1013205)
    Received Command [Get Database State]
    [Wed Mar 06 15:10:41 2013]Local/POV_FIN///Info(1013210)
    User [admin] set active on database [F1_pl]
    [Wed Mar 06 15:10:41 2013]Local/POV_FIN/F1_pl/admin/Info(1013091)
    Received Command [Locate IBH] from user [admin]
    [Wed Mar 06 15:10:41 2013]Local/POV_FIN/F1_pl/admin/Info(1006016)
    Invalid block header: Illegal block type
    [Wed Mar 06 15:10:41 2013]Local/POV_FIN///Info(1008108)
    Essbase Internal Logic Error [7100]
    [Wed Mar 06 15:10:41 2013]Local/POV_FIN///Info(1008106)
    Exception error log [D:\Hyperion\ESSBASE\app\POV_FIN\log00026.xcp] is being created...
    [Wed Mar 06 15:10:41 2013]Local/POV_FIN///Info(1008107)
    Exception error log completed -- please contact technical support and provide them with this file
    [Wed Mar 06 15:10:41 2013]Local/POV_FIN///Info(1002089)
    RECEIVED ABNORMAL SHUTDOWN COMMAND - APPLICATION TERMINATING
    Edited by: JH_lee on 2013. 3. 5 오후 10:38

    Report Scripts, DATAEXPORT command, JEXPORT are some types of ways to select an area of the database and export the data though it all depends on how corrupted the databas is to whether you will be able to get any of the data out.
    It is probably worth having a read of the following doc in Oracle Support "Error "1006060 - Invalid block header: Block numbers do not match -- Please use the IBH Locate/Fix utilities to find/fix the IBH problem" [ID 596748.1]"
    It is not exactly the same error but it gives suggestions on attempting to fix the error.
    You might be out of luck if you did not take regular backups.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Use of Essbase substitution variables in filename of a MaxL report script

    Hey guys.
    Is there a way that I can embed the value of one or more Essbase substitution variables in the filename of a report script in a MaxL command?
    I'm running a report script that uses sub. vars for entities and accounts and based on which of those members are set in the variables I want the filenames to include those member names. I'm looking for a way to include the &varName in the filename using the export database command.
    THANKS!

    Not really.
    If you want to do a lot of string mangling in a script outside of the report script, you can use DISPLAY VARIABLE:
    MAXL> display variable CurMo;
    application         database            variable            value
    +-------------------+-------------------+-------------------+-------------------
                                             CurMo               MayRegards,
    Robb Salzmann

  • MaxL import statement w/ rules

    How do you tell MaxL to look on the server for the rules file (without specifying a full path)?Harold

    Try using the following syntax:import database DBS_NAME data from data_file DATA_FILE_NAME using server rules_file RULES_FILE_NAME on error write to ERROR_FILE_NAME;Shane EckertThinkFast Consulting, Inc.

Maybe you are looking for

  • Saved audio in ALU, though loop not appearing in loops browser

    I am following David Dvorin's Beyond the Basics and am up to the part about Apple Loops Utility. In it he uses an imported audio file called Chimey Guitar, the whole point is to use ALU, use its functions and then save it as an Apple Loop. When I hav

  • Will BootCamp install Windows on an external drive?

    Instead of partitioning the onboard SSD of my 2011 MacBook Air, I was wondering if I could connect an external drive to put Windows on and boot into Windows from that device. Is that possible? Thanks!

  • IMac G5 freezes on start up after ITunes, Quicktime and Security update

    On June 2nd, the following event occurred on my IMac G5 (model year 2005) equipped Mac OS 10.4.9 Upon completion of the automatic update for Itunes, Quicktime and a security update, the computer restarted. However, the start-up sequence freezes on a

  • My sound effects aren't working, how do I get them to work again?

    On my iPad my sounds effects aren't working and it's on loud. I've been into music but it won't let me change the volume. It's just dark grey and won't let me touch it. Also the volume control on the side when I put it onto loud the sound effect pops

  • Muse: How to create an auto-enlarging slideshow

    Hi, how can I create a slideshow like this Château de Dournes ? (It's created with EverWeb.) I mean: Auto-run, click to enlarge > a new frame opens, perfectly adapted to the photos' size & format (portrait / landscape)- Thanks a lot! Hp