Essbase 9.3.1 session ends abruptly when trying to load data file

Hi,
I recently installed Essbase 9.3.1 but when creating rule files i try to load the data file the sessions ends abruptly. did anybody else face this issue and how can i fix this?
Thanks

hi,
I see the below error. Let me know if this helps. If you can tell me where exactly can i look for the error log that would be great. Thanks
2013-01-23 16:51:52,459 WARN http-10080-Processor24 com.hyperion.hbr.db.DBConnec
tionManager - Unable to create a new connection for jdbc:hyperion:sqlserver://<SERVER_NAME>:<PORT_NUMBER>;DatabaseName=<DB_NAME>
2013-01-23 16:51:52,460 FATAL http-10080-Processor24 com.hyperion.hbr.core.PluginDataManager - Error reading Plugin Data.

Similar Messages

  • Bw problem/error when trying to load data

    hi experts i suddenly have this issue when trying to load data anywhere in my bw system (psa,ods,infocubes) i get the following abap runtime error:
    SNAP_NO_NEW_ENTRY
    runntime error,short dump could not be written
    and bellow that it generally says that SNAP is full and i need to create more free space
    any suggestions what i should do?
    ps.i ve tried the re-organize option and no luck, i need to take more drastic measures
    thanks

    check the below thread...
    [SNAP_NO_NEW_ENTRY;

  • Error when trying to load data from ODS to CUBE

    hi,
      Iam getting a short dump  when trying to load data from ODS to CUBE. The Run time error is 'TYPELOAD_NEW_VERSION' and the short text is 'A newer version of data type "/BIC/AZODS_CA00" was found than one required.please help me out.

    Hi,
    Check this thread.........Ajeet Singh  has given a good solution here.........
    Re: Error With Data Load-Getting Canceled Right Away
    Also check SAP note: 382480..................for ur reference............
    Symptom
    A DART extraction job terminates with runtime error TYPELOAD_NEW_VERSION and error message:
    Data type "TXW_INDEX" was found in a newer version than required.
    The termination occurs in the ABAP/4 program "SAPLTXW2 " in "TXW_SEGMENT_RECORD_EXPORT".
    Additional key words
    RTXWCF01, LTXW2U01, TXW_INDEX
    Cause and prerequisites
    This problem seems to happen when several DART extraction jobs are running in parallel, and both jobs access table TXW_INDEX.
    Solution
    If possible, avoid running DART extractions in parallel.
    If you do plan to run such jobs in parallel, please consider the following points:
    In the DART Extract configuration, increase the value of the parameter "Maximum memory allocation for index (MB)" if possible. You can estimate reasonable values with the "File size worksheet" utility.
    Run parallel DART jobs on different application servers.
    As an alternative, please apply note 400195.
    It may help u.........
    Regards,
    Debjani.......

  • Sql@loader-704  and ORA-12154: error messages when trying to load data with SQL Loader

    I have a data base with two tables that is used by Apex 4.2. One table has 800,000 records . The other has 7 million records
    The client recently upgraded from Apex 3.2 to Apex 4.2 . We exported/imported the data to the new location with no problems
    The source of the data is an old mainframe system; I needed to make changes to the source data and then load the tables.
    The first time I loaded the data i did it from a command line with SQL loader
    Now when I try to load the data I get this message:
    sql@loader-704 Internal error: ulconnect OCISERVERATTACH
    ORA-12154: tns:could not resolve the connect identifier specified
    I've searched for postings on these error message and they all seem to say that SQL Ldr can't find my TNSNAMES file.
    I am able to  connect and load data with SQL Developer; so SQL developer is able to find the TNSNAMES file
    However SQL Developer will not let me load a file this big
    I have also tried to load the file within Apex  (SQL Workshop/ Utilities) but again, the file is too big.
    So it seems like SQL Loader is the only option
    I did find one post online that said to set an environment variable with the path to the TNSNAMES file, but that didn't work..
    Not sure what else to try or where to look
    thanks

    Hi,
    You must have more than one tnsnames file or multiple installations of oracle. What i suggest you do (as I'm sure will be mentioned in ed's link that you were already pointed at) is the following (* i assume you are on windows?)
    open a command prompt
    set TNS_ADMIN=PATH_TO_DIRECTOT_THAT_CONTAINS_CORRECT_TNSNAMES_FILE (i.e. something like set TNS_ADMIN=c:\oracle\network\admin)
    This will tell oracle use the config files you find here and no others
    then try sqlldr user/pass@db (in the same dos window)
    see if that connects and let us know.
    Cheers,
    Harry
    http://dbaharrison.blogspot.com

  • Getting ORA-22805 when trying to load XML file using SQLLDR

    I'm trying to learn the basics of XML since we'll be getting XML files in the near future. I'm using one of the sample schemas that comes with XMLSPY. I loaded this schema into an 11g Oracle DB using XMLSPY:
    <?xml version="1.0" encoding="UTF-8"?>
    <!-- edited with XML Spy v4.0 NT beta 1 build Jun 13 2001 (http://www.xmlspy.com) by Alexander Falk (Altova, Inc.) -->
    <schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:ipo="http://www.altova.com/IPO" targetNamespace="http://www.altova.com/IPO" elementFormDefault="unqualified" attributeFormDefault="unqualified">
         <annotation>
              <documentation>
    International Purchase order schema for Example.com
    Copyright 2000 Example.com. All rights reserved.
    </documentation>
         </annotation>
         <!-- include address constructs -->
         <include schemaLocation="address.xsd"/>
         <element name="purchaseOrder" type="ipo:PurchaseOrderType"/>
         <element name="comment" type="string"/>
         <complexType name="PurchaseOrderType">
              <sequence>
                   <element name="shipTo" type="ipo:Address"/>
                   <element name="billTo" type="ipo:Address"/>
                   <element ref="ipo:comment" minOccurs="0"/>
                   <element name="Items" type="ipo:Items"/>
              </sequence>
              <attribute name="orderDate" type="date"/>
         </complexType>
         <complexType name="Items">
              <sequence>
                   <element name="item" minOccurs="0" maxOccurs="unbounded">
                        <complexType>
                             <sequence>
                                  <element name="productName" type="string"/>
                                  <element name="quantity">
                                       <simpleType>
                                            <restriction base="positiveInteger">
                                                 <maxExclusive value="100"/>
                                            </restriction>
                                       </simpleType>
                                  </element>
                                  <element name="price" type="decimal"/>
                                  <element ref="ipo:comment" minOccurs="0"/>
                                  <element name="shipDate" type="date" minOccurs="0"/>
                             </sequence>
                             <attribute name="partNum" type="ipo:Sku"/>
                        </complexType>
                   </element>
              </sequence>
         </complexType>
         <simpleType name="Sku">
              <restriction base="string">
                   <pattern value="\d{3}-[A-Z]{2}"/>
              </restriction>
         </simpleType>
    </schema>
    Then I created an XMLType table:
    CREATE TABLE purchaseOrder OF XMLType
    XMLSCHEMA "ipo.xsd" ELEMENT "purchaseOrder"
    I'm trying to load the sample XML file ipo.xml into purchaseOrder using SQLLDR. This is ipo.xml:
    <?xml version="1.0"?>
    <!-- edited with XMLSPY v2004 rel. 4 U (http://www.xmlspy.com) by Mr. Nobody (Altova GmbH) -->
    <ipo:purchaseOrder xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ipo="http://www.altova.com/IPO" orderDate="1999-12-01" xsi:schemaLocation="http://www.altova.com/IPO
    ipo.xsd">
         <shipTo export-code="1" xsi:type="ipo:EU-Address">
              <ipo:name>Helen Zoe</ipo:name>
              <ipo:street>47 Eden Street</ipo:street>
              <ipo:city>Cambridge</ipo:city>
              <ipo:postcode>126</ipo:postcode>
         </shipTo>
         <billTo xsi:type="ipo:US-Address">
              <ipo:name>Robert Smith</ipo:name>
              <ipo:street>8 Oak Avenue</ipo:street>
              <ipo:city>Old Town</ipo:city>
              <ipo:state>AK</ipo:state>
              <ipo:zip>95819</ipo:zip>
         </billTo>
         <Items>
              <item partNum="833-AA">
                   <productName>Lapis necklace</productName>
                   <quantity>2</quantity>
                   <price>99.95</price>
                   <ipo:comment>Need this for the holidays!</ipo:comment>
                   <shipDate>1999-12-05</shipDate>
              </item>
              <item partNum="748-OT">
                   <productName>Diamond heart</productName>
                   <quantity>1</quantity>
                   <price>248.90</price>
                   <ipo:comment>Valentine's day packaging.</ipo:comment>
                   <shipDate>2000-02-14</shipDate>
              </item>
              <item partNum="783-KL">
                   <productName>Uncut diamond</productName>
                   <quantity>7</quantity>
                   <price>79.90</price>
                   <shipDate>2000-01-07</shipDate>
              </item>
              <item partNum="238-KK">
                   <productName>Amber ring</productName>
                   <quantity>3</quantity>
                   <price>89.90</price>
                   <ipo:comment>With no inclusions, please.</ipo:comment>
                   <shipDate>2000-01-07</shipDate>
              </item>
              <item partNum="229-OB">
                   <productName>Pearl necklace</productName>
                   <quantity>1</quantity>
                   <price>4879.00</price>
                   <shipDate>1999-12-05</shipDate>
              </item>
              <item partNum="128-UL">
                   <productName>Jade earring</productName>
                   <quantity>5</quantity>
                   <price>179.90</price>
                   <shipDate>2000-02-14</shipDate>
              </item>
         </Items>
    </ipo:purchaseOrder>
    This is what's in the control file:
    LOAD DATA
    INFILE *
    INTO TABLE purchaseOrder TRUNCATE
    xmltype(xmldata)
    FIELDS
    xmldata LOBFILE (CONSTANT ipo.xml)
    BEGINDATA
    0
    The load fails with:
    Record 1: Rejected - Error on table PURCHASEORDER.
    ORA-22805: cannot insert NULL object into object tables or nested tables
    Another question I have is, how do we know how many records (0's) to specify in the control file? In this case there's only one but when real files are used we won't know how many are in the file.
    Thanks for your help!

    The concept was "Don't use SQL*Loader to parse XML".
    You can use SQL*Loader to load an entire XML document into the DB. That is fine. You can do the same via BFILENAME to read in files from disk as well.
    If you want to parse XML, do that from within Oracle via PL/SQL and/or SQL. The solution depends upon your version of Oracle and what is good enough for you in terms of performance.
    So the basics are
    a) How am I getting the information?
    b) How am I getting in into Oracle?
    c) How do I want to parse it?
    As I see the schema, it only allows for one ipo:purchaseOrder node in the document, since that is the root node. If you have multiple in the incoming file, you no longer have valid XML, both per the schema and because you have no single root node. You have an XML fragment, which must be treated different.
    Just trying to understand the question since I now realize it does not agree with what the schema in your initial example shows.

  • Firefox goes into an endless loop with blue circular cursor at various times when trying to load a file.

    Firefox hangs up at times when I try to download a file. The hangup is evidenced by the Windows 7 spinning blue cursor going into an endless loop. The only way out if it is with "ctrl/alt/del". Sometimes I can cancel, and Firefox will be normal again, and other times I have to go on into "Taskmaster" and stop the process.

    Similar problem. An Email includes a URL, clicking on brings up a message including "click here" to link to an additional site.
    This bring up either the Windows7 rotating cursor and/or the message "stopped".
    I copied the "click here" address (another URL) and pasted it into the IE8 browser, which succeeded in displaying the information. It worked, to my surprise but it is clumsy. Do I have to remove Firefox (3.6.6) and use only IE8?
    Another system on my home network, using XP Home SP2, and FF 3.6.4 works fine in the same circumstances

  • Error when trying to load data from one cube to another

    Hi Friends
    I am getting an error when using extractor checker for datamart data source. The cube in question is compressed. this is what i get when i view the logs.
    SQL Error: 575-
    SQL0575N  View or materialized query table "SAPBWP./BIC/VZTCOOMC02F" cannot be used because.
    Please help
    Thanking you in anticipation
    Samuel

    Rememberme -
         No, the SAP_FACTVIEWS_RECREATE program cannot and will not uncompress the data. A fact view exists for every infocube which combines the E and F fact tables. You can see this view using SE11 -> View -> /bic/vxxxxf (where xxxxx is your infocube tech name). When you run this program this view is dropped and recreated thus eliminating any incosistencies that lead to the error posted in this thread.
    Hope this helps!

  • Help, error when trying to load sound file

    When i try to load a sound file like this
    AudioClip gong = getAudioClip(getDocumentBase(), "slow.wav");I get this error,
    java.lang.NullPointerException
        at java.applet.Applet.getDocumentBase(Applet.java:141)
        at collision.<init>(collision.java:30)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
        at java.lang.Class.newInstance0(Class.java:355)
        at java.lang.Class.newInstance(Class.java:308)
        at sun.applet.AppletPanel.createApplet(AppletPanel.java:786)
        at sun.applet.AppletPanel.runLoader(AppletPanel.java:715)
        at sun.applet.AppletPanel.run(AppletPanel.java:369)
        at java.lang.Thread.run(Thread.java:619)I don't know why i'm getting this error.
    Btw, the rest of my code is on the Maze game help thread.

    I am using the newest version of Java. I reverted it back to update 7, and it still didnt work.
    And for the API, i cant find out why it may return null, all it says is
    getDocumentBase
    public URL getDocumentBase()Gets the URL of the document in which this applet is embedded. For example, suppose an applet is contained within the document:
        http://java.sun.com/products/jdk/1.2/index.html
    The document base is:
        http://java.sun.com/products/jdk/1.2/index.html
    Returns:
    the URL of the document that contains this applet.
    See Also:
    getCodeBase()

  • I get no response when trying to load Targa files as an Image Sequence.  It has always worked in the past.

    I just upgraded from an earlier version of QT 7 Pro for Windows to the latest version (QT 7.6.9 Pro).  I have always had good results in QuickTime Pro importing Targa (.tga) image files rendered in Alias Maya as an Image Sequence, and then exporting those as a QuickTime .MOV.  But now when I go through the steps to import the image sequence, going to the folder and selecting the first image in the sequence, I get no response.  The second QT window does not open, and there is no sign that the import has taken place. I've downloaded the QT manual PDF, and there is nothing in there that would tell me anything I'm not doing already.
    Any help would be appreciated.
    Ken

    I would think that image size would always be available when there is an active document in Photoshop.  The only time I remember seeing messages like that where they should work was during the five month period when Adobe released CS6 with so many bugs which took Adobe five months to fix.  During those five month messages like that that should not have happen were common when action switch between documents.  Adobe would start processing the next Action step before the document switch completed, Any step that required an active document could fail with a mess stating the command is not available.
    Are you by some chance using CS6 version 13.0 CS6 without any updates.  Use Photoshop menu Help>About Photoshop.  If it shows CS6 version 13.0 you need to update CS6. .

  • Error when trying to load jar file (loadjava)

    I have been struggling with this issue for a few days. I read all the old threads and solutions online but none of them worked. I wrote some java stored procedures and have been trying to load the required jar files. The error message I keep getting is this:
    ORA-29532: Java call terminated by uncaught Java exception: oracle.aurora.server.tools.loadjava.ToolsError: Error during loadjava: Failures occurred during processing. Check trace file for details
    I have tried to load them using Enterprise Manager Console and the following:
    call dbms_java.loadjava(' -force -resolve
    c:\javacog\cognosClient.jar', ' -resolver "((* PUBLIC) (*
    SYS) )"')
    Any ideas? We are using Oracle 10gr2, and trying to load Cognos 8.3 SDK jar files. According to Cognos, Java 1.4 is supported.
    Edited by: user10406501 on Oct 8, 2008 2:26 PM

    Sorry to respond to an old message, I was just looking for the solution for the totally different problem.
    Key word 'Cognos' got me here.
    I've menage to load Cognos SDK onto Oracle 10.2.0.2 on Windows XP.
    I've used simple loadjava script. After that it requires some additional GRANTs, and it works.
    If you still are looking for the solution for this problem, respond to this message, and I'll post the scripts.
    Thomas

  • TS1398 I seem to be experiencing some technical difficulty when trying to load up my Facebook home page and also other people's FB home pages. My iPad initially starts to load the page, but then abruptly closes Safari. Any ideas on why/how to fix?

    My Safari abruptly closes when trying to load my Facebook home page or the home page of others. It seems like there is too much info trying to load so it just shuts down. Any ideas on how to fix?

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    See also http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Extension_issues
    Do a malware check with a few malware scan programs.<br />
    You need to use all programs because each detects different malware.<br />
    Make sure that you update each program to get the latest version of the database before doing a scan.<br />
    * http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    * http://www.superantispyware.com/ - SuperAntispyware
    * http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    * http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    * http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    See also "Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked and [[Searches are redirected to another site]]

  • How do I get rid of "Your Free Trial Period has ended" Screen when trying to open pdf in the Reader

    Hi
    How do I get rid of the "Your Free Trial Period has ended"  Screen when trying to open a pdf in Adobe Reader?
    I had a trial of Dreamweaver but it was too complicated for me.
    There was no where to cancell the free trail so I let it run its course and expire.  It then deleted the programs which is fine (I didn't want to buy them) but it also deleted my Acrobat Reader.
    I have re-installed that but when I try to open a pdf, all I get is the "Your Free Trial Period has ended" screen which only allows you to buy or exit and them exits all together.
    Needless to say I am very UNIPRESEED with Adobe for messing up my programs and now they want to charge me $29 dollars to sort out a problem they created.
    Can anyone help me to sort out this very anoying problem?
    Regards
    David

    Hi
    Thank you for the reply.
    No I have not deleted anything, this all happened automatically when the trial period ended.
    Other than an old version of Photoshop (version 7, for which I do have a serial number, I don't have any other Adobe software - just the reader which is now not working)
    I was trialling Dreamwever but couldn't get started with it so am paying someone else to set up the website using Wordpress.
    David

  • Having used Distort crashes CS4 when trying to open additional files

    I have a strange problem that I've started experiencing since upgrading my PC. I was previously running CS4 and Lightroom 2 without problems on Windows XP Pro 32 bit - I recently upgraded to new hardware and Windows Vista 64 bit so that I could use more RAM as I was regularly receiving running out of RAM messages when working on large print resolution files.
    My current setup is:
    P6T Motherboard
    Intel Core i7 CPU 2.67 GHz
    12 GB RAM
    Windows Vista Ultimate 64 bit
    NVIDIA GeForce 880 GTS video card
    One entire physical disk (70 GBs) solely as a scratch disk
    More than half of C drive free
    Other disks with free space in scratch disk list
    I have narrowed it down to a specific activity:
    1) From Lightroom I choose 'Edit in Photoshop' (a RAW file) I could open more than one file at this point, no problem yet
    2) Once a file or files are opened I choose to implement a Distort/Twirl (I have a very specific reason for using this command, developing elements for other creative works)
    3) Having performed a Twirl distortion, I then choose to open another RAW file from Lightroom, choose Edit in Photoshop - Photoshop then just hangs, without opening the file and I see the message that it has stopped responding. I then have to forcibly end Photoshop and reopen it
    4) This still occurs if from Lightroom, I choose 'Show in Explorer' and then try to open the RAW file by itself, Photoshop stops responding
    I seem to get very good performance on other things I've tried. For example, choosing 22 files with varying focal lengths to Merge to Panorama in Photoshop - goes without a hitch.... Again it seems specifically linked to having performed the distort effect. Also tried Distort/Wave and the same occurred, stopped responding when trying to open another file.
    Have deleted prefs files, reinstalled Lightroom etc, turned off Open GL, twiddled with the cache and RAM levels, turned off export clipboard etc... still the same.
    Any ideas?
    Can anyone replicate this?

    It hangs.... That is the application window stays up, but nothing further happens and the top information bar says the application is not responding. I don't think it has anything to do with Lightroom...
    I have narrowed this problem down to being specifically related to the 64 bit version of CS4 Photoshop Extended. I have tested the same procedure in 32 bit Photoshop without incident.
    I have to say this is pretty distressing as the procedure I am trying to carry out is at the heart of my original motivation to take the plunge and do the whole 64 bit upgrade, particularly being able to access all the RAM I now have. Using the 32 bit version in many ways plunges me back to where I started... :-(
    I have spent the whole of today uninstalling the whole Creative Suite, running the cleaning utilites etc, reinstalling, uninstalling (many, many times with various problems with the installation process) and still have the same problem (although now, I cannot install Acrobat Pro, the installation fails - but that's another issue). I currently have Lightroom2 uninstalled and am experiencing the exact same problem.
    This is it in a nutshell:
    1) Open any RAW file in Photoshop 64 bit (I am opening.RAF files)
    2) Apply a Distort/Twirl to it
    3) TRY to open another RAW file
    At this point, the file will not open and Photoshop will stop responding - requiring a forcible shut down and the loss of any unsaved work
    Could it be something related to Adobe Camera RAW? I have now found that if I open a photoshop file after performing a Distort/Twirl for example, the problem does not occur. So it perhaps points to the ACR app?

  • Apps problem! When trying to load apps I keep getting a dialogue box: 'Password will be sent in the clear' what does this mean?

    When trying to load my recently puchased Apps this is the message that appears---Please adavise. Thank you. Richard  (New Boy on the Block)

    The IP address shown is 192.168.0.1:80. This is an address on your local network and is probably the address of your router. The port number shown is port 80 which is the standard HTTP (web server) port. It looks like your router thinks that you are attempting to open an administrative browser session with it. Since this is incorrect your router or possibly your iPad may be having some problem. Try restarting your router by removing power to it for 30 seconds and restarting. I would also suggest resetting your iPad.
    Reset iPad: Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears - ignore the power off slider.

  • When trying to import music files I get a error message that says "importer reported a generic error" I'm using windows 7, DellPC, installed premiere elements 13 2 days ago. Also when previewing and editing video,screen looks great but when I transfer to

    When trying to import music files I get an error message Thea says "importer reported a generic error". Also when editing video, screen views look great but when I transfer to PC or flash drive video quality is very poor. Any suggestions?

    chansen232
    Premiere Elements 13 on Windows 7 (presumed 64 bit).....
    1. Music files and error message...are these music files from iTunes? If so, convert them to .wav in iTunes to convert them to wav version, and then import the .wav version into Premiere Elements 13 project using Premiere Elements 13 Expert workspace's Add Media/Files and Folders/Project Assets from where you drag the wav version to the Soundtrack.
    The following are the instructions for the iTunes converting
    http://support.apple.com/en-us/HT1550
    If any problems with the instructions, please let me know, and I will go through them with you.
    2. How you set up the project and the export settings that you select greatly influence your end product result.
    a. What are the properties of the source media?
    b. What project preset did you (manually) or the project (automatically) set to match the properties of the source media.
    (If you do not know, please tell us what you see for the readings of Editing Mode, Timebase, Frame Size, Pixel Aspect Ratio - even
    if the fields look grayed out.)
    c. For your export...Publish+Share/Computer/and then what? And what preset? Did you use the default settings of the preset or did you
    customize the export settings of the preset under the preset's Advanced Button/Video Tab and Audio Tab?
    Let us start here and then decide what next.
    Thanks.
    ATR

Maybe you are looking for