Urgent help please: error at bi_checkconfig when validate OLAP metadata....

dear friends,
i used oracle database 10g Release 1 which i've patched it with Oracle 10.1.04 patchset, Oracle JDeveloper 10g (Version 10.1.2.1.0, build 1913) and bibeans 10.1.2.1 to build Business Intelligence based Application.
first, i create OLAP metadata ( like: dimensions, level, cube, measures ) with Oracle Enterprise Manager Database Control, i design my cube in star schema format and store my OLAP metadata in COBA_OLAP schema that i've created before.
After all my job with OLAP metadata finished, then i go to command prompt and validate my OLAP metadata with utility that brought by Oracle BIBeans 10.1.2.1 called bi_checkconfig
i validate my OLAP metadata by executing this command from command prompt:
C:\jdev1012\bibeans\bi_checkconfig>bi_checkconfig -h localhost -po 1521 -sid kuliah -u COBA_OLAP -p wysiwyg -q
BI Beans Diagnostics(v1.0.2.0) 10/18/05
==============================================================================================================
JDEV_ORACLE_HOME.......................................................................................................     = C:\jdev1012
JAVA_HOME......................................................................................................................     = C:\jdev1012\jdk\jre
JDeveloper version................................................................................................................     = 10.1.2.1.0.1913
BI Beans release description.................................................................................................     = BI Beans 10.1.2 Production Release
BI Beans component number................................................................................................     = 10.1.2.67.0
BI Beans internal version.......................................................................................................     = 3.2.2.0.24.2
Connect to database.............................................................................................................     = Successful
JDBC driver version...............................................................................................................     = 10.1.0.42
JDBC JAR file location..........................................................................................................     = C:\jdev1012\jdbc\lib
Database version..................................................................................................................     = 10.1.0.4.0
OLAP Catalog version............................................................................................................     = 10.1.0.4.0
OLAP AW Engine version......................................................................................................     = 10.1.0.4.0
OLAP API Server version.......................................................................................................     = 10.1.0.4.0
BI Beans Catalog version.......................................................................................................     = N/A; not installed in COBA_OLAP
OLAP API JAR file version.....................................................................................................     = "10.1.0.5.0"
OLAP API JAR file location....................................................................................................     = C:\jdev1012\jdev\lib\ext
Load OLAP API metadata .....................................................................................................     = unsuccessful
Error: An error occurred during olap API metadata retrieval. This is probably caused by inconsistent metadata.
my log file at C:\jdev1012\bibeans\bi_checkconfig\bi_error.log looks like this :
============================================================================
1) An error occurred during olap API metadata retrieval. This is probably caused by inconsistent metadata.
1) An error occurred during olap API metadata retrieval. This is probably caused by inconsistent metadata.
============================================================================
oracle.express.ExpressServerExceptionError class: Unknown Error
Server error descriptions:
INI: A system failure occurred., Generic at TxsOqConnection::getDefaultDatabase
     at BICheckConfig.checkConnection(BICheckConfig.java:277)
     at BICheckConfig.main(BICheckConfig.java:1367)
i really need help to fix this problem, any kind of solutions will be very appreciated...
best regards,
amiril

Hi
i was using AWM since 9i just because it creates OLAP metadata with a new API called CWM2, and Oracle Enterprise Manager was using a propietary API .
With AWM 10.1.0.4 building your OLAP metadata is very simple, you can define your Dimensions, cubes, measures and even you can load your data from your source system.
You can refer to the Oracle® OLAP Application Developer's Guide where you can find more information on this tool.
And relative to your error i will recommend that you build on a dimension-by-dimension basis and try to validate your OLAP Metadata.
Regards

