Dataload(without rule file)hangs on EAS on loading data thru exported file.

I am trying to do a data load to a database though a file I exported earlier and the data load just hangs after taking in the text file. It hangs where it says "Press escape or cancel button to terminate the current operation." It is a very small text file that am loading data from. I have to kill the ESSSVR process for that particular application to get the EAS back to do other tasks. Am able to do all other tasks just fine. Also on our Prod environment we do not have this issue and am able to load data thru exported text files just fine. Has anyone seen this behavior before?
Thanks,
Ted.
Edited by: Teddd on Mar 4, 2013 8:52 AM

Tim, Priya
The Prod and Dev Environments are exactly the same and no additional patches were applied on either. It is not a ASO Cube either. This happens for all the applications in Dev and This is what the application Log says(see below), I cleared the dabase before loading it.
/App1234/App1234/user123/47563117857088/Info(1013022)
All data of database [App1234] has been cleared by User [user123]
[Tue Mar  5 11:59:46 2013]Local/App1234///47563289983296/Info(1013214)
Clear Active on User [user123] Instance [1]
[Tue Mar  5 12:04:32 2013]Local/App1234///47561752435120/Info(1013205)
Received Command [Get Database Info]
[Tue Mar  5 12:10:43 2013]Local/App1234///47563293141312/Info(1013210)
User [user123] set active on database [App1234]
[Tue Mar  5 12:10:44 2013]Local/App1234/App1234/user123/47563121015104/Info(1013161)
Received Command [Dataload] from user [user123]
[Tue Mar  5 12:10:44 2013]Local/App1234/App1234/user123/47563121015104/Info(1003040)
Parallel dataload enabled: [1] block prepare threads, [1] block write threads.
That is where the logging ends.
Priya,
This is what the Essbase.log says
[Tue Mar  5 11:59:05 2013]Local/ESSBASE0///47060015159616/Info(1051001)
Received client request: Select Application/Database (from user [user123])
[Tue Mar  5 11:59:07 2013]Local/ESSBASE0///47060015159616/Info(1054014)
Database App1234 loaded
[Tue Mar  5 11:59:07 2013]Local/ESSBASE0///47060015159616/Info(1051061)
Application App1234 loaded - connection established
[Tue Mar  5 11:59:07 2013]Local/ESSBASE0///47060015159616/Info(1054027)
Application [App1234] started with process id [8072]
[Tue Mar  5 11:59:07 2013]Local/ESSBASE0///47060015159616/Info(1051009)
Setting application App1234 active for user [user123]
[Tue Mar  5 11:59:46 2013]Local/ESSBASE0///47060017264960/Info(1051001)
Received client request: MaxL: Execute (from user [user123])
[Tue Mar  5 11:59:46 2013]Local/ESSBASE0///47060017264960/Info(1051009)
Setting application App1234 active for user [user123]
[Tue Mar  5 12:04:32 2013]Local/ESSBASE0///47060014106944/Info(1051160)
Received Validate Login Session request
[Tue Mar  5 12:04:32 2013]Local/ESSBASE0///47060016212288/Info(1051001)
Received client request: Get Database Info (from user [user123])
[Tue Mar  5 12:04:36 2013]Local/ESSBASE0///47060018317632/Info(1051001)
Received client request: List Objects (from user [user123])
[Tue Mar  5 12:04:36 2013]Local/ESSBASE0///47060015159616/Info(1051001)
Received client request: List Objects (from user [user123])
[Tue Mar  5 12:10:43 2013]Local/ESSBASE0///47060017264960/Info(1051001)
Received client request: MaxL: Execute (from user [user123])
[Tue Mar  5 12:10:43 2013]Local/ESSBASE0///47060017264960/Info(1051009)
Setting application App1234 active for user [user123]
That is where the logging ends.
Thanks,
Ted.
Edited by: Teddd on Mar 5, 2013 10:40 AM

