Setarraybo​unds to modify array get error-1732​5,wrong number of array indices

hello:
   i tried to use setarraybounds(Locals.Raw_values,"[1]","[6][0][0]"​) to set new bounds value of original array[1][1200]
but get error: -17325,wrong number of array indices
and use setarraybounds(Locals.Raw_values,"[0][0][1]","[6][​0][0]") gets error-17324,array index out of bounds
what can i do?

now i know i should use "[600]", thanks

Similar Messages

  • TS2755 getting error 923-0  wrong number of digets in phone number

    some phone numbers when i text message them return this error .  tryed several answers that i found online but none worked for me ..

    Soujanya,
    Another thing to consider here is that because you are calling a procedure with such a large number of params and most of them might be defaulted/not set, it would be a better practice to call a wrapper procedure where you can add extra validation on input params before calling the actual procedure and send the required params from OAF as a single record.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Error PLS-00306: wrong number or types of arguments in call to

    I am getting the following Error when calling stored Procedure, I have tried with Last Parameter PRESULT and WITHOUT IT, it fails in both the instance.
    =======================================================================
    "System.Data.OracleClient.OracleException: ORA-06550: line 1, column 7:
    PLS-00306: wrong number or types of arguments in call to 'UPDATECOTRACKING'
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    =======================================================================
    signature of Stored Procedure is as follow
    (pmaster_key IN sca_costtrackinglog.master_key%type,
         pdoc_master_key IN sca_costtrackinglog.master_key%type,     
    pfrenumber IN sca_costtrackinglog.fre_number%type,     
    pnotice1 IN sca_costtrackinglog.notice1%type,
    pnotice2 IN sca_costtrackinglog.notice2%type,
    padditreceived IN sca_costtrackinglog.additreceived%type,
    pfreanticipate IN sca_costtrackinglog.freanticipate%type,
    pdateofnot IN sca_costtrackinglog.dateofnot%type,
    pdateofmeeting IN sca_costtrackinglog.dateofmeeting%type,
    psenttocontractor IN sca_costtrackinglog.senttocontractor%type,
    pcouforexecution IN sca_costtrackinglog.couforexecution%type,
    pcomments IN sca_costtrackinglog.comments%type,
    pcreateby IN sca_costtrackinglog.createby%type,
    peditby IN sca_costtrackinglog.editby%type,
         presult OUT number) is
    This is the Trace of Parameters from actual Call, that fails with above error.
    Parameter Name : PMASTER_KEY(Input),Type(AnsiString) Size(26), Value = 000328JYA30008HSWBCK01NYC
    Parameter Name : pdoc_master_key(Input),Type(AnsiString) Size(26), Value = 310657KLF30025HSWBCK01NYC
    Parameter Name : PFRENUMBER(Input),Type(AnsiString) Size(12), Value = 00015
    Parameter Name : PNOTICE1(Input),Type(DateTime) Size(1), Value = 3/25/2010
    Parameter Name : PNOTICE2(Input),Type(DateTime) Size(1), Value =
    Parameter Name : PADDITRECEIVED(Input),Type(DateTime) Size(1), Value =
    Parameter Name : PFREANTICIPATE(Input),Type(DateTime) Size(1), Value =
    Parameter Name : PDATEOFNOT(Input),Type(DateTime) Size(1), Value =
    Parameter Name : PDATEOFMEETING(Input),Type(DateTime) Size(1), Value =
    Parameter Name : PSENTTOCONTRACTOR(Input),Type(DateTime) Size(1), Value =
    Parameter Name : pcouforexecution(Input),Type(DateTime) Size(1), Value =
    Parameter Name : pcomments(Input),Type(AnsiString) Size(250), Value =
    Parameter Name : PCREATEBY(Input),Type(AnsiString) Size(50), Value = NYCSCA\tmpns2
    Parameter Name : PEDITBY(Input),Type(AnsiString) Size(50), Value = NYCSCA\tmpns2
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Below is the trace from Data.OracleClient.OracleCommandBuilder.DeriveParameters(Cmd)
    Parameter Name : PMASTER_KEY(Input),Type(AnsiString) Size(2000), Value =
    Parameter Name : PDOC_MASTER_KEY(Input),Type(AnsiString) Size(2000), Value =
    Parameter Name : PFRENUMBER(Input),Type(AnsiString) Size(2000), Value =
    Parameter Name : PNOTICE1(Input),Type(DateTime) Size(0), Value =
    Parameter Name : PNOTICE2(Input),Type(DateTime) Size(0), Value =
    Parameter Name : PADDITRECEIVED(Input),Type(DateTime) Size(0), Value =
    Parameter Name : PFREANTICIPATE(Input),Type(DateTime) Size(0), Value =
    Parameter Name : PDATEOFNOT(Input),Type(DateTime) Size(0), Value =
    Parameter Name : PDATEOFMEETING(Input),Type(DateTime) Size(0), Value =
    Parameter Name : PSENTTOCONTRACTOR(Input),Type(DateTime) Size(0), Value =
    Parameter Name : PCOUFOREXECUTION(Input),Type(DateTime) Size(0), Value =
    Parameter Name : PCOMMENTS(Input),Type(AnsiString) Size(2000), Value =
    Parameter Name : PCREATEBY(Input),Type(AnsiString) Size(2000), Value =
    Parameter Name : PEDITBY(Input),Type(AnsiString) Size(2000), Value =
    Parameter Name : PRESULT(Output),Type(VarNumeric) Size(0), Value =
    ******************************************************************************************************************

    In the Oracle database, the body of the package FWA_PRI API, the procedure ValidatePri declares P_PriREc as being :
    PAYMENT_REQUEST_IMPORT%ROWTYPE
    As you can see above, the DoPri Procedure expects a type p_PriRec as its second argument.
    Therefore in my procedure I do the following:
    create or replace procedure spMatchPayment is
    BEGIN
    DECLARE
           CURSOR StageCurs IS SELECT * FROM PAYMENT_REQUEST_IMPORT;
                  p_payment_req_import PAYMENT_REQUEST_IMPORT%ROWTYPE;
                  BEGIN
                       OPEN StageCurs();
                            LOOP
                                FETCH StageCurs INTO P_payment_req_import;
                                EXIT WHEN StageCurs%NOTFOUND;
                                fwa_pri.DoPri(NULL, fwa_pri.DoPri('M',P_PriRec => p_payment_req_import);                           
                             END LOOP;
                        CLOSE StageCurs;
                   END;
    end spMatchPayment;
    Now, when I am trying to compile I am getting the Compilation errors for PROCEDURE IMPACT.SPMATCHPAYMENT
    Error: PLS-00306: wrong number or types of arguments in call to 'DOPRI'
    Line: 16
    Text: fwa_pri.DoPri(NULL,P_PriRec => p_payment_req_import);
    I don't see what's wrong on my code......HELP!!

  • Error message: 450 [Wrong number of arguments or invalid property assignment]

    Hello Support,
    I have a vbscript which does some database query. i see from the log that script quits with the below error.
    Error message: 450 [Wrong number of arguments or invalid property assignment]
    but when i execute the same query directly on database, it gives me correct result. also i see that not all the time script quits with this error.
    Does anyone have idea how to troubleshoot it?
    -KAKA-

    i see. i know at which line it fails as error handling is done and will be written in the log.
    sQuery_Prod = "select object_text from sto_ov_externalnode where name = '" & NodeId & "'"
    oRecordSet_Prod.Open sQuery_Prod, oConnection, adOpenStatic, adLockOptimistic
    if err.number <> 0 then
    LogWrite ("Unable to run query")
    LogWrite ("Query: [" & sQuery_Prod & "]")
    LogWrite ("Connection string: [" & sConnect & "]")
    LogWrite ("Error message: " & err.number & " [" & err.description & "]")
    wscript.quit(1)
    end if
    and this piece of code write following in the log.
    07.10.2014 16:55:03:Unable to run query
    07.10.2014 16:55:03:Query: [select object_text from sto_ov_externalnode where name = '{B10255CF-F618-45FB-99BC-31A57D747702}']
    07.10.2014 16:55:03:Connection string: [DSN=Script;DRIVER={SQL Native Client};User ID=xxxxxx;Password=yyyyyy]
    07.10.2014 16:55:03:Error message: 450 [Wrong number of arguments or invalid property assignment]
    Where as i can run query "select object_text from sto_ov_externalnode where name = '{B10255CF-F618-45FB-99BC-31A57D747702}'" successfully directly on database.
    also in the next cycle same query will be successfull within script too.
    Does this help in understanding the problem?
    -KAKA-

  • SSRS Calling a Stored Procedure error : PLS-00306: wrong number or types of arg...

    Hi,
    My Problem is when im adding dataset with stored procedure, im getting this error.
    I Can access database, 
    Could not create a list of fields for the query. Verify that you can connect to the data source and that your query syntax is correct.
    ORA-06550: line 1, column 7: PLS-00306: wrong number or types of arguments in call to 'PROCEDURE_NAME' ORA-06550: line 1, column 7: PL/SQL:
    Statement ignored
    stored procedure is simple select :
    CREATE OR REPLACE PROCEDURE [PROCEDURE_NAME](L_CURSOR out SYS_REFCURSOR)
    is
    Begin
    open L_CURSOR for
    SELECT [columnname] FROM
    [tablename]
    End;
    Configuration Details:
    DB: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64biOracle Developer Tools for Visual Studio Copyright (c) 2005,2014 SQL Server Data Tools Type: Oracle , Data Provider : .Net Framework Data Provider For Oracle

    The answer is of inside question. It is about provider. Change my provider ODTwithODAC for 10g (my database version). And problem resolved.
    Thank you for your helps,
    Regards,
    Arda

  • Error : PLS-00306: wrong number or types of arguments

    Hi,
    I have created a function :
    create or replace procedure Test11 AS
    x Test.Emp_No%Type;
    Begin
    select emp_no into x from Test where name = 'Sud';
    x := x + 1;
    update Test set emp_no = x where emp_no < 100;
    commit;
    end Test11;
    This has compiled successfully in PL/SQL Developer. Now, I have created an executable of this procedure in Front end - 11i. And then I have created a Program of this executable. Then I have added this program to a request group.
    Now that I am running this request and I getting this error in the log :
    ORACLE error 6550 in FDPSTP
    Cause: FDPSTP failed due to ORA-06550: line 1, column 7:
    PLS-00306: wrong number or types of arguments in call to 'TEST11'
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    .

    Hi,
    Your procedure is a little confusing. By the way, this procedure has no parameters and I supose that maybe you are calling it with some parameter. Could you check this please?
    Tip: post your code inside tags (start and end tag are the same) to proper formatting :)
    Regards,
    Edited by: Walter Fernández on Dec 3, 2008 10:53 AM - Adding tip...                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Getting Error Messages "Potentially excessive number of SPRequest objects...

    Hello there were getting erros using the toolkit on a list that won't render. We get correlation ID's and the content won't display.
    Any help would be very helpful on how to rectify it. I read some blogs where you change some registry entries, but thos eentries do not exist.
    Here is the error on the list:

    You can enable logging of SPRequestAllocation.
    Logging SPRequest Allocation Call Stacks
    This post is my own opinion and does not necessarily reflect the opinion or view of Slalom.

  • I get error message invalid serial number

    I get invalid serial Number when installing

    Error "The serial number is not valid for this product" | Creative Suite

  • Getting message "PLS-00306: wrong number or types of arguments in call"

    I am running Oracle 11g on Unix, and am trying to run a stored procedure in a Prism program. For some reason, this particular SP is giving me problems. Tried everything I can think of, but it keeps bombing.
    Here is the proc with definition:
    PROCEDURE NURSELINE_UPDATE_RUN (P_LASTRUNDATE IN INTEGER,
    CUR_NLUPDATE_TABLE OUT T_CURSOR)
    AS
    V_LASTRUNDATE NUMBER(8) := 0;
    V_NOWDATE NUMBER(8) := 0;
    BEGIN
    V_LASTRUNDATE := TO_NUMBER(TO_CHAR((TO_DATE(P_LASTRUNDATE,'YYYYMMDD')),'YYYYMMDD'));
    V_NOWDATE := TO_NUMBER(TO_CHAR(TRUNC(SYSDATE),'YYYYMMDD'));
    OPEN CUR_NLUPDATE_TABLE FOR
    SELECT M.MEMBER_NBR,
    M.FIRSTNAME,
    M.LASTNAME,
    M.YMDBIRTH,
    M.SEX,
    M.SSN,
    MS.DIVISION_NBR,
    NVL(MCAD.ADDRESS1, NVL(MAD.ADDRESS1, DAD.ADDRESS1)) ADDRESS1,
    NVL(MCAD.ADDRESS2, NVL(MAD.ADDRESS2, DAD.ADDRESS2)) ADDRESS2,
    NVL(MCAD.CITY, NVL(MAD.CITY, DAD.CITY)) CITY,
    NVL(MCAD.STATE, NVL(MAD.STATE, DAD.STATE)) STATE,
    NVL(MCAD.ZIP, NVL(MAD.ZIP, DAD.ZIP)) ZIP,
    NVL(MCAD.PHONE1, NVL(MAD.PHONE1, DAD.PHONE1)) PHONE1,
    MS.YMDEFF,
    MS.YMDEND,
    MS.REGION,
    MS.VOID,
    MS.AFF_NBR --prov_nbr instead?
    FROM MEMBER_SPAN MS
    INNER JOIN MEMBER M ON (M.MEMBER_NBR = MS.MEMBER_NBR)
    LEFT OUTER JOIN ADDRESS MCAD ON ((MCAD.ADDR_WHO = CONCAT('S ',M.CONTRACT_NBR))
    AND (MCAD.YMDEFF <= V_NOWDATE)
    AND (MCAD.YMDEND >= V_NOWDATE)
    AND (MCAD.VOID <> 'V')
    AND (MCAD.VOID <> 'Y')
    AND (MCAD.ADDTYPE = 'M CO'))
    LEFT OUTER JOIN ADDRESS MAD ON ((MAD.ADDR_WHO = CONCAT('S ',M.CONTRACT_NBR))
    AND (MAD.YMDEFF <= V_NOWDATE)
    AND (MAD.YMDEND >= V_NOWDATE)
    AND (MAD.VOID <> 'V')
    AND (MAD.VOID <> 'Y')
    AND (MAD.ADDTYPE = 'M'))
    LEFT OUTER JOIN ADDRESS DAD ON ((DAD.ADDR_WHO = CONCAT('S ',M.CONTRACT_NBR))
    AND (DAD.YMDEFF <= V_NOWDATE)
    AND (DAD.YMDEND >= V_NOWDATE)
    AND (DAD.VOID <> 'V')
    AND (DAD.VOID <> 'Y')
    AND (DAD.ADDTYPE = 'D'))
    WHERE (MS.BUSINESS_UNIT = '01')
    AND (MS.PROG_NBR IN ('01','MS','SR','ST','HD','HS','H1','CS','C1','IH'))
    AND (MS.YMDTRANS >= V_LASTRUNDATE)
    AND (MS.VOID <> 'V')
    AND ((MS.VOID = ' ') OR (MS.VOID IS NULL))
    ORDER BY M.MEMBER_NBR, MS.YMDEND;
    END NURSELINE_UPDATE_RUN;
    And here is the call from the program
    // Init connection
    amisysConn := CCOKDatabase.GetAmisysConnection(ApplicationSettings.GetArguments.ApplicationMode,
    ApplicationName.NurseLine);
    amisysConn.Open();
    // Init command
    ocmd := new OracleCommand('CCOK.PKG_ELIG_REPORTS.NURSELINE_UPDATE_RUN', amisysConn);
    ocmd.CommandType := CommandType.StoredProcedure;
    // Add params to proc
    ocmd.Parameters.AddWithValue('V_LASTRUNDATE', ApplicationSettings.GetArguments.LastRunDate.ToString('yyyyMMdd'));
    // Now the output params
    ocmd.Parameters.Add('CUR_NLUPDATE_TABLE', OracleType.Cursor).Direction := ParameterDirection.Output;
    ds := new DataSet();
    // Execute query
    oda := new OracleDataAdapter(ocmd);
    oda.Fill(ds);
    This same call works in another program, so I am at a loss to understand why it's failing here. Other SPs in the same package, and the same Prism solution work without problem, although none of those SPs use input parameters.
    Any help is VASTLY appreciated.
    Thank you!

    This forum is for issues with the SQL Developer tool, so don't expect many answers...
    Regards,
    K.

  • Getting error while creating trigger!!

    Hi Guys,
    I am getting the following error while creating trigger in Oracle10g Database in TOAD environment.
    Error: PLS-00306: wrong number or types of arguments in call to '='
    Table details:
    One of the column having BLOB Data type in the table.
    In the trigger, I have compared :old and :new values.
    CREATE OR REPLACE TRIGGER INPL.trigger_new
    AFTER INSERT OR UPDATE OR DELETE
    ON TABLE_NEW REFERENCING NEW AS NEW OLD AS OLD
    FOR EACH ROW
    DECLARE
    action_flag VARCHAR2(1);
    new_image BLOB;
    BEGIN
    IF UPDATING
    THEN
    action_flag := 'U';
    ELSIF DELETING
    THEN
    action_flag := 'D';
    ELSIF INSERTING
    THEN
    action_flag := 'I';
    END IF;
    IF (:NEW.image = :OLD.image)
    THEN
    new_image := '';
    ELSE
    new_image := :NEW.image;
    END IF;
    INSERT INTO TABLE_NEW(action_flag, date_changed,nimage,oimage) values(new_image,:old.image);
    end;
    Any one knows about this issue, please let me know with the proper solution.
    Thanks for your immediate response!
    Regards,
    Lakshman

    CREATE OR REPLACE TRIGGER INPL.trigger_new
    AFTER INSERT OR UPDATE OR DELETE
    ON TABLE_NEW REFERENCING NEW AS NEW OLD AS OLD
    FOR EACH ROW
    DECLARE
    action_flag VARCHAR2(1);
    new_image BLOB;
    BEGIN
    IF UPDATING
    THEN
    action_flag := 'U';
    ELSIF DELETING
    THEN
    action_flag := 'D';
    ELSIF INSERTING
    THEN
    action_flag := 'I';
    END IF;
    IF (:NEW.image = :OLD.image)
    THEN
    new_image := '';
    ELSE
    new_image := :NEW.image;
    END IF;
    INSERT INTO TABLE_AUD(action_flag, date_changed,nimage,oimage) values(new_image,:old.image);
    end;
    I am getting the error in line at If condition
    Error: PLS-00306: Wrong number or tpyes of arguments in call '='
    Please let me know if any one knows exact solution!
    Thanks in advance!
    Regards,
    Lakshman

  • Getting error when record type is used

    Hi Experts,
    Getting error when using record type as in parameter.
    PLS-00306: wrong number or types of arguments in call to 'SAL_UPDATE_PROC'
    PLS-00302: component 'ENAME' must be declared
    PLS-00302: component 'SAL' must be declared
    CREATE OR REPLACE PACKAGE emp_details_proc
    IS
    TYPE emp_record IS RECORD
    (empno emp.empno%TYPE,
    ename emp.ename%TYPE,
    sal emp.sal%TYPE);
    TYPE emp_type is TABLE OF emp_record INDEX BY binary_integer;
    PROCEDURE EMP_PROC;
      PROCEDURE sal_update_PROC
      (    p_rule in  emp_type
         , p_deptno in number
         , p_job in number
    END;
    CREATE OR REPLACE PACKAGE BODY emp_details_proc
    IS
    PROCEDURE EMP_PROC
      IS
        V_DEPTNO NUMBER := 10;
        V_JOB VARCHAR2(20):='CLERK';
      BEGIN
    for rc in (SELECT EMPNO,ENAME,SAL FROM emp where deptno =v_deptno)
             loop
                  sal_update_PROC
                  (  p_rule => rc
                    , p_deptno => V_DEPTNO
                    , p_job =>V_JOB
      end loop;
    EXCEPTION
         WHEN OTHERS THEN
    DBMS_output.put_line(SQLERRM);
    END;
      PROCEDURE  sal_update_PROC
      (    p_rule in  emp_type
         , p_deptno in number
         , p_job in number
      IS
        V_ename VARCHAR2(20);
        V_SAL NUMBER;
      BEGIN
          V_ename := p_rule.ename;
          V_sal := p_rule.sal;
            IF V_sal <=3000 THEN
            UPDATE EMP SET sal=sal+v_sal*10 WHERE ename=v_ename;
            commit;
          END IF;
    dbms_output.put_line(v_ename||'   '||v_sal);      
          END;
          END;
    Instead of this
    SELECT EMPNO,ENAME,SAL FROM emp where deptno =v_deptno;
      PROCEDURE  sal_update_PROC
      (    p_rule in  emp_type
         , p_deptno in number
         , p_job in number
    If I use
    SELECT * FROM emp where deptno =v_deptno
      PROCEDURE  sal_update_PROC
      (    p_rule in  emp%ROWTYPE
         , p_deptno in number
         , p_job in number
      I am not getting any error.
      Please help me.Why I am getting error what is wrong in my code.
      Thanks in advance.

    for rc in (SELECT EMPNO,ENAME,SAL FROM emp where deptno =v_deptno)
             loop
                  sal_update_PROC
                  (  p_rule => rc                        
                    , p_deptno => V_DEPTNO
                    , p_job =>V_JOB
    p_rule => rc       --> What exactly in rc? It's just a counter. You are using this (SELECT EMPNO,ENAME,SAL FROM emp where deptno =v_deptno)query but not using a single value returned from this query in the code.
    Ishan

  • Getting error for bind variables

    Hello Experts ;
    SQL> DECLARE
      2  l_eid  number;
      3  l_name  varchar2(30);
      4  BEGIN
      5  l_eid:=1000;
      6  select name into l_name from tab1 where no = l_eid;
      7  l_eid:=9999;
      8  select name into l_name from tab1 where no = l_eid;
      9  l_eid:=299999;
    10  select name into l_name from tab1 where no = l_eid;
    11* END;
    PL/SQL procedure successfully completed.
    when  creating bind variables  i am getting error :
    SQL> variable b1 number;
    SQL> exec :b1 :='select name from tab1 where no = :b1';
    BEGIN :b1 :='select name from tab1 where no = :b1'; END;
    * ERROR at line 1:
    ORA-06502: PL/SQL: numeric or value error: character to number conversion error
    ORA-06512: at line 1

    @ SY
    SolomonYakobson wrote:
    You need to explain "method not workable for me". I have no idea what method you are talking about and what are you trying to achieve.
    SY.
    SQL>DECLARE
        v_value  number;
        v_dispaly varchar2(30);
        BEGIN
       v_value :=100000;
        select name into v_display from tab1 where no = :v_value;
        DBMS_OUTPUT.PUT_LINE(v_display);
        v_value :=20000;
        select name into v_display from tab1 where no = :v_value;
        DBMS_OUTPUT.PUT_LINE(v_display);
         v_value :=250000;
        select name into v_display from tab1 where no = :v_value;
        DBMS_OUTPUT.PUT_LINE(v_display);
      * END;
    RS>/
    PL/SQL procedure successfully completed.
    >>  This is not workable for me ,  Here getting error  >>
    SQL> DECLARE
      2  variable  b1  number;
      3  exec  :b1;
      4  BEGIN
      5  select  name  from  tab1  where no =: b1;
      6* END;
    RS>/
    variable b1 number;
    ERROR at line 2:
    ORA-06550: line 2, column 13:
    PLS-00103: Encountered the symbol "NUMBER" when expecting one of the following:
    := . ( @ % ; not null range default character
    Thanks !

  • Wrong number or types error

    I am trying to connect to a stored procedure. The arguments are defined as NUMBER, VARCHAR2, and DATE.
    Here is the call I am making:
    stmt = con.prepareCall("{ call procedure(?, ?, ?) }");
              stmt.registerOutParameter(1, Types.INTEGER);
              stmt.registerOutParameter(2, Types.VARCHAR);
              stmt.registerOutParameter(3, Types.DATE);
    I have defined param 1 as int, param 2 as String, and param 3 as java.sql.Date
    Any ideas as to why the error has the wrong number or types? I am sure there are only three paramaters. I am not sure if I have defined the java types correctly. The return should echo the input. This is only a test to connect to a new client and I cannot figure out what I am doing wrong.

    The db is oracle 9i.

  • Error occurred when modifying array

    I have recently built a new machine with the stuff listed in my profile. I have trawled these formums but have not found any with the specific problem- given that i have not read every thing written perhaps some one can shed some light onto this problem.
    I have a single Seagate Barracuda 120GB SATA drive that is recognised by the Promise BIOS after you press F6 (you get a "no Array defined" error and F6 to setup array or ESC to continue boot.
    Once in the Bios you are offered (correctly) the performance option and all the seagates parameters are recognised correctly. This is true in option 1 auto and 3 define array.  So you select Ctrl Y to build your array and get
    "Error occurred when modifying array. System is going to Reboot ! press any key to reboot"
    I don't know where to begin on this. the machine has no OS on it as I hoped to install XP onto this drive and have Mandrake on the 4GB.
    Any ideas anyone.
    P.S.
    I have lots of cooling and a 400W PSU. :]

    hi
    400w psu does not say ANYTHING.
    for example an enermax 350w has MUCH more power than a q-tec 550w.
    post amps on the 3.3v 5v and 12v rails on the psu.
    should be written on a label on the psu.
    k7n2 is VERY picky about memory and i dont think your memory is approved nforce2 memory.
    there is a thread about memory at the top of this forum.
    try other memory if you have it.
    could also try http://www.memtest86.org
    its a mem test program.
    try to remove zip.
    have seen alot of people having strange problem due to a zip drive.
    bye

  • Getting error while tring to Check in any document in Sharepoint 2007. Error - "Unable to validate data. System.Web.Configuration.MachineKey.GetDecodedData(Byte[] buf, Byte[] modifier, Int32 start, Int32 length, Int32& dataLength) ...

    Hi Team,
    I am getting error while tring to Check in any document in Sharepoint 2007. Error - "Unable to validate data. System.Web.Configuration.MachineKey.GetDecodedData(Byte[] buf, Byte[] modifier, Int32 start, Int32 length, Int32& dataLength).
    Anybody please let me know how to resolve the issue. It has affected our 9 site collection with almost 2000+ sites. Please email me your your suggestion or you can share your ideas here also.
    Tried to reset the IIS, checked the Internet connection speed (8MBps). Cleared the cache and all but no luck.
    Thanks,
    Pronob

    Hello,
    I have found this support window for you:
    http://support.microsoft.com/kb/556031
    http://technet.microsoft.com/en-in/library/cc298582%28v=office.12%29.aspx
    This may help you
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

Maybe you are looking for

  • Integration between Oracle BPM and RTD(rule engine)

    Hi, I have Oracle BPM - 10.3.2.0.0  Build 100141 Oracle RTD(rules engine) - 3.0.0.1 Please let me know whether the versions of RTD and Oracle BPM mentioned above can be integrated with each other. How the interaction between Oracle BPM enterprise and

  • "10.4 cannot be installed on this machine?"

    I'm currently running 10.4.7 on my macbookpro. To make a long story short, I was partitioning my hard drive using bootcamp when I get the error message saying basically, "can't verify hard disk. run off your installation cd and repair disk." I get in

  • "sapdp00" not reached

    Dear All, We installed SAP 7.0, in windows 2003 server Due to power maintenance schedule, we shutdown the machine. Then  restart of my server after 5 Hours. while SAP login following error shows. "sapdp00" not reached. WSAECONNREFUSED connection refu

  • [SOLVED] Wifi dead after update on my samsung laptop

    My wifi started acting up a few weeks ago after one of my weekly updates. After some research I found that the issue was with the new version of wpa_supplicant(2.1-3) and downgrading it to 2.0 fixed it. This worked for a couple of weeks and then the

  • Cannot be restored, error (-1)

    Very unhappy with my iPhone 3G thus far, last year's model was MUCH more reliable... Anyway, I keep getting this message whenever I try to restore (due to my iPhone constantly crashing): "iPhone cannot be restored" followed by "error (-1)" So now wha