Similar Messages

  • Urgent Help Please, Error with Nested Table

    Hello All,
    I'm trying to create data mining models based on some medical data. I have combined two tables (Patients) and (tumors) into one table (cancer_patients). In the (cancer_patients) table there is one column (tumors) as nested table column. So I got the following error (ORA-22913) about the nested table. I need an advice about how to fix this error in ODM please
    This is the code of the tables
    CREATE TABLE "DSS2_MINING"."PATIENTS"
       (     "PATIENT_ID" VARCHAR2(10 BYTE) NOT NULL ENABLE,
         "REGISTRY_ID" NUMBER(10,0),
         "RACE" VARCHAR2(2 BYTE),
         "***" VARCHAR2(1 BYTE),
         "BIRTHDATE_YEAR" NUMBER(4,0),
         "NUMBER_OF_PRIMARIES" NUMBER(1,0),
         "VITAL_STATUS_RECORD" VARCHAR2(1 BYTE),
         "CAUSE_OF_DEATH" VARCHAR2(5 BYTE),
         "SURVIVAL_TIME" VARCHAR2(4 BYTE),
         "SURVIVAL_TIME_FINAL" NUMBER,
         "SURVIVAL_VARIABLE" VARCHAR2(1 BYTE),
          CONSTRAINT "PATIENTS_PK" PRIMARY KEY ("PATIENT_ID");
    CREATE TABLE "DSS2_MINING"."TUMORS"
       (     "TUMOR_ID" NUMBER NOT NULL ENABLE,
         "PATIENT_ID" VARCHAR2(10 BYTE),   -- FK
         "SEER_RECORD_NUMBER" NUMBER,       -- This column contain a sequance number of the records for each patients
         "MARITAL_STATUS" VARCHAR2(1 BYTE),
         "AGE" NUMBER,
         "DATE_OF_DIAGNOSIS" DATE,
         "HISTOLOGY_GROUP" VARCHAR2(2 BYTE),
         "BEHAVIOR" VARCHAR2(1 BYTE),
         "GRADE" VARCHAR2(1 BYTE),
         "DERIVED_AJCC_STAGE_GROUP" VARCHAR2(2 BYTE),
         "STAGE_OF_CANCER" VARCHAR2(2 BYTE),
         "RADIATION" VARCHAR2(1 BYTE),
         "CS_SCHEMA" VARCHAR2(2 BYTE),
         "FIRST_PRIMARY_IND" VARCHAR2(1 BYTE),
         "TUMOR_SIZE" NUMBER(4,1),
         "TUMOR_EXTENSION" VARCHAR2(2 BYTE),
         "LYMPH_NODES" VARCHAR2(1 BYTE),
         "NODES_POSITIVE" NUMBER,
         "ESTROGEN" VARCHAR2(3 BYTE),
         "PROGESTERONE" VARCHAR2(3 BYTE),
         "SURGERY" VARCHAR2(2 BYTE),
          CONSTRAINT "TUMORS_PK" PRIMARY KEY ("TUMOR_ID");
    create or replace type tumor_object AS
    object(
    tumor_id VARCHAR2(1),  
    marital_status VARCHAR2(1),  
    age NUMBER(3),  
    date_of_diagnosis DATE, 
    cs_schema VARCHAR2(2),  
    histology_group VARCHAR2(2),  
    behavior VARCHAR2(1),  
    grade VARCHAR2(1),  
    first_primary_ind VARCHAR2(1),  
    tumor_size NUMBER(4,   1),  
    tumor_extension VARCHAR2(2),  
    lymph_nodes VARCHAR2(1),  
    nodes_positive NUMBER(4),  
    surgery VARCHAR2(2),
    radiation VARCHAR2(1)
    create or replace type tumor_table as table of tumor_object;
      CREATE TABLE "DSS2_MINING"."CANCER_PATIENTS"
       (     "PATIENT_ID" VARCHAR2(10 BYTE) NOT NULL ENABLE,
         "RACE" VARCHAR2(2 BYTE),
         "***" VARCHAR2(1 BYTE),
         "NUMBER_OF_PRIMARIES" NUMBER(1,0),
         "TUMORS" "DSS2_MINING"."TUMOR_TABLE" ,
         "VITAL_STATUS_RECORD" VARCHAR2(1 BYTE),
         "CAUSE_OF_DEATH" VARCHAR2(5 BYTE),
         "SURVIVAL_TIME_FINAL" NUMBER,
         "SURVIVAL_VARIABLE" VARCHAR2(1 BYTE),
          CONSTRAINT "CANCER_PATIENTS_PK" PRIMARY KEY ("PATIENT_ID")
       NESTED TABLE "TUMORS" STORE AS "TUMORS_STOR_TABLE"Then, I have transferred the data using
    INSERT
      INTO CANCER_PATIENTS
      SELECT  PATIENT_ID,
              RACE,
              NUMBER_OF_PRIMARIES,
               SELECT  CAST(
                            COLLECT(
                                    TUMOR_OBJECT(
                                                 TUMOR_ID,
                                                 MARITAL_STATUS,
                                                 AGE,
                                                 DATE_OF_DIAGNOSIS,
                                                 CS_SCHEMA,
                                                 HISTOLOGY_GROUP,
                                                 BEHAVIOR,
                                                 GRADE,
                                                 FIRST_PRIMARY_IND,
                                                 TUMOR_SIZE,
                                                 TUMOR_EXTENSION,
                                                 LYMPH_NODES,
                                                 NODES_POSITIVE,
                                                 SURGERY ,
                                                 RADIATION
                            AS TUMOR_TABLE
                 FROM  "TUMORS" T
                 WHERE T.PATIENT_ID = P.PATIENT_ID
              VITAL_STATUS_RECORD,
              CAUSE_OF_DEATH,
              SURVIVAL_TIME_FINAL,
              SURVIVAL_VARIABLE
        FROM  PATIENTS PThanks
    A.L
    Edited by: user9003901 on Nov 30, 2010 12:23 AM

    Hi
    i was using AWM since 9i just because it creates OLAP metadata with a new API called CWM2, and Oracle Enterprise Manager was using a propietary API .
    With AWM 10.1.0.4 building your OLAP metadata is very simple, you can define your Dimensions, cubes, measures and even you can load your data from your source system.
    You can refer to the Oracle® OLAP Application Developer's Guide where you can find more information on this tool.
    And relative to your error i will recommend that you build on a dimension-by-dimension basis and try to validate your OLAP Metadata.
    Regards

  • Urgent help please: Error on opening MW project

    Hi
    I have a similar error message to the one in this thread
    error loading project
    One day I was using MW and all was fine, the next day it blows up when trying to open a project. We use CVS - is it possible that the NullPointerException would occur if a configuration file had been removed or altered outside of MW (although I have never done this)?
    Where can I look to get more information on what MW is choking on?
    Many thanks
    James

    Don
    Thanks for your help. This occurs with 9.0.4.4
    I have filed a TAR because this now urgent for us (holding up the development team).
    I think that Karen Moore has looked at the problem in the related post and I hope that she gets the chance to look at this too.
    James

  • Urgent help please, I made an file with the size 1024x768, then i made two folios, one for retina 2048x1536 and one for non retina 1024x768, i have alot of video content in it, everything works perfect on my retina ipad, but when i open it on ipad 2 an er

    Urgent help please, I made an file with the size 1024x768, then i made two folios, one for retina 2048x1536 and one for non retina 1024x768, i have alot of video content in it, everything works perfect on my retina ipad, but when i open it on ipad 2 an error appears on the pages with video content?

    its in german:
    der Vorgang könnte nicht abgeschlossen werden.
    something like the process coundnt be completed

  • b font color ='red' Java JDBC and Oracle DB URGENT HELP PLEASE /font /b

    Hello, I am a newbie. I'm very interested in Java in relation to JDBC, Oracle and SAP.I am trying to connect to an Oracle DB and I have problems to display the output on the consule in my application. What am I doing wrong here . Please help me. This is my code: Please Explain
    import java.sql.*;
    import java.sql.DriverManager;
    import java.sql.Connection;
    public class SqlConnection {
         public static void main(String[] args) {
              Class.forName("oracle.jdbc.driver.OracleDriver"); //Loading the Oracle Driver.
              Connection con = DriverManager.getConnection
              ("jdbc:orcle:thin:@34.218.5.3:1521:ruka","data","data"); //making the connection.
              Statement stmt = con.createStatement ();// Sending a query to the database
              ResultSet rs = stmt.executeQuery("SELECT man,jean,test,kok FROM sa_kostl");
              while (rs.next()) {
                   String man = rs.getString("1");
                   String jean = rs.getString("2");
                   String test = rs.getString("3");
                   String kok = rs.getString("4");
                   System.out.println( man, jean, test,kok );//here where my the
                                                 //compiler gives me errors
              stmt.close();
              con.close();
    }

    <b><font color ='red'>Java JDBC and Oracle DB URGENT HELP PLEASE</font></b>Too bad your attempt at getting your subject to have greater attention failed :p

  • Just bought Elements 13. Input serial number (starting 1057), which is not recognised and the installation stalls here. Urgent help please...

    Just bought Elements 13. Input serial number (starting 1057), which is not recognised and the installation stalls here. Urgent help please...

    Maryrhire910 I am sorry that you are facing difficulty downloading and installing Photoshop Elements 12.  Are you downloading the installation files from Download Photoshop Elements products | 13, 12, 11, 10?  If so what specific error are you receiving?

  • Load XML in intranet ? urgent help please...

    Dear friends, I need urgent help: I have a CAYIN screen (which lets me display evetns, etc) and gives me the option of loading/displaying a FLASH (SWF) file, well, I need this SWF to load some XML data ("texto.xml") but  seems that when the CAYIN program which executes flash, does not allow the SWF to find the XML in the same folder...
    Then I tried many ways to load the XML file with no success till now. Some tries are :
    obj_xml.load("\\192.168.0.100\media\texto.xml")
    obj_xml.load("\media\texto.xml")
    obj_xml.load("texto.xml")
    obj_xml.load("../media/texto.xml")
    obj_xml.load("\\media\texto.xml")
    obj_xml.load("file:\\192.168.0.100\media\texto.xml")
    obj_xml.load("..\\192.168.0.100\media\texto.xml")
    I guess I am writting something wrong or forgetting something. Would anyone please help me ? because these files are in an internal server "192.168.0.100" (intranet).
    Urgent help please, thanks in advance,

    if the swf is in a directory with subdirectory media which contains texto.xml, use:
    obj_xml.load("media/texto.xml")

  • HELP WITH IPHONE 4S IPHONE URGENT HELP PLEASE?

    IPHONE URGENT HELP PLEASE?
    for the whole day my network has been 'Searching...'
    i have tried airplane mode on and off, turning my phone on and off and network reset and taking sim in and out.
    so i backed up my phone and restored to factory settings as i don't think i did the option of choosing manually select a carrier.
    my network is still 'searching...' and it won't let my wifi to allow me to activate my iphone. i have tried to connect to itunes and it still won;t work.
    i keep getting a message about no activation server.
    this is a new iphone. i got it replaced on saturday.
    PLEASE SOMEONE HELP ME!!!!!!!!!!!!!!!!!!!!!!!!!!!

    Hello,
    If this is a new iPhone then you will have free access, as all iPhones come with it, to Apple support. I would have them take care of an issue like this.
    Hope this helps.
    Regards,
    Jake

  • HELP PLEASE - ERROR ON PANSONIC P50VT20B AND Panso...

    HELP PLEASE - ERROR ON PANSONIC P50VT20B AND Panasonic HOME CINEMA SC-BTT775.
    the moment i login using the tv or blu-ray i cannot choose anything other than ' Back to homepage ' message which is displayed under my contactlist on tv... at times it says too many contacts... Kindly help... the camera is skyoe ty-cc10w for panasonic tv's and blu-ray...

    Same issue

  • Urgent help please.. one of the jsp file is raising an error.. how to debug

    Following is the error raised from file cnytdsum.jsp.
    java.lang.ArrayIndexOutOfBoundsException: 4 at oa_html._cnytdsum._jspService(_cnytdsum.java:2263) at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119) at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417) at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267) at oracle.jsp.JspServlet.internalService(JspServlet.java:186) at oracle.jsp.JspServlet.service(JspServlet.java:156) at javax.servlet.http.HttpServlet.service(HttpServlet.java:588) at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456) at org.apache.jserv.JServConnection.run(JServConnection.java:294) at java.lang.Thread.run(Thread.java:534)
    I tried enabling the FND: Diagnostics to ON and capturing the log at the Statement level. But not sure where are the out.println statements in this cnytdsum.jsp is printing? Thanks for your help.
    Error raised from the HTML responsibility 'Sales Force Compensation Super uesr' and Transaction->reports for one particular salesperson.
    THanks

    Are you sure that your changed file is getting picked up for the execution? Where are you putting the modified file and make sure to bounce apache after putting the modified file?
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                           

  • Firewire Port not working, URGENT help please¡¡¡

    Hello People, i´ve just got a new Mac Mini  last week, and i´ve been trying to get my Alesis MasterControl audio interface, and is just a complete mess.
    This happened right after i´ve upgraded to 10.8.3 so i don´t know, the weird thing is that if i connect my old iBook to the Mac Mini the FW800 port works, but everytime i connect the audio interface, nothing happens, also the drivers from alesis, are up to date. i first thought about the port of the Mixer went bad, but it has 2 and non of them works, also thought about the cable but the same cable works when i connect my iBook, and the mixer is not bus powered, it has it´s own power supply.
    Needless to say i´ve already done the usual reset PRAM, turn of the Mac unplugged for 30 hour to reset the bus. etc.
    This is the usual firewire only system log that i get:
    31/03/13 08:01:20.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in now active, GUID 003ee1fffe88dc6a; max speed s800.
    31/03/13 08:01:30.000 kernel[0]: Alesis Firewire - 3.5.6.11675 (x86_64) Aug 16 2011 01:20:23
    31/03/13 11:33:23.529 system_profiler[528]: SPFWR ERROR: FireWire bus may be unstable. Other FireWire devices may be present.
    31/03/13 11:35:43.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 11:38:55.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 11:42:08.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 11:44:39.124 CleanMyMacHelperTool[583]: Mounted devices (
        "/Volumes/AlesisFirewire-3.5.3.8671"
    31/03/13 11:44:39.146 CleanMyMacHelperTool[583]: Wont clean /Volumes/AlesisFirewire-3.5.3.8671 because disk image
    31/03/13 11:44:39.148 CleanMyMacHelperTool[583]: Mounted devices (
        "/Volumes/AlesisFirewire-3.5.3.8671"
    31/03/13 11:44:39.149 CleanMyMacHelperTool[583]: Wont clean /Volumes/AlesisFirewire-3.5.3.8671 because disk image
    31/03/13 11:44:52.727 coreservicesd[62]: Application App:"AlesisFirewireUninstaller" [ 0x0/0x7f07f]  @ 0x0x7fb5c8c30050 tried to be brought forward, but isn't in fPermittedFrontASNs ( ( ASN:0x0-0x80080:) ), so denying.
    31/03/13 11:44:52.727 WindowServer[85]: [cps/setfront] Failed setting the front application to AlesisFirewireUninstaller, psn 0x0-0x7f07f, securitySessionID=0x186a5, err=-13066
    31/03/13 11:47:28.533 CleanMyMacHelperTool[656]: Mounted devices (
        "/Volumes/AlesisFirewire-3.5.3.8671",
        "/Volumes/AlesisFirewire-3.5.6.11675"
    31/03/13 11:47:28.544 CleanMyMacHelperTool[656]: Mounted devices (
        "/Volumes/AlesisFirewire-3.5.3.8671",
        "/Volumes/AlesisFirewire-3.5.6.11675"
    31/03/13 11:49:26.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 11:52:39.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 11:57:22.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in now active, GUID 003ee1fffe88dc6a; max speed s800.
    31/03/13 11:57:34.000 kernel[0]: Alesis Firewire - 3.5.3.8671 preliminary - x86_64 CJ - May  3 2010 02:43:28
    31/03/13 11:58:36.982 com.apple.launchd.peruser.501[155]: ([0x0-0x1d01d].tc.tctechnologies.AlesisFirewire.controlpanel[238]) Job appears to have crashed: Abort trap: 6
    31/03/13 11:58:37.252 ReportCrash[242]: Saved crash report for AlesisFirewire Control Panel[238] version 3.5.3 (3.5.3.8671) to /Users/m1kygarcia/Library/Logs/DiagnosticReports/AlesisFirewire Control Panel_2013-03-31-115837_Mac-mini-de-Miguel.crash
    31/03/13 11:58:39.831 system_profiler[267]: SPFWR ERROR: FireWire bus may be unstable. Other FireWire devices may be present.
    31/03/13 11:58:50.676 com.apple.launchd.peruser.501[155]: ([0x0-0x23023].tc.tctechnologies.AlesisFirewire.controlpanel[274]) Job appears to have crashed: Abort trap: 6
    31/03/13 11:58:50.837 ReportCrash[242]: Saved crash report for AlesisFirewire Control Panel[274] version 3.5.3 (3.5.3.8671) to /Users/m1kygarcia/Library/Logs/DiagnosticReports/AlesisFirewire Control Panel_2013-03-31-115850_Mac-mini-de-Miguel.crash
    31/03/13 11:58:53.638 system_profiler[277]: SPFWR ERROR: FireWire bus may be unstable. Other FireWire devices may be present.
    31/03/13 11:59:09.747 CleanMyMacHelperTool[300]: Mounted devices (
        "/Volumes/AlesisFirewire-3.5.6.11675"
    31/03/13 11:59:09.905 CleanMyMacHelperTool[300]: Wont clean /Volumes/AlesisFirewire-3.5.6.11675 because disk image
    31/03/13 11:59:09.906 CleanMyMacHelperTool[300]: Mounted devices (
        "/Volumes/AlesisFirewire-3.5.6.11675"
    31/03/13 11:59:09.907 CleanMyMacHelperTool[300]: Wont clean /Volumes/AlesisFirewire-3.5.6.11675 because disk image
    31/03/13 12:00:47.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in now active, GUID 003ee1fffe88dc6a; max speed s800.
    31/03/13 12:00:59.000 kernel[0]: Alesis Firewire - 3.5.6.11675 (x86_64) Aug 16 2011 01:20:23
    31/03/13 12:01:56.720 system_profiler[269]: SPFWR ERROR: FireWire bus may be unstable. Other FireWire devices may be present.
    31/03/13 12:05:40.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 12:08:52.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 12:12:42.277 AlesisFirewire Control Panel[245]: -_continuousScroll is deprecated for NSScrollWheel. Please use -hasPreciseScrollingDeltas.
    31/03/13 12:12:42.277 AlesisFirewire Control Panel[245]: -deviceDeltaX is deprecated for NSScrollWheel. Please use -scrollingDeltaX.
    31/03/13 12:12:42.278 AlesisFirewire Control Panel[245]: -deviceDeltaY is deprecated for NSScrollWheel. Please use -scrollingDeltaY.
    31/03/13 12:13:53.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 12:25:29.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in now active, GUID 003ee1fffe88dc6a; max speed s800.
    31/03/13 12:25:38.000 kernel[0]: Alesis Firewire - 3.5.6.11675 (x86_64) Aug 16 2011 01:20:23
    31/03/13 12:28:30.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 12:28:33.906 system_profiler[273]: SPFWR ERROR: FireWire bus may be unstable. Other FireWire devices may be present.
    31/03/13 12:31:41.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 12:35:16.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in now active, GUID 003ee1fffe88dc6a; max speed s800.
    31/03/13 12:35:26.000 kernel[0]: Alesis Firewire - 3.5.6.11675 (x86_64) Aug 16 2011 01:20:23
    31/03/13 12:37:53.513 system_profiler[266]: SPFWR ERROR: FireWire bus may be unstable. Other FireWire devices may be present.
    31/03/13 12:39:36.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in now active, GUID 003ee1fffe88dc6a; max speed s800.
    31/03/13 12:39:49.000 kernel[0]: Alesis Firewire - 3.5.6.11675 (x86_64) Aug 16 2011 01:20:23
    31/03/13 12:42:55.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: 53 bus resets in last 3 minutes.
    31/03/13 12:46:50.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: 68 bus resets in last 3 minutes.
    31/03/13 13:01:30.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in now active, GUID 003ee1fffe88dc6a; max speed s800.
    31/03/13 13:01:41.000 kernel[0]: Alesis Firewire - 3.5.6.11675 (x86_64) Aug 16 2011 01:20:23
    31/03/13 13:05:27.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: 79 bus resets in last 3 minutes.
    31/03/13 13:06:31.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 13:09:43.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 13:13:31.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in now active, GUID 003ee1fffe88dc6a; max speed s800.
    31/03/13 13:13:45.006 com.apple.kextd[11]: Can't load /System/Library/Extensions/IOFireWireIP.kext - ineligible during safe boot.
    31/03/13 13:13:45.008 com.apple.kextd[11]: Load com.apple.iokit.IOFireWireIP failed; removing personalities from kernel.
    31/03/13 13:13:54.818 com.apple.kextd[11]: Can't load /System/Library/Extensions/AlesisFirewire.kext - ineligible during safe boot.
    31/03/13 13:13:54.823 com.apple.kextd[11]: Load tc.tctechnologies.driver.AlesisFirewire failed; removing personalities from kernel.
    31/03/13 13:13:56.372 com.apple.kextd[11]: Can't load /System/Library/Extensions/AlesisFirewire.kext - ineligible during safe boot.
    31/03/13 13:13:56.375 com.apple.kextd[11]: Load tc.tctechnologies.driver.AlesisFirewire failed; removing personalities from kernel.
    31/03/13 13:15:40.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 13:18:46.763 com.apple.kextd[11]: Can't load /System/Library/Extensions/IOFireWireIP.kext - ineligible during safe boot.
    31/03/13 13:18:46.768 com.apple.kextd[11]: Load com.apple.iokit.IOFireWireIP failed; removing personalities from kernel.
    31/03/13 13:18:46.797 com.apple.kextd[11]: Can't load /System/Library/Extensions/AlesisFirewire.kext - ineligible during safe boot.
    31/03/13 13:18:46.800 com.apple.kextd[11]: Load tc.tctechnologies.driver.AlesisFirewire failed; removing personalities from kernel.
    31/03/13 13:18:50.775 system_profiler[221]: SPFWR ERROR: FireWire bus may be unstable. Other FireWire devices may be present.
    31/03/13 13:18:52.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 13:21:03.488 system_profiler[235]: SPFWR ERROR: FireWire bus may be unstable. Other FireWire devices may be present.
    31/03/13 13:22:37.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 13:24:07.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in now active, GUID 003ee1fffe88dc6a; max speed s800.
    31/03/13 13:24:19.000 kernel[0]: Alesis Firewire - 3.5.6.11675 (x86_64) Aug 16 2011 01:20:23
    31/03/13 13:31:00.926 system_profiler[316]: SPFWR ERROR: FireWire bus may be unstable. Other FireWire devices may be present.
    31/03/13 13:33:03.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: 134 bus resets in last 3 minutes.
    31/03/13 13:35:11.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 13:38:24.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 13:41:36.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 13:44:48.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 13:58:13.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 14:01:25.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    Can somebody help, please i´d gladly appreciate it.

    I have this
    System Profiler[170]
    SPFWR ERROR: FireWire bus may be unstable. Other FireWire devices may be present.
    & this
    kernel FireWire (OHCI) Lucent ID 5901 built-in: no valid selfIDs for more than 3 minutes after bus reset.
    Pls, help!!

  • URGENT HELP PLEASE (MY N73 sometimes do not recive...

    i am facing this problem with my nokia n73 , sometimes if i try to open the inbox from the main window (i click on messages) , the inbox will not opened it will stay on the main window and if there is any one how sent me a message it will not be delivered even no delivery report will be shown on the sender mobile , but if i turn off then turn it on all the messages will be display, please i need your urgent help, because i send my mobile to nokia store to install a new software just before one month. because it used to hang when i use the camera.

    hi! i went to nokia yesterday and they said that the only solution is to upgrade the software but you need to do a back up coz all the data will be lost. My phone is good condition now and i can received messages without restarting my phone over and over again...
    give me also a update on after you send it to nokia center...for upgrading new software.

  • Urgent Help! Errors in source system(RSM     340)

    Need urgent help. Issue in production.
    I added fields to the COPA datasource, by changing the operating concern. I recreated the datasource with the same name replicated into BW & ran delta again. The whole procedure worked fine in Dev & Quality but in production it gives me the below error. I thought its a delta issue so I deleted the data & try reload but still same issue. Below is the error. I checked the connection with R3. its an ok. All other loads work fine. Before deleting delta, it gives below error & when you rerun, it finishes with zero records. I also tried activating update, transfer & ods & cube in BW. I also asked functional guy to check operating concern & its active. kindly help
    Errors in source system     RSM     340
    Error message from the source system
    Diagnosis
    An error occurred in the source system.
    System Response
    Caller 09 contains an error message.

    Hi PK,
    caller 09 error mainly because of source(target system) and destination(bw system) not configured correctly.
    i think you get the error message as follows. file is in the client workstation as like.
    better you contact basis people. they will resolve this.
    hope this help you
    Regards
    Harikrishna N

  • Issue with shared services - Need Urgent Help please!!

    Hello Experts
    One of my customer has installed a new instance of oracle and copied all the schemas and data over to the new instance.
    Now when they bring up shared services, have lost all our provisioning. None of the projects are recognized by shared serices and gets the following error when we try to bring up a user
    'xxxxx' is not a recognized Shared Services project. Please contact your adminstrator
    Is there something we need to do to restore Shared Services to its original state?
    Thanks in advance.
    Regards,
    Sonu
    Edited by: 637223 on Jan 20, 2009 2:19 AM

    hi,
    I doubt that "creating a new instance of oracle and copied all the schemas and data over to the new instance" will register the project with shared service and thats why giving error. Because when you install shared service, it asks you about the database name (oracle in your case) to register with. So even if you overwrite that database by new instance it gives error.
    Have you tried the configuration utilty ? Over there you can provide the new database instanse as your database and configure your shared service. Remember that you need to do a complete configuration of shared service , analytic administration services and analytic services. After configuring, Restart the system.....it should work.
    Hope this helps!
    Regards,
    James

  • URGENT HELP PLEASE - drop index hangs on SAP

    Hi all,
    OS = Linux
    DBVersion = Oracle10.2.0.2
    Need some urgent help advise please on how to get around this problem.
    On a SAP system, am trying to drop six indexes, largest is 300MB and smallest is 50MB.
    I tried running drop index sapusername.index_name on the 50MB index via SQL*Plus and it seems to be taking forever. Can anyone please suggest if there is anything I can check on the database on why it is taking such a long time?
    I can leave it to run overnight but worried that when I come back the next day, it will still be hanged. Is there any quick way of dropping the index, .i.e. drop immediate ... :-)
    Am not using SAP's BRTOOLs as it is also hanging from there and the SAP-ADMIN had approved for the DBA to drop it from our end instead.
    Any response and advise on this will be very much appreciated.
    From Google'ing, I found some that mentioned that the fault could be because of the existence of the constraints on the table that I am dropping the index of.
    Checking the table, it has 17 SYS_ named constraints. None of these constraints have INDEX_NAME that refers to the indexes that am dropping.
    Should I disable the constraints and then run the drop index again?
    Thanks in advance.
    Edited by: user649596 on Apr 13, 2010 11:49 PM

    Should I disable the constraints and then run the drop index again?NO, certainly not !!
    Ask SAP Support on what methods you should use to diagnose the "hang" and what your next step(s) should be.
    Hemant K Chitale

Maybe you are looking for

  • BT Phone Line Order – 9 months of total failure – ...

     I've been trying to get a phone line and internet connection from BT installed into a London flat since the 07th of January 2012. This email/letter does not contain every contact with BT in the last 9 months – as I have not kept records of all the d

  • Font size is computed as a function of the height of the annotation rectangle.

    From Pdf reference: The default appearance string (DA) contains any graphics state or text state oper- ators needed to establish the graphics state parameters, such as text size and color, for displaying the fields variable text. Only operators that

  • Mulitple Data Sets

    I've worked for over a month to study and resolve this but have not recognized the answer. The web site intent is, 1. A single XML master data base contains all photographs for display.  My XML data set does not have quotes. 2. Spry tabbed panels are

  • Prompt from another program is opening in Firefox

    When using Crystal Reports v.11 the query prompts for an input. This prompt is opening in Firefox. It is like the file extension is owned by Firefox.

  • FreeNAS 9.3 with HP M6412-A Fibre Channel Drive Enclosures

    Hi,I have acquired two HP M6412-A Fibre Channel Drive Enclosures with 14 dual-port SAS15K disk drives (7 per enclosure) in a recent company takeover.I do not have any HP software licenses for the HP EVA4400 Dual Controller Array that came with the di