Similar Messages

  • Server Hang While trying to load Data using SQLLDR

    Hi guru's
    OS Version: Centos 6 64 bit
    DB Version : 11gR2 64 bit
    When i am trying to load data using SQL ldr the loading in between hangs. As well as when i am trying to transfer text files which are approx 14Gb using winscp then it show me error as mentioned below:
    Host is not communicating for more than 15 seconds.Still waiting..............
    Not:if problem repeats , by turning off 'Optimize connection buffer size'
    Warning : Abort this operation will close the connection
    I talked to our n/w admin regarding the same problem
    He blaim that its due to oracle not by any n/w
    can anyone help me in this respect.

    Check MOS note :
    SQL*Loader Hangs After Start [ID 1186863.1]

  • How to load data thru flat file in demantra?

    Hi,
    I am using seeded data model for loading data for DM module in demantra.
    As per data model there is 3 staging tables for item, location and sales_data i.e. t_src_item_tmpl,t_src_loc_tmpl,t_src_sales_tmpl respectively.
    I have seen the final table for sales data i.e. sales_data table. ther is only one item_id and location_id column against which sales_date and quantity is loaded.
    I have same sales_data and quantity to be loaded for different location hierarchy and item hierarchy .
    How the data file is created ? if you have any sample data files , can you please share with me ? If any changes needs to be done in data model for loading datardsa in custom hierarchies ?
    Regards

    Welcome user10979220 to the wonderful forum.
    "How many rows will be there in item flat file ?
    How many rows will be there in location flat file ?
    How many rows will be there in sales data flat file ?"
    Answer to these questions are based on the number of sales that has occured as well as the item hierarchy and the product hierarchy.
    From the example
    Item_name | organization | ship to site | Sales date | quantity
    item 1 org1 site1 19-Jan-2008 80
    item1 org1 site2 20-Jan-2008 100
    I can say that the number of rows in sales data is 2 while that in item file is 1 and location file is 2.
    The answer to how the flat file will look is
    Item file can have
    Item_Id|Item_Name
    01     Item1
    Location file can have
    Org_Id|Org_Name|Site_Id|Site_name
    O_01     Organization 1     S_01     Site 1
    O_01     Organization 1     S_02     Site 2
    Sales file can have
    Item_Id|Item_Name|Org_Id|Org_Name|Site_Id|Site_name|sales_date|Quantity
    01     Item1     O_01     Organization 1     S_01     Site 1     19-Jan-2008 80
    01     Item1     O_01     Organization 1     S_02     Site 2     20-Jan-2008 100
    Once you define the data model and load the data it is advisable not to change the data model since the next time when you load the incremental data it will error out due to the mismatching columns. So its better that you define the data model first and then create the files accordingly.
    Hence after loading data if you want to view sales data at the product_category1 level then you should already have the product_category1 level defined in the data model.Else You have to create the product_category1 level and associate it in the item hierarchy.Also the sales file should have columns for product_category1.
    Then the item file will look like
    Item_Id|Item_Name|Product_category1_Id|Product_category1_desc
    01     Item1     PC_01     Product_category 1
    and the sales file will look like
    Item_Id|Item_Name|Org_Id|Org_Name|Site_Id|Site_name|sales_date|Quantity
    01     Item1     O_01     Organization 1     S_01     Site 1     19-Jan-2008 80
    01     Item1     O_01     Organization 1     S_02     Site 2     20-Jan-2008 100
    This is just a basic overview about loading the data into the staging tables.In short the item table should have the item hierarchy in it, the location file should have the location hierarchy in it and the sales file must contain the details about the sales at the lowest item-location level.
    Hope I answered your query.
    Thanks and Regards,
    Shekhar

  • DIM: how to load metadata to Essbase without using rule files

    Hi,
    The Essbase adapter has been installed in the informatica PowerCenter (v8.1.1). We want to create a Essbase target definition to load metadata. In the Table Creation Wizard, we select Table Type: Dynamic dimension building (Type 3), but it needs to specify Rules file in the Column Creation Wizard.
    Any method to load metadata into Essbase without using Rules file?
    Thank you in advance.

    You could load the data into Essbase without Rule file by means of free form loading which the Datasource would be a file.

  • Is this possible: SQL Dataload with generic rule file?

    Hello,
    when loading a flat file into Essbase, one can define in the header the data load field names. In the data load, the dimension names are given and at the end the Data. In the rule file under Options > Data source properties > Header a reference to this line could be made. This works fine.
    We want to load data with SQL in the same way. One load rule with a substitution variable for the view selection and we can use it for all data loads. We have specified the dimension names in the table column header. The data column was defined as "data" - without quotes.
    The result so far is, it will not load.
    The question is - does somebody tried this before and can help me on this?
    Thanks in advance.
    Regards,
    Philip Hulsebosch
    www.trexco.nl

    the data column can be repersented in multiple ways, the way I typically do it is to define it to the member it belongs to. In my example where your substitution variable &currmth is "Jan" then "Jan" would be the column name. Next month when the sub var changes to Feb, it is Feb.

  • Rule files for dataload

    Hi All,
             I am a newbie to essbase and trying to load data from ODI. I am not very clear with the concept of rule file. Request you to throw some light on the below cases:
    Is rule mandatory for loading metadata?
    Is rule not required for loading data to the essbase database? In this case, my observation is that i am able to load data using rule file and also by not using rule file. So, in what circumstances the rule file is required?
    Note: The sample code by Oracle for loading data to the essbase cube, has interfaces to load metadata using rule file and interfaces to load data without using rule file.
    Regards

    Hi John,
                Thanks for the response.
    Another issue is , the interface that loads data to the essbase cube using IKM SQL to HYPERION Essbase (DATA) knowledge module is deleting the rule file after the load. But, I do not see any step in ODI logs that deletes the rule file.On the other hand, we do not see such behavior with IKM SQL to HYPERION Essbase (METADATA) knowledge module.
    Regards
    Ashwin

  • DataLoad Rule file - Date conversion

    Hi, While working on a Dataload rule file,I was facing this problem. I'm getting date in the format "m(m)/d(d)/yyyy hh:mm:ss". Is there a way to change this to "mm/yy" ?? (There won't be anyproblem if I get mm/dd/yyyy hh:mm:ss style. but unfortunately not.)

    You will have to change it on the data source...Where are you importing from?Will you load these dates into an date attribute dimension?

  • EAS -  Rule File SQL retrieval Issue

    Hi All,
    We are using EPM 11.1.2 I have created ODBC DSN connection to a oracle database using data direct 6.0 oracle wire protocol. Iam using the DSN connection in the rule file to retrieve the information from the database.
    Currently the issue is that view has a filter condition to pull data greater than 2011 when I retrieve through the SQL client tools data retrieved is as per the filter condition and when I am retrieving the data from the same view thru EAS console it shows up information starting from 2008.
    Even if I tried by applying the filters it didn't help me out
    Why does EAS behave like this am I using correct driver ?
    Please put on your ideas if you have faced this issue before.
    Thanks in advance........

    I was not able to figure out this issue so I have created an ODI to update my dimensions.
    Thanks ....

  • Export dataload rule file

    Is it possible to export a rule file in a text or other format to read the load rules without application manager ?ThanksFF

    This has been requested for years. Currently there is no way to do it.Glenn S.Narratus Inc.

  • Moving rules files from Application Manager 6.2 to EAS 7.1.5

    <p>I have moved the outline and the rules files that were createdin Application Manager 6.2 on an Essbase server version 7.1.2 to anEssbase Server 7.1.5 with EAS 7.1.5. The problem is that I can'topen some of the rule files with the EAS. First a question appearsasking which encoding is used, after I have selected the rightencoding a message box popps up telling me that the essbase serveris not responding.</p><p> </p><p>Have anyone else had the same problem? What is the solution tothis problem (if I don't want to remake the rules files inEAS).</p>

    Here is the link to help<BR><BR><a target=_blank class=ftalternatingbarlinklarge href="http://hmdesktop1:10080/easdocs/dbag/wwhelp/wwhimpl/common/html/wwhelp.htm?context=dbag_721&file=duniover.htm#1023288">http://hmdesktop1:10080/easdoc...=duniover.htm#1023288</a><BR><BR>See if your previous version is <BR>English_UnitedStates.MS1252@Binary<BR><BR>Please verify using App manager in previous version. Check System Information ??<BR><BR>By default 7X has <BR>English_UnitedStates.Latin1@Binary<BR><BR><BR>To fix this go to Control Panel -> System - > Environmental Variables<BR>Create a new variable called ESSLANG <BR>Set the value to English_UnitedStates.MS1252@Binary<BR>On the computer where 7X is installed. <BR><BR>Restart Essbase or the computer<BR><BR>This should fix it<BR><BR><BR>Jullin

  • Deployment Issue with Rules file

    Hi,
    We have Rules file issue after the deployment in Development and Re7 environment.
    We have modified/created the rules file and after the deployment if we execute the rules file from the treatment then we got the error message like mentioned below.
    MAXL> Import database PGC_CHE.Pgc_che data from data_file
    "/pgcre701/pgc/subsidiary/che/tfi/pgc_nature_for_data_che.txt" using server rules_file "DO_MX_05" on error
    write to "/pgcre701/pgc/trc/PGC_150310_103739_pgc_nature_for_data_che.err";
       ERROR - 1019006 - Unable to Read
    [/logiciel/epm11/user_projects/epm_inst4/EssbaseServer/app/PGC_CHE/Pgc_che/DO_MX_05.rul], Created Using A
    Previous Version.
       ERROR - 1241101 - Unexpected Essbase error 1019006.
    If the same rules file opened through EAS console from SVN trunk or local and save as this rule file into Essbase server(through EAS console) then the rules file working correctly from the treatment process launch like mentioned below.
    MAXL> Import database PGC_CHE.Pgc_che data from data_file "/pgcre701/pgc/subsidiary/che/tfi/pgc_nature_for_data_che.txt" using server rules_file "DO_MX_05" on error write to "/pgcre701/pgc/trc/PGC_150310_134622_pgc_nature_for_data_che.err";
    OK/INFO - 1019061 - Reading Rule SQL Information For Database [Pgc_che].
    OK/INFO - 1019025 - Reading Rules From Rule Object For Database [Pgc_che].
    OK/INFO - 1003040 - Parallel dataload enabled: [1] block prepare threads, [1] block write threads..
    OK/INFO - 1003037 - Data Load Updated [18800] cells.
    OK/INFO - 1003053 - Data Load Elapsed Time with [DO_MX_05.rul] : [1.16] seconds.
    OK/INFO - 1241113 - Database import completed ['PGC_CHE'.'Pgc_che'].
    Could you please help us on this point ?
    Thanks in advance for your help.
    Essbase server 11.1.2.3.501 server LINUX red hat

    Hi John,
    it's not quite that
    I will provide more detail:
    In fact, we are 3 server Essbase : development, acceptance and operational there are a lot the new version of Essbase 11.1.2.3.501.
    The maxl treatment are launch since a other server : a treatment server that are a client maxl and ESSCMD in the same version.
    Before that, I'm migrate all the application and database from all alder server Essbase to this new architecture Essbase.
    All application and DATABASE (in BSO) was migrated by expot-import process, the all object (csc, rul, rep ...) was transfer by copy in each directories of database.
    The test after migration are very  satisfying.
    Now, we are on process of life on the Essbase server 11.1.2.3.501.
    The back office of India used the usually process to developed the lot.
    They take the source on SVN application (take the rule), deployed the rule on the development server, modify the rule and have this error.
    This error not appear after migration with the same rule ...
    I am skeptical
    Tx to your help on this subject.

  • UDA Defination in Rule file

    <p> </p><p>I am trying to create a Rule file to build my Dimensions. TheDimensions get built up properly without any issues as long as I donot have any UDA's defined in it.</p><p> </p><p>My dimension build data file is as follows which is ~delimited:</p><p><b>2006~Nov-06~28-Nov-2006~D45~Tue~Business~DA38988~AAAAA</b></p><p>Now in the above file first 3 fields are of the time dimension.D45 is the UDA for 28-Nov-2006 and Tue is the attribute filed of28-Nov-2006</p><p> </p><p>My rule file definition is as follows</p><p>Gen2,Time Gen3,Time  Gen4,Time  UDA4,Time WeekDays4,Time Gen2,User Gen3,User Alias3,Users</p><p>As you can see I have defined the Rule file using Generationproperties</p><p> </p><p>Now when I am trying to build the Dimensions using the abovefile it gives the following error message</p><p> </p><p>Object [Test] is already locked by user [XXXXXX]<br>Building Dimensions Elapsed Time : [0.79] seconds<br>There were errors, look inC:\Hyperion\AdminServices\client\dataload.err<br>Reading Parameters For Database [Drxxxxxx]<br>Reading Outline Transactions For Database [Test]<br>Declared Dimension Sizes = [4 5 11 3 2 ]<br>Actual Dimension Sizes = [3 3 11 3 1 ]<br>Allocated TRIGMAXMEMSIZE: [4096] Bytes.<br>Writing Application Definition For [Test]<br>Writing Database Definition For [Test]<br>Writing Database Mapping For [Test]<br>Loading New Outline for Database [Test] Succeeded<br>Total Restructure Elapsed Time : [1.04] seconds<br>Object [Test] unlocked by user [XXXXXXXXXX]<br>Database import completed ['Test'.'Test']<br>Output columns prepared: [0]<br></p><p>I am unable to understand as to what the following messagemeans. Can someone help me understand this</p><p><b>Declared Dimension Sizes = [4 5 11 3 2 ]        </b>Not sure as towhere I declared this<b> Actual Dimension Sizes = [3 3 11 3 1]</b></p><p> </p><p>Also when I look into the following fileC:HyperionAdminServicesclientdataload.err the error message is asfollows:</p><p><b>Record #1 - Property [D45] changes for member [28-Nov-06] notallowed (3315)2006~Nov-06~28-Nov-06~D45~Tue~Business~DA38988~AAAAA</b></p><p> </p><p>I am unable to make out as to what it means. Is it like I cannothave a UDA and an Attribute for one member i.e. in this case28-Nov-2006.</p><p> </p><p>Thanks</p><p>SSSS54</p>

    As an added comment to the previous poster, you might want both "Allow Property Changes" and "Allow Association Changes" so that both UDAs and Attributes can be successfully updated. If your Essbase version contains the option, you will also need to check the "Allow UDA Changes" option which only becomes enabled if property changes are first enabled.<BR><BR>As for your question regarding Declared vs. Actual dimension sizes:<BR><BR>A "Declared Dimension Size" is a count of the total number of members in the dimension.<BR>An "Actual Dimension Size" is the same, but less the Dynamic Calc, Shared and Label Only members.<BR><BR>The numbers you see are simply a list of the declared or actual sizes of each dimension in order.

  • Unable to create rule file

    Hi,
    I am trying to create a rule file in one essbase cube using the level 0 export (extract in column format) from another cube of a different application. Level0 data file is saved in the local machine from where I am running Essbase. While creating the rule file, trying to open the data file, error message comes like "Invalid blank character in name". Can anyone please let me know what the error can be?
    Thanks.

    I had a similar issue in the past,
    Even if the file is placed on Desktop at times EAS was picking it, but always failed with MaxL may be because of it's syntax and the way it can read the path. Maybe there are other factors as well.
    But it's always better to put the file in a path without spaces and it'll work fine always. :)

  • Loading Data to Essbase using Rule File Failed

    Hi
    i'm using IKM SQL to Essbase Cbue,
    Now I would like to use rule file when loading data,
    I created one in Essbase cube, then define it on the target (flow) and the Tab on Rule seprator,
    I reversed the Essbase Cbue again.
    when loading I get the following error bellow
    (before loading I verfiy with sample file based on the same strcture from my source and load it via data load from EAS
    and it works fine. also it works without any rule file.)
    here's the error I'm getting from operator:
    org.apache.bsf.BSFException: exception from Jython:
    Traceback (innermost last):
    File "<string>", line 23, in ?
    com.hyperion.odi.essbase.ODIEssbaseException
         at com.hyperion.odi.essbase.ODIEssbaseDataWriter.loadData(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at org.python.core.PyReflectedFunction.__call__(PyReflectedFunction.java)
         at org.python.core.PyMethod.__call__(PyMethod.java)
         at org.python.core.PyObject.__call__(PyObject.java)
         at org.python.core.PyInstance.invoke(PyInstance.java)
         at org.python.pycode._pyx30.f$0(<string>:23)
         at org.python.pycode._pyx30.call_function(<string>)
         at org.python.core.PyTableCode.call(PyTableCode.java)
         at org.python.core.PyCode.call(PyCode.java)
         at org.python.core.Py.runCode(Py.java)
         at org.python.core.Py.exec(Py.java)
         at org.python.util.PythonInterpreter.exec(PythonInterpreter.java)
         at org.apache.bsf.engines.jython.JythonEngine.exec(JythonEngine.java:144)
         at com.sunopsis.dwg.codeinterpretor.k.a(k.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.scripting(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSqlI.treatTaskTrt(SnpSessTaskSqlI.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandSession.treatCommand(DwgCommandSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandBase.execute(DwgCommandBase.java)
         at com.sunopsis.dwg.cmd.e.j(e.java)
         at com.sunopsis.dwg.cmd.g.z(g.java)
         at com.sunopsis.dwg.cmd.e.run(e.java)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.lang.NullPointerException
         at com.hyperion.odi.connection.AbstractHypAppWriter.logErrorRecord(Unknown Source)
         at com.hyperion.odi.essbase.ODIEssbaseDataWriter.sendRecordArrayToEsbase(Unknown Source)
         ... 32 more
    com.hyperion.odi.essbase.ODIEssbaseException: com.hyperion.odi.essbase.ODIEssbaseException
         at org.apache.bsf.engines.jython.JythonEngine.exec(JythonEngine.java:146)
         at com.sunopsis.dwg.codeinterpretor.k.a(k.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.scripting(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSqlI.treatTaskTrt(SnpSessTaskSqlI.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandSession.treatCommand(DwgCommandSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandBase.execute(DwgCommandBase.java)
         at com.sunopsis.dwg.cmd.e.j(e.java)
         at com.sunopsis.dwg.cmd.g.z(g.java)
         at com.sunopsis.dwg.cmd.e.run(e.java)
         at java.lang.Thread.run(Unknown Source)
    pls advice what i'm doing worng?
    Thanks!

    So are you saying the data load interface works if you remove the rule in the options?
    Have you ever got any data loads to run with a load rule or without?
    Cheers
    John
    http://john--goodwin.blogspot.com/

  • A problem happened when building dimensions with Rule File

    Hi All,
    I was trying to build dimensions with the rule file. But it showed the error 1030100, which means "cannot open file".
    I can load data with a data source (.txt). Thus, I assumed that it's a problem to open a rule file.
    I don't think it's the problem about the rule files I wrote since I cannot even build dimensions with rule files in the Sample/Basic database.
    Anyone knows how to solve the problem? Thanks for the help.
    Best Regards,
    Anderson

    854285 wrote:
    Hi Prebhas,
    Here are the error messages:
    Object [Basic] is locked by user [admin]
    Building Dimensions Elapsed Time: [0.016] seconds
    Cannot open file: [E:\Hyperion\products\Essbase\eas\Client\dataload.err]
    Unexpected Essbase error 1030100
    Object [Basic] is unlocked by user [admin]
    p.s. Even I re-install my system is English, the word "Client" is shown in Chinese. Is it possible this is the reason? If so, how I change the folder?
    After I saw this message, I checked the folder and there is no such file. I tried to created one, but it disappear after I tried to build dimensions.
    Best Regards,
    Anderson
    Edited by: 854285 on 2011/4/25 上午 3:27HI,
    E:\Hyperion\products\Essbase\eas\Client\dataload.err
    This path is referred to error message .... it will show the errors in that file...
    and one more thing...
    while adding data source to rule file it will ask you provide a path for the error message...there you can see this path...
    Just check dataload.err file after running the rule file...
    have you associated the out line to the rule file ???
    is that rule file validate fine?
    if not associate it and try...
    Regards,
    Prabhas
    Edited by: P on Apr 25, 2011 4:43 PM

Maybe you are looking for

  • Error in Control - Error

    Hello, Can someone please explain what this error means "Error in Control"? I am using SAPGUI command to record and execute. I create a custom document and once created that doc appears in the grid on the upper half of the screen. I click on the crea

  • Freeing up application storage

    after deleting my apps the the memory still remains and now i have no more available space to download more apps or at least the once i will actually use. please help

  • Printing in Central pro

    I'm trying to print the document with the below configuration in JMD file and in transaction file  I'm using the below line of code (1), the output is not printing to the FL9P201 printer rather it is creating the file in the data folder? any suggesti

  • Support of pdf 1.2 (Acrobat 3)

    Does the .pdf-Generator support pdf 1.2 (Acrobat 3)? I do have the entry in the conversion settings - but the files generated are always pdf 1.4 (Acrobat 5) - and the documentation does not mention pdf 1.2. Is pdf 1.2 (Acrobat 3) supported or not ? T

  • CVI 8.5 IDE fatal errors

    Several times now I've had CVI 8.5 crash on me when I'm closing an open project and opening another one. I get a CVI popup saying Lab Windows / CVI will be aborted   , location 001B:10258287.  It is not an OS popup - looks to me like an exception tha