Association Rules Error - Numeric argument "{0}" is invalid

I am running the sample association rules code on some different data (have changed the properties file to point at my data). The system is generating the association rules (I can see them in the database), but when it gets to the display step, I get the follow exception:
oracle.dmt.odm.MiningObjectException: Numeric argument "{0}" is invalid. Value must be {1}.
at oracle.dmt.odm.rule.RuleComponent.<init>(RuleComponent.java:37)
at oracle.dmt.odm.internal.rule.ARMiningRuleCursor.getNextRule(ARMiningRuleCursor.java:127)
at Sample_AssociationRules.printRuleSet(Sample_AssociationRules.java:352)
at Sample_AssociationRules.displayAssociationRules(Sample_AssociationRules.java:381)
at Sample_AssociationRules.main(Sample_AssociationRules.java:171)
I am running 9.2.0.1.0 on Windows XP and haven't applied any patches yet.
Any help appreciated,
James

Please repost on the PL/SQL OTN forum. This forum is XMLDB functionality specific.

Similar Messages

  • Import rules, error message "Invalid system"

    Hi,
    When importing rules under Rule Architect - Import rules, error message "VBS is invalid system" . In the configuration tab we have system  and System Name defined as VBS, test connection successful.
    Why is it giving an error message VBS is invalid system? Please advise.
    Thanks,
    Sri

    Hi,
    Is it rule import after taking an export from other system? In that case, make sure destination system name doesn't contain any space in it.
    Also, make sure text and auth Objects are uploaded for VBS system before doing rules import.
    Regards,
    Sabita

  • I am getting an error [Microsoft][ODBC Driver Manager] invalid argument val

    My code is :
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.util.Hashtable.*;
    import java.sql.*;
    public class LoginServlet extends HttpServlet
         Connection con;
         PreparedStatement ps;
         HttpSession session;
    public void init(ServletConfig sc) throws ServletException
    try
         super.init(sc);
         Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
         }catch(ClassNotFoundException e)
    {System.out.println("SQLException"+e.getMessage());}
    try
         con=DriverManager.getConnection("jdbc:odbc:aaa","scott","tiger");
    }catch(SQLException e)
         System.out.println("SQLException caught" +e.getMessage());
    public void service(HttpServletRequest req, HttpServletResponse res)
         res.setContentType("text/html");
         try
         String ulogin=req.getParameter("login").trim();
         String upass=req.getParameter("pass").trim();
         ps=con.prepareStatement("select pass from Userdetails where login='"+ulogin+"'");
         session=req.getSession(true);
         session.putValue("n1",ulogin);
         ps.setString(1,upass);
         ResultSet rs=ps.executeQuery();
         if(rs.next())
              if(upass.equals(rs.getString(1)))
              res.sendRedirect("http://localhost:8080/Welcome.html");
              session.putValue("login",ulogin);
              else
              PrintWriter pw=res.getWriter();
              pw.println("Sorry your password is incorrect,Reenter your password
    <html><center>");
              pw.println(" <form input type=password name=pass>");
              pw.println("<input type=hidden name=login value="+ulogin+">");
              pw.println("<input type=submit value=submit>");
              pw.println("</form></center></html>");
         else
         System.out.println("your are not a registered user,please register");
         res.sendRedirect("http://localhost:8080/Register.html");
         rs.close();
         catch(Exception e)
              System.out.println(e);
    When i compile, it is well but when i run through displaying my html and passing the data to test,then i am getting an error [Microsoft][ODBC Driver Manager]invalid argument value,
    I was set all my DSN correctly,the same pieve of code worked in another program but now i am getting an error.can any one clear this.
    Thanks in advance

    You have created a PreparedStatement with zero parameters in this statement:
    ps=con.prepareStatement("select pass from Userdetails where login='"+ulogin+"'");so "ps.setString(1, ulogin)" fails because there is no place to put parameter 1. Try this instead:
    ps=con.prepareStatement("select pass from Userdetails where login=?");and your program will work better. Better still, create the PreparedStatement in your init() method, there's no reason for creating it more than once.

  • Error in File ~tmp81c59e23760a10.rpt: Invalid argument for database

    When trying to run the report via Crystal Reports Server, we get the following error:
    Error in File ~tmp81c59e23760a10.rpt: Invalid argument for database.
    Opening the report in Crystal Reports 2008 and running a verify database, confirms that everything is working. Yet when we run it through Crystal Reports Server it errors every time.
    We are using a Progress ODBC driver which works fine when running reports via Crystal Reports 2008
    Can you please shed some light on this.
    I have already checked to see if there was a service pack or any other hot fixes available.

    Hi Brett,
    I believe I have the same error. ie
    Invalid Argument provided.
    Error in File xxxxx {C8F4D455-6B45-4859-B1B0-3E77619E5AD0}.rpt:
    Invalid argument for database."
    Have you managed to resolve the issue yet?
    We're running Crystal Reports 2008 Basic on MS SQL Server 2005.
    The Crystal Report works fine, when run on the server (and/or in terminal server session), but if it is run from a desktop client, which connects to the server, it gives the error above.
    So in my case, it must permissions or component related (ie something not loaded, that should be).
    I found the following on the internet:
    u201DIDataReader supports only one table by default
    When you view a report that has tables with the data source set to
    IDataReader for each one, and many of the tables are linked together, you
    may see the following error message: "Invalid database argument." Calls
    made to SetDataSource() from an IDataReader are supported only for
    reports that contain one table.
    Workaround
    To use an IDataReader with multiple tables, create a report with one
    command table that selects the necessary fields.u201C
    From researching in SAP BOBJ Notes I found somethings to try, or look at, but can't quite tackle them yet. I'll let you know how it goes.
    Best Regards,
    George

  • Association Rule : Settings in PL/SQL

    I've developed a model in ODM GUI for association rules.
    I'm now looking to develop the same in PL/SQL.
    I need to know how to specify the case id that has 2 attributes (CUST_ID and TIME_ID) and I have the PROD_ID as the ITEM ID. I have the following settings table and PLSQL
    BEGIN
    INSERT INTO assoc_sample_settings (setting_name, setting_value) VALUES
    (dbms_data_mining.algo_name, dbms_data_mining.ALGO_APRIORI_ASSOCIATION_RULES);
    INSERT into assoc_sample_settings (setting_name, setting_value) VALUES
    (dbms_data_mining.prep_auto, dbms_data_mining.prep_auto_on);
    INSERT into assoc_sample_settings (setting_name, setting_value) VALUES
    (ODMS_ITEM_ID_COLUMN_NAME, ‘PROD_ID’);
    END;
    DBMS_DATA_MINING.CREATE_MODEL(
    model_name => 'ASSOC_MODEL_2',
    mining_function => dbms_data_mining.association,
    data_table_name => 'SH.SALES',
    case_id_column_name => ‘CUST_ID, TIME_ID’,
    target_column_name => null,
    settings_table_name => 'assoc_sample_settings');
    Is this correct? for setting the CASE ID to 'CUST_ID, TIME_ID', is this correct and/or in the correct place
    Also the setting of the PROD_ID also correct?
    Do I need to use the ODMS_ITEM_VALUE_COLUMN_NAME setting ?

    Thank you for your reply, but it is still not working. There is the code that I have used for setting up and running. What is missing or incorrect with the following. The data is from the SH.SALES table.
    Settings Table
    BEGIN
    INSERT INTO assoc_sample_settings (setting_name, setting_value) VALUES
    (dbms_data_mining.algo_name, dbms_data_mining.ALGO_APRIORI_ASSOCIATION_RULES);
    INSERT into assoc_sample_settings (setting_name, setting_value) VALUES
    (dbms_data_mining.prep_auto, dbms_data_mining.prep_auto_off);
    INSERT into assoc_sample_settings (setting_name, setting_value) VALUES
    (dbms_data_mining.ODMS_ITEM_ID_COLUMN_NAME, ‘PROD_ID’);
    COMMIT;
    END;
    Create the view
    CREATE VIEW ASSOC_DATA_V AS (
    SELECT RANK() OVER (ORDER BY CUST_ID, TIME_ID) CASE_ID, t.*
    FROM SH.SALES t );
    Create the model
    BEGIN
    DBMS_DATA_MINING.CREATE_MODEL(
    model_name => 'ASSOC_MODEL_2',
    mining_function => DBMS_DATA_MINING.ASSOCIATION,
    data_table_name => 'ASSOC_DATA_V',
    case_id_column_name => ‘CASE_ID’,
    target_column_name => null,
    settings_table_name => 'assoc_sample_settings');
    END;
    BEGIN
    ERROR at line 1:
    ORA-40104: invalid training data for model build
    ORA-06512: at "SYS.DBMS_DATA_MINING", line 1798
    ORA-06512: at line 2
    Any ideas what is causing this?

  • Problems with Association Rules

    Hi all,
    I am trying to use ODMr to run association rules and am getting the following error message:
    Server task state: error
    Server task detail:
    ORA-40101: Data Mining System Error ORA-40101: Data Mining System Error ORA-40101: Data Mining System Error ODM_ASSOCIATION_MODEL-BUILD--20010
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 105
    ORA-06512: at "DMSYS.ODM_ASSOCIATION_RULE_MODEL", line 144
    ORA-06512: at "DMSYS.ODM_ASSOCIATION_RULE_MODEL", line 1396
    ORA-00902: invalid datatype
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 105
    ORA-06512: at "DMSYS.ODM_ASSOCIATION_RULE_MODEL", line 144
    ORA-06512: at "DMSYS.ODM_ASSOCIATION_RULE_MODEL", line 1396
    ORA-06512: at "DMSYS.DBMS_DATA_MINING", line 305
    ORA-06512: at "DMSYS.DBMS_JDM_INTERNAL", line 157
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 86
    ORA-06512: at "DMSYS.DBMS_JDM_INTERNAL", line 179
    ORA-06512: at line 1
    This error is generated on the sample data as used in the ORACLE 10G Release 2 Data Mining Tutorial, and on other datasets that I tried.
    My sense is that the algorithm is expecting data in the datatype of DM_NESTED_NUMERICALS, even though the documentation asks for transactional data. When I converted to nested columns, the prog errored out again as it was expecting a number rather than nested column.??

    Hi Carolyn,
    I reviewed the tutorial and tested out the example for Association Rules. The example uses SH.SALES and SH.PRODUCTS.
    It worked fine.
    ODMr converts the "transactional" data, in the case of Association Rules, into DM_NESTED_NUMERICALS.
    When ODM documentation refers to transactional data, it implies the use of nested columns. This can be confusing given that older versions of ODM actually supported a "transactional format", which is now supported only through nested columns.
    I copied the following view definition that was passed in to ODM to build the Association Rules model (based on the tutorial noted above). Take a look at them to get a better understanding on what ODMr is doing to prepare the data.
    If you can give us a specific example including the tutorial table you used and the settings you specified in the Association Rules Wizard, I can review that to see what the problem might be.
    Thanks, Mark
    SELECT caseTable."DMR$CASE_ID", txnTable1."PROD_ID" FROM "DMUSER"."DM4J$VSALES657013432" caseTable, (SELECT "DMR$CASE_ID", CAST(COLLECT(DM_Nested_Numerical("NAME", "VALUE")) AS DM_Nested_Numericals) "PROD_ID" FROM "DMUSER"."DM4J$SALES423975876" GROUP BY "DMR$CASE_ID") txnTable1 WHERE caseTable."DMR$CASE_ID" = txnTable1."DMR$CASE_ID"
    The view makes references to other tables/views defined below:
    DM4J$VSALES657013432 is shown below:
    SELECT distinct "DMR$CASE_ID" FROM
         (SELECT "CUST_ID","TIME_ID", DENSE_RANK() OVER (ORDER BY "CUST_ID","TIME_ID") DMR$CASE_ID FROM "SH"."SALES")
    ORDER BY "DMR$CASE_ID"
    DM4J$SALES423975876 is shown below:
    SELECT DMR$CASE_ID, CAST("PROD_ID" AS VARCHAR2(30)) as NAME, 1 as VALUE
    FROM
    (SELECT "PROD_ID", "CUST_ID","TIME_ID", DENSE_RANK() OVER (ORDER BY "CUST_ID","TIME_ID") DMR$CASE_ID FROM "SH"."SALES")
    ORDER BY DMR$CASE_ID

  • Association Rules - dmardemo.java - DisplayAssociationRules method

    Hi, friends!
    I'm making some changes in the sample Java demo for the Association Rules - dmardemo.java. I've created another method which contains the name of the model just created before and in this same method, I call the method to display the association rules detected:
    public static void restoreRules(String modelNome) throws JDMException {
    m_modelName = modelNome;
    model = (AssociationModel)m_dmeConn.retrieveObject(
    m_modelName, NamedObject.model);
    displayAssociationRules(model);
    In another class, which is a GUI, I'm trying to call that method to restore all the rules found in the mining process and display them in a jTable Swing component. For this, I've tried to adapt the main method (displayAssocationRules) to do this, as follows:
    public static Object displayAssociationRules(AssociationModel model)
    throws JDMException {
    // DISPLAY TOP-10 ASSOCIATION RULES
    Object[] obj = new Object[5];
    int contador = 0;
    // 1. Set order by confidence DESC, support DESC
    OraRulesFilter filter = (OraRulesFilter) m_filterFactory.create();
    filter.setOrderingCondition(
    new RuleProperty[] { RuleProperty.confidence, RuleProperty.support},
    new SortOrder[] { SortOrder.descending, SortOrder.descending }
    // 2. Set to return the first 10 rules only
    filter.setMaxNumberOfRules(10);
    // 3. Retrieve rules
    Collection rules = model.getRules(filter);
    Iterator iRules = rules.iterator();
    while( iRules.hasNext() )
    OraAssociationRule rule = (OraAssociationRule) iRules.next();
    obj[0] = rule.getRuleIdentifier();
    //System.out.print( "Rule " + rule.getRuleIdentifier() + ": " );
    Itemset antecedent = rule.getAntecedent();
    //obj[1] = antecedent.getItems();
    Object[] ante_items = antecedent.getItems();
    // sort the items in antecedent to produce deterministic order of items
    TreeSet sortedSet = new TreeSet();
    for(int i = 0; i < obj.length; i++)
    sortedSet.add(ante_items);
    obj[1] = ante_items;
    Iterator sortedI = sortedSet.iterator();
    /*while(sortedI.hasNext())
    System.out.print(sortedI.next() + " ");*/
    Itemset consequent = rule.getConsequent();
    Object[] cons_items = consequent.getItems();
    obj[2] = cons_items;
    obj[3] = m_df.format(rule.getSupport());
    obj[4] = m_df.format(rule.getConfidence());
    /*System.out.println("==> " + cons_items[0] + " (support=" +
    m_df.format(rule.getSupport()) + ", confidence=" + m_df.format(rule.getConfidence()) + ")" );*/
    return obj;
    Some parts of the old code are present in that for you to compare what I've done. However, it's not working. What should I do to see the rules generated in the process in a jTable?
    Regards
    Luis

    As you can see in the code above, I've split the code into two parts. However, a problem is happening when I try to restore the rules to the GUI.
    "Exception in thread "AWT-EventQueue-0" javax.datamining.JDMIllegalArgumentException: The required argument objectName is null. Supply a non-null value."
    It says that I'm not passing any parameters to the method. But, as you can see, in the first method I've created, I took the name of the model and transfers it for the method displayAssociationRules as a AssociationModel objet.
    In the GUI, in an event for the button "Restore Rules", I've put this code below:
    String modelo = Principal.getModelName(); // where Principal is the main GUI class for the execution of the process.
    dmardemo.restoreRules(modelo);// I call the method in the dmardemo class to restore the rules having a String (modelo) as its parameter. That's when the problem happens. Is the argument really null, as the error message says?
    Regards
    Luis

  • Unable to load the vertipaq engine because there was a COM exception . Return argument has an invalid type.

    Hi All,
    I have been using powerpivot for months (2010 PowerPivot on Excel 2010, with Sql 2008).  I tried to open powerpivot today and get the following below.  I have already tried uninstalling powerpivot and reinstalling it to no avail.  
    Any suggestions would be appreciated.  Thanks, Ivan
    Unable to load the vertipaq engine because there was a COM exception while loading....
    ============================
    Error Message:
    ============================
    Return argument has an invalid type.
    ============================
    Call Stack:
    ============================
       at System.Runtime.Remoting.Proxies.RealProxy.ValidateReturnArg(Object arg, Type paramType)
       at System.Runtime.Remoting.Proxies.RealProxy.PropagateOutParameters(IMessage msg, Object[] outArgs, Object returnValue)
       at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
       at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
       at Microsoft.Office.Interop.Excel.WorkbookConnection.get_OLEDBConnection()
       at Microsoft.AnalysisServices.XLHost.Addin.InProcServer.LoadOLEDBConnection(Boolean raiseCompleteEvent, String errorCache)
    ============================

    Hi All,
    For anyone who this happens to, what ended up fixing it was uninstalling and reinstalling excel.  I was using excel 2010, so I did this 
    Go to add/remove programs 
    Highlight Microsoft Office Professional 2010 
    Click Change
    ensure Add remove features is selected and click continue 
    click on the little arrow beside excel and click on Not Available, click continue
    After it is done, excel will be uninstalled.  
    When this is done, you can do the same process again, but this time chose the other appropriate selection
    instead of not available.  I chose Run All from My Computer.  

  • ORA-00600: internal error code, arguments: [kcbgtcr_5] ...

    Hi,
    I'm getting the error
    ORA-00600: internal error code, arguments: [kcbgtcr_5], [4294967295], [1], [0], [], [], [], []
    with a simple insert command on my XE database.
    SQL> l
      1    insert into sscm_content
      2    ( KEY ,
      3      NAME ,
      4      TOPIC_KEY ,
      5      CSS_CLASS_KEY ,
      6      SORT_STRING ,
      7      CONTENT ,
      8      NOTE
      9    )
    10    select
    11      KEY ,
    12      NAME ,
    13      TOPIC_KEY ,
    14      CSS_CLASS_KEY ,
    15      SORT_STRING ,
    16      CONTENT ,
    17      NOTE
    18    from
    19      temp_content
    20*
    SQL> /
      insert into sscm_content
    ERROR at line 1:
    ORA-00600: internal error code, arguments: [kcbgtcr_5], [4294967295], [1], [0], [], [], [], []
    SQL> desc sscm_content
    Name                                                              Null?    Type
    KEY                                                               NOT NULL VARCHAR2(100)
    NAME                                                              NOT NULL VARCHAR2(100)
    TOPIC_KEY                                                         NOT NULL VARCHAR2(100)
    CSS_CLASS_KEY                                                     NOT NULL VARCHAR2(100)
    SORT_STRING                                                       NOT NULL VARCHAR2(100)
    CONTENT                                                           NOT NULL CLOB
    NOTE                                                                       CLOB
    SQL> desc temp_content
    Name                                                              Null?    Type
    KEY                                                                        VARCHAR2(100)
    NAME                                                              NOT NULL VARCHAR2(100)
    TOPIC_KEY                                                         NOT NULL VARCHAR2(100)
    CSS_CLASS_KEY                                                     NOT NULL VARCHAR2(100)
    SORT_STRING                                                       NOT NULL VARCHAR2(100)
    CONTENT                                                           NOT NULL CLOB
    NOTE                                                                       CLOBThe same command has worked many times in the past.
    I saw the following at http://oracledocs.shu.ac.uk/local/personalOracleInstallation/w2k-10g/readme.101/README_rdbms.htm
    "Bug 3392439
    Row Access Method problem: DML statements may fail with ORA-00600 [kcbget_24], ORA-00600 [kcbgtcr_5], or ORA-00600 [kcbgcur_3] error messages. The DML on an Index-Organized Table (IOT) that has one or more secondary index may fail with ORA-00600, fail with an access violation, or it may cause modification of rows in objects that are not associated with the target IOT.
    Workaround:
    Set hidden parameter _db_cache_pre_warm to false in init.ora to avoid pre-warming behavior in buffer cache. Alternatively, use ALTER SYSTEM FLUSH BUFFER_CACHE."
    Even though my tables are not index organized, the bug seems related to my problem since the "ALTER SYSTEM FLUSH BUFFER_CACHE' provides a temporary fix. It's not a permanent fix because the ORA-600 error reappears in later operations.
    For a permanent fix I tried setting the hidden parameter mentioned, but it wouldn't take.
    Connected to:
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    SQL> alter system set "_db_cache_pre_warm" = false comment = 'workaround for bug 3392439 ora 600 kcbgtcr_5 error' ;
    alter system set "_db_cache_pre_warm" = false comment = 'workaround for bug 3392439 ora 600 kcbgtcr_5 error'
    ERROR at line 1:
    ORA-02095: specified initialization parameter cannot be modifiedAny ideas on how I can fix the problem?

    Looks like I spoke too soon. The error is back.
    The problem might be related to a foreign key to an index organized table (IOT) that SSCM_CONTENT has. I converted the IOT to a regular table and was then able to perform the INSERT without receiving the ORA-00600. Let's hope it's gone for good.
    I sure would like to be able to use IOT's on Oracle XE though. I'd appreciate hearing if there are any workarounds or fixes other than the two already mentioned.

  • ORA-00600: internal error code, arguments: [4553], [2], [0], [], [], [], []

    hello,
    i have the ORA-00600: internal error code, arguments: [4553], [2], [0], [], [], [], [], [] in my alert.log file. One resolution is to recreate the invalid objects, but this error is recurring frequently. In touch with oracle. has anyone faced this issue, what could be the problem?
    thanks in advance.
    Starting up ORACLE RDBMS Version: 10.1.0.4.0.
    System parameters with non-default values:
    processes = 300
    shared_pool_size = 83886080
    large_pool_size = 8388608
    java_pool_size = 50331648
    nls_language = american
    nls_territory = america
    sga_target = 369098752
    control_files = O:\ORACLE\DATABASE\CONTROL01.CTL, O:\ORACLE\DATABASE\CONTROL02.CTL, O:\ORACLE\DATABASE\CONTROL03.CTL
    db_block_size = 8192
    db_cache_size = 25165824
    compatible = 10.1.0.2.0
    db_file_multiblock_read_count= 16
    undo_management = AUTO
    undo_tablespace = UNDOTBS1
    remote_login_passwordfile= EXCLUSIVE
    db_domain =
    dispatchers = (PROTOCOL=TCP) (SERVICE=orclXDB)
    shared_servers = 0
    job_queue_processes = 10
    background_dump_dest = D:\ORACLE\PRODUCT\10.1.0\ADMIN\ORCL\BDUMP
    user_dump_dest = D:\ORACLE\PRODUCT\10.1.0\ADMIN\ORCL\UDUMP
    core_dump_dest = D:\ORACLE\PRODUCT\10.1.0\ADMIN\ORCL\CDUMP
    sort_area_size = 65536
    db_name = ORCL
    open_cursors = 1000
    pga_aggregate_target = 25165824
    LGWR started with pid=5, OS id=136
    SMON started with pid=7, OS id=3524
    RECO started with pid=8, OS id=3244
    CJQ0 started with pid=9, OS id=420
    Thread 1 advanced to log sequence 14383
    Current log# 1 seq# 14383 mem# 0: O:\ORACLE\DATABASE\REDO11.LOG
    Current log# 1 seq# 14383 mem# 1: O:\ORACLE\DATABASE\REDO12.LOG
    Sat Nov 08 12:45:45 2008
    Private_strands 15 at log switch
    Thread 1 advanced to log sequence 14384
    Current log# 2 seq# 14384 mem# 0: O:\ORACLE\DATABASE\REDO21.LOG
    Current log# 2 seq# 14384 mem# 1: O:\ORACLE\DATABASE\REDO22.LOG
    Sat Nov 08 13:15:31 2008
    Errors in file d:\oracle\product\10.1.0\admin\orcl\udump\orcl_ora_4084.trc:
    ORA-00600: internal error code, arguments: [4553], [2], [0], [], [], [], [], []
    Sat Nov 08 13:19:42 2008
    Doing block recovery for file 2 block 332
    Block recovery range from rba 14384.24287.0 to scn 0.368893505
    Sat Nov 08 13:19:43 2008
    Recovery of Online Redo Log: Thread 1 Group 2 Seq 14384 Reading mem 0
    Mem# 0 errs 0: O:\ORACLE\DATABASE\REDO21.LOG
    Mem# 1 errs 0: O:\ORACLE\DATABASE\REDO22.LOG
    Block recovery completed at rba 14384.24315.16, scn 0.368893506
    Doing block recovery for file 2 block 97
    Block recovery range from rba 14384.13864.0 to scn 0.368893505
    Sat Nov 08 13:19:44 2008
    Recovery of Online Redo Log: Thread 1 Group 2 Seq 14384 Reading mem 0
    Mem# 0 errs 0: O:\ORACLE\DATABASE\REDO21.LOG
    Mem# 1 errs 0: O:\ORACLE\DATABASE\REDO22.LOG
    Block recovery completed at rba 14384.24315.16, scn 0.368893506
    Doing block recovery for file 5 block 651570
    Block recovery range from rba 14384.24287.0 to scn 0.368893508
    Sat Nov 08 13:19:45 2008
    Recovery of Online Redo Log: Thread 1 Group 2 Seq 14384 Reading mem 0
    Mem# 0 errs 0: O:\ORACLE\DATABASE\REDO21.LOG
    Mem# 1 errs 0: O:\ORACLE\DATABASE\REDO22.LOG
    Block recovery completed at rba 14384.24373.16, scn 0.368893509
    Sat Nov 08 13:19:46 2008
    Errors in file d:\oracle\product\10.1.0\admin\orcl\udump\orcl_ora_4084.trc:
    ORA-00600: internal error code, arguments: [4553], [2], [0], [], [], [], [], []
    Doing block recovery for file 2 block 704
    Block recovery range from rba 14384.24391.0 to scn 0.368893512
    Sat Nov 08 13:23:27 2008
    Recovery of Online Redo Log: Thread 1 Group 2 Seq 14384 Reading mem 0
    Mem# 0 errs 0: O:\ORACLE\DATABASE\REDO21.LOG
    Mem# 1 errs 0: O:\ORACLE\DATABASE\REDO22.LOG
    Block recovery completed at rba 14384.24419.16, scn 0.368893513
    Doing block recovery for file 2 block 41
    Block recovery range from rba 14384.24469.0 to scn 0.368894006
    Sat Nov 08 13:32:29 2008
    Recovery of Online Redo Log: Thread 1 Group 2 Seq 14384 Reading mem 0
    Mem# 0 errs 0: O:\ORACLE\DATABASE\REDO21.LOG
    Mem# 1 errs 0: O:\ORACLE\DATABASE\REDO22.LOG
    Block recovery completed at rba 14384.25039.16, scn 0.368894007
    Doing block recovery for file 5 block 651570
    Block recovery range from rba 14384.24287.0 to scn 0.368893508
    Sat Nov 08 13:32:30 2008
    Recovery of Online Redo Log: Thread 1 Group 2 Seq 14384 Reading mem 0
    Mem# 0 errs 0: O:\ORACLE\DATABASE\REDO21.LOG
    Mem# 1 errs 0: O:\ORACLE\DATABASE\REDO22.LOG
    Block recovery completed at rba 14384.24373.16, scn 0.368893509
    Sat Nov 08 13:45:44 2008
    Private_strands 15 at log switch
    Thread 1 advanced to log sequence 14385
    Current log# 3 seq# 14385 mem# 0: O:\ORACLE\DATABASE\REDO31.LOG
    Current log# 3 seq# 14385 mem# 1: O:\ORACLE\DATABASE\REDO32.LOG
    Sat Nov 08 14:31:08 2008
    Private_strands 15 at log switch
    Thread 1 advanced to log sequence 14386
    Current log# 1 seq# 14386 mem# 0: O:\ORACLE\DATABASE\REDO11.LOG
    Current log# 1 seq# 14386 mem# 1: O:\ORACLE\DATABASE\REDO12.LOG
    Sat Nov 08 15:01:31 2008
    Errors in file d:\oracle\product\10.1.0\admin\orcl\udump\orcl_ora_4048.trc:
    ORA-00600: internal error code, arguments: [ktspgfb-1], [], [], [], [], [], [], []
    orcl_ora_4048.trc:
    *** SERVICE NAME:(SYS$USERS) 2008-11-08 13:15:30.942
    *** SESSION ID:(303.2) 2008-11-08 13:15:30.942
    *** 2008-11-08 13:15:30.942
    ksedmp: internal or fatal error
    ORA-00600: internal error code, arguments: [4553], [2], [0], [], [], [], [], []
    Current SQL statement for this session:
    INSERT INTO ssv_tav_basic VALUES(:v1,TO_DATE(:v2,'DD-MM-YYYY HH24:MI:SS'),:v3,:v4,:v5,:v6,TO_DATE(:v7,'DD-MM-YYYY HH24:MI:SS'),:v8,:v9,:v10,:v11)
    ----- Call Stack Trace -----
    calling call entry argument values in hex
    location type point (? means dubious value)
    ksedmp+576          CALLrel  ksedst+0 0
    ksfdmp.160+14       CALLrel  ksedmp+0 3
    _kgeriv+139          CALLreg  00000000             7FD3170 3
    kgeasi+92           CALLrel  kgeriv+0 7FD3170 7ECE838 11C9 2
    8752BEC
    ktbtas+149          CALLrel  kgeasi+0 7FD3170 7ECE838 11C9 2 2 0 2
    0 0 0 0
    ktbair2+413         CALLrel  ktbtas+0 17614014 30 875369C
    kdxlne+517          CALLrel  ktbair2+0
    kcoissue_callback CALLreg 00000000 7F2CFA4 7F2CFE6 4 17614014
    +153 875369C
    kcoapl+751          CALLrel  kco_issue_callback 7F2CFA0 17614000 875369C
    +0
    kcbapl+119          CALLrel  kcoapl+0 7F2CFA0 17614000 1 5 2000 0
    875369C
    kcrfwredo_gen+255 CALLrel _kcbapl+0            7F2CFA0 177F4E90 8753180 0
    4 875369C
    kcbchg1+7688        CALLrel  kcrfw_redo_gen+0
    ktuchg+874          CALLrel  kcbchg1+0 0 3 8753264 875327C 0 0
    ktbchg2+115         CALLrel  ktuchg+0 2 5B06C88 3 7F2D000 7F2D008
    7F2A7A0 875369C 7F2CFA0 0 0
    kdisnewle+1681      CALLrel  ktbchg2+0 0 5B06C88 7F2D000 7F2D008
    7F2A7A0 8753694 7F2CFA0 0 0
    kdisle+4004         CALLrel  kdisnewle+0 5B06C7C 149C3C3 8753694
    8753730 7F28764 A4 9D 0 2 0 0
    0 8753938
    kdiins0+6796        CALLrel  kdisle+0 2EB6AAAC 8753C98 87541A4 1 2
    8756AB0 140 875D664 342C9238
    0 0 0
    kdiins+52           CALLrel  kdiins0+0 2EB6AAAC 6 875D664 8756AB0 0
    0 0 2 FF 0 0 0 0
    kauxsin+4814        CALLrel  kdiins+0 2EB6AAAC 6 875D664 8756AB0 2
    FF 0 0
    insidx.103+884      CALLrel  kauxsin+0 2EB6AA5C 875D660 0 7F46984
    7F469B4 7F469CC 7F46958 0 0 0
    0 0 0 0 0 2C04A990 B D218 1 0
    0
    insrowFastPath.103  CALLrel  insidx.103+0 7F468B4
    +189
    insdrvFastPath.103  CALLrel  insrowFastPath.103 7F468B4 875D864 0 7F468B4
    +357 +0
    inscovexe+916       CALLrel  insdrvFastPath.103 7F468B4
    +0
    _insExecStmtExecIni  CALL???  00000000             1C8C07CC 2395C188 875DC70
    Engine.103+54
    insexe+232          CALLrel  insExecStmtExecIni 1C8C07CC 2395C188 875DC70
    Engine.103+0
    opiexe+12507        CALLrel  insexe+0 2EC98954 875DC70
    _opiodr+973          CALLreg  00000000             4 4 875E7D0
    _ttcpip+1830         CALLreg  00000000             4 4 875E7D0 3
    _opitsk+1098         CALL???  00000000            
    opiino+938          CALLrel  opitsk+0 0 0 7FD9BB0 7E5EEF8 DF 0
    _opiodr+973          CALLreg  00000000             3C 4 875FBC0
    opidrv+479          CALLrel  opiodr+0 3C 4 875FBC0 0
    sou2o+45            CALLrel  opidrv+0 3C 4 875FBC0
    opimai+237          CALLrel  sou2o+0
    OracleThreadStart@  CALLrel  opimai+0
    4+910
    77E64826 CALLreg 00000000

    hello satish,
    thank you for your kind advice. the reason i posted this is because we have been having this issue for a long time. and so far its been a chicken-egg issue, maybe its hardware, or the application, or the OS, etc..etc..
    so, i am looking for any experiences with the 600 error, perhaps similar to mine.

  • Dynamic font loading form diffent domain The value specified for argument font is invalid

    Hi
    I am trying to dyanmiclly load domain from external swf
    First I Embed the font in an SWF called "FontsSWFList.swf"
    [Embed(source='Assets/fonts/ARIAL.TTF' , fontFamily='Arial Font' , embedAsCFF="true")]  
    public static var ArialFont:Class;
    and then I load the SWF in another "main.swf"
    and then get the font Class
    like this:
    loader.addEventListener(Event.COMPLETE,OnFinishedLoadingSWF);
    loader.load('http://www.natansites.com/FontsSWFList.swf' );
     public function OnFinishedLoadingSWF(event:Event):void{
     var FontLibrary1:Class = this.loader.content.loaderInfo.applicationDomain.getDefinition("FontsSWFList_ArialFont") as Class; 
    Font.registerFont(FontLibrary1);
    If the FontsSWFList.swf is found on the same domain as main.swf (using reletive path) then everything is OK. But when they are on diffrent domains
    I get an error:
    "The value specified for argument font is invalid"
    There is some disscussion about that here:
    http://www.actionscript.org/forums/showthread.php3?t=182499
    But the solotion seems too complicated and it didn't work for me in FLEX 4 and FTE
    Please help me

    Thanks
    I got now
    Error #2044: Unhandled SecurityErrorEvent:. text=Error #2048: Security sandbox violation: http://www.*****.com/test/****.swf cannot load data from http://www.natansites.com/FontsSWFList.swf.
    I tried planting corssdoamin.xml everywhere but it didn't help
    I give up on this issue now mybe I try it again later

  • Error #1063: Argument count mismatch on CBClasses::cbIntro(). Expected 5, got 0

    Hi,
    This is my first attempt with AS3...now I am well aware of OOPs concepts and am comfortable with programming, but I am not able to wrap my head around the whole connecting the classes to the display objects on screen thing [linkages and class names n all]..now I managed to fix most errors in my file, which has cbIntro as the base class [set up successfully]...now cbIntro extends MovieClip as it links to an external fla [cbFlash]...but  within cbFLash I am calling the following...
    import CBClasses.cbIntro;
    var flipped:Boolean = false;
    var jobs:jobsBtn_mc = new jobsBtn_mc();  //not a button a movieclip within the library
    var flip:cbIntro;
    function callFlip(e:MouseEvent):void 
    trace("in call flip");
    if (!flipped)
    //some button code
    flip  = new cbIntro(evnts, jobs, 2, "left", true);  //evnts is a mc on stage
    addChild(flip);
    flipped = true;  
    else if (flipped)
    flip = new cbIntro(jobs, evnts, 2, "right", true); 
    addChild(flip); 
    flipped = false; 
    evnts.nxt.visible = true; 
    evnts.nxt.addEventListener(MouseEvent.MOUSE_DOWN, callFlip); //Adds the listeners to the buttons 
    jobs.bck.addEventListener(MouseEvent.MOUSE_DOWN, callFlip); 
    cbIntro has one constructor which takes 5 parameters, defined within a separate .as file.....now I am getting an error
    Error #1063: Argument count mismatch on CBClasses::cbIntro(). Expected 5, got 0 
    How can this happen, the only time an object is created, I am sending the right number of parameters...?? declaring a cbIntro variable should not call the constructor....?? Is that what is happening?? Or am I missing something important????

    Hi Ned,
    Sorry about posting two different topics thing...I was just trying to figure out the first problem by creating a stripped down version of the sending an on stage movieclip to an external class thing. I don't know how I can break up this post now...but since you have mentioned a few points...the problem is not with the private function declaration..you are correct of course..and that error was fixed..but I am still getting the error....
    inside intromain constructor
    Error: Error #2136: The SWF file file:///E|/Adobe/Flash%20CS5/Projects/trial/introduction.swf contains invalid data.
    at introMain/frame1()
    the introMain class only contains a constructor and a vanish function, which only shows a trace. I removed the problem with the on stage instance name, and tried to access it directly...but I don't think the code is even getting to that point...or may be it is...I am at a loss here...
    Code within introduction.swf
    var iMain:introMain = new introMain();
    var isVanished:Boolean = false;
    trace("events alpha" + eventsmc.alpha);
    I am not even calling the vanish function anymore...is something wrong with the constructor call???
    Code within introMain
    package  {
    import flash.display.*;
    import fl.transitions.easing.*;
    import fl.transitions.Tween;
    import fl.transitions.TweenEvent;
    import flash.events.MouseEvent;
    public class introMain extends MovieClip{
              public function introMain(){
                   trace("inside intromain constructor");
               public function vanish(mcName:MovieClip):void{
                 trace("inside vanish");

  • Association Rules problem

    Hello,
    I have a problem with making association rules in Oracle 10g ODM. The problem is as follows:
    I have my test dataset for testing assoc. rules. I used that dataset before for testing assoc. rules models with Oracle 9i ODM release (9.2.0.4). And I have found significant number of rules within that dataset when I used Oracle 9i ODM (9.2.0.4.).
    But when I use Oracle 10g ODM to build an association rules model with the same set of parameters (min. support, min. confidence and max. rule length) I've got 0 rules.
    I can't find where is the problem, so I think that there is some sort of bug within Oracle 10g ODM.
    Does anyone have similar experience or have some explanation for this?
    Thnx in advance,
    Ivan

    What version of Data Miner are you using?
    If you are using the api directly, are you using the
    java or pl/sql api.
    Thanks, MarkI've been using Java API.
    I've continued my investigation of the mentioned problem and I have found that DMS throws following exception:
    ORA-38605: FI not enough memory (stringK) for candidate generation(stringK)
    Cause: There was insufficient available memory for candidate generation.
    Suggested action from Metalink is:
    In workarea_size_policy='manual' mode, set ficarea_size to a reasonably larger value. Or, in workarea_size_policy='auto' mode, set pga_aggregate_target to a reasonably larger value
    And I've increased the size of my SGA more than three times (from 128 to 512 MB), set work_area_policy=auto and set pga_aggregate_target to 20% of SGA .
    After that I've got following exception:
    ORA-40101: Data Mining System Error ODM_ASSOCIATION_MODEL-BUILD--20010
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 105
    ORA-06512: at "DMSYS.ODM_ASSOCIATION_RULE_MODEL", line 150
    ORA-06512: at "DMSYS.ODM_ASSOCIATION_RULE_MODEL", line 1299
    ORA-01452: cannot CREATE UNIQUE INDEX; duplicate keys found
    ORA-06512: at "DMSYS.ODM_ASSOCIATION_RULE_MODEL", line 1364
    ORA-06512: at line 1
    DMS throws this exception after longer time of task execution.
    Now, I don't know what to do further.
    I repeat that with the same dataset and same model parameters (support, confidence and max. rule length) I've got significant number of rules with ODMS within Oracle 9i database (9.2.0.4).
    Thnx,
    Ivo

  • Association rules - Memory problem?

    I am running the associtaion rules program in Java and I get
    the following error. Any idea what causes this error?
    Thank u
    K
    arBuildTask_jdm is started, please wait. arBuildTask_jdm is failed.
    Failure Description: ORA-40101: Data Mining System Error ORA-40101: Data Mining System Error ORA-40101: Data Mining System Error ODM_ASSOCIATION_MODEL-BUILD--20010
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 105
    ORA-06512: at "DMSYS.ODM_ASSOCIATION_RULE_MODEL", line 144
    ORA-06512: at "DMSYS.ODM_ASSOCIATION_RULE_MODEL", line 1397
    ORA-00600: internal error code, arguments: [15593], [kxhfFind: no partition with a full slot], [], [], [], [], [], []
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 105
    ORA-06512: at "DMSYS.ODM_ASSOCIATION_RULE_MODEL", line 144
    ORA-06512: at "DMSYS.ODM_ASSOCIATION_RULE_MODEL", line 1397
    ORA-06512: at "DMSYS.DBMS_DATA_MINING", line 312
    ORA-06512: at "DMSYS.DBMS_JDM_INTERNAL", line 157
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 86
    ORA-06512: at "DMSYS.DBMS_JDM_INTERNAL", line 179
    ORA-06512: at line 1
    --

    This is a known bug that has been fixed in the upcoming database release (11g).

  • InvalidCastException occurred. Return argument has an invalid type in illustrator cs5 VB in VS2012.

    I am writthing a simple illustrator CS5 VB application for testing in VS2012 on Windows7 64-bit. The application can be built succesfully, but got an error at line 2- InvalidCastException occurred. Return argument has an invalid type.
    line 1 - Dim  appref As Illustrator.Application = New Illustrator.Application
    line 2 - Dim myDoc As Illustrator.Document = appref.ActiveDocument
    The detailed errror is
    System.InvalidCastException occurred
      HResult=-2147467262
      Message=Return argument has an invalid type.
      Source=mscorlib
      StackTrace:
           at System.Runtime.Remoting.Proxies.RealProxy.ValidateReturnArg(Object arg, Type paramType)
           at System.Runtime.Remoting.Proxies.RealProxy.PropagateOutParameters(IMessage msg, Object[] outArgs, Object returnValue)...................
    But similar code works in word 2007 macro, so reference to  illustrator CS5 is fine. I think it is caused by .NET Framework 4. Where should I start to solve the problem? Any help is appreciated. Thanks!

    Hello,
    I am getting the same error and I found some articles on Oracle Metalink (Note 360287.1) regarding the filesystemio_options parameter and the mount option cio. Basically it looks as if AIX will not allow another program e.g. cp to access the oracle datafile whilst oracle is accessing it unless you have set the cio option at the filesystem level.
    I haven't tried this yet as I need to get some downtime but I think this is what is causing the problem.
    Be careful if you don't have the Oracle datafiles in seperate filesystems because there is a problem with cio and running binaries. (check the man pages for the cio mount option)
    Hope this helps you.
    Regards
    Garry Bayford.

Maybe you are looking for

  • Blue screen appears

    I've bought my S10e in April 2009. it worked properly until a month ago when i was browsing, this blue screen appears suddenly and Windows (XP SP3, home edition) restarts. It happens too fast that i cannot read the message. after logging in this mess

  • Hr abap with webdynpro abap

    Hi  can you any one  explain the  below question. I  was developed on application  insted of pa40  in hr abap for rehire and new hire , for updating the data in respective infotypes using  the hr_maintian_masterdata . but i want update the infotypes

  • Close Open STO with inactive plant

    Hello Experts, I have an issue in closing one STO. This STO was created in 2000, and no further action was taken since 2001. All the items in this STO (total of 20 items) are flagged for deletion. And the supplying plant in this case is inactive (not

  • IOS7 notifications not always working

    Hi all, my question is simple. Does it happen to you that sometimes you don't receive push notifications? There's a way to fix this? In my iPhone 5 in apps like Twitter or Instagram, it could happen that SOMETIMES to see certain notifications (mentio

  • Where is the the "Library pop-up menu near the top of the iTunes window."

    Need some some help with music sharing. Where is the "the Library pop-up menu near the top of the iTunes window." ? Will this work with a Windows laptop running iTunes? /m