"OCI-21560: argument 4 is null, invalid, or out of range"

Hi,
When I am running query *"select xmlelement("SQLX", 'Hello World!') from dual"* in Toad , i am getting below error -
*"OCI-21560: argument 4 is null, invalid, or out of range"*
In sql prompt also it is not runnig.Got below error.
SQL> select xmlelement("SQLX", 'Hello World!') from dual
2 /
select xmlelement("SQLX", 'Hello World!') from dual
ERROR at line 1:
ORA-03113: end-of-file on communication channel
SQL>
DB version -
BANNER
Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
PL/SQL Release 11.1.0.7.0 - Production
CORE 11.1.0.7.0 Production
TNS for HPUX: Version 11.1.0.7.0 - Production
NLSRTL Version 11.1.0.7.0 - Production
Please let me know the solution.
Rg.
Subir

Error: ORA 3136
Text: null common code generated
Cause: This is an internal error.
Action: Document messages and contact Oracle Worldwide Support.
For more information about the Spatial Data option, see <Oracle7
Spatial Data Option Reference and Administrator's Guide>.

Similar Messages

  • Dbms_lob.copy  ORA=21560 ORA-21560: argument 3 is null, invalid, or out of

    I am trying to download a blob from a database table and I am getting ORA-21560: argument 3 is null, invalid, or out of range
    this is my code:
    PROCEDURE retrieve_document (p_pk_id in varchar2)
    IS
    size1 integer;
    blob1 BLOB ;
    tmpblob BLOB;
    l_mimetype varchar2(4000);
    BEGIN
    BEGIN
    insert into temp_document
    select pk_id,document_file,mime_type
    from portal_documents
    where pk_id = p_pk_id;
    select document_file, mime_type
    into blob1, l_mimetype
    from temp_document;
    --insert into temp_stu_pic select student_id, student_picture from stu_pics
    where student_id = 'CHS321';
    --select student_picture into blob1 from temp_stu_pic where student_id = 'CHS321';
    EXCEPTION when no_data_found then null;
    END;
    size1 := dbms_lob.getlength(blob1);
    dbms_lob.createtemporary(tmpblob,true);
    dbms_lob.copy(tmpblob,blob1,size1,1,1);
    owa_util.mime_header(l_mimetype, false,null);
    htp.p('Content-length: '|| size1);
    htp.p('Pragma: no-cache');
    htp.p('Cache-Control: no-cache');
    htp.p('Expires: Thu, 01 Jan 1970 12:00:00
    GMT');
    owa_util.http_header_close;
    wpg_docload.download_file(tmpblob);
    dbms_lob.freetemporary(tmpblob);
    END retrieve_document;
    Anybody know why I would be getting this error?

    In the future, use the PRE and /PRE tags, enclosed in [] to format your code.
    You have commented out some code, and left other portions.
    If you're actually getting an error when running (which i would guess you are based on the thread title) then show us the copy / paste of the error message which shows line numbers, etc...
    PROCEDURE retrieve_document (p_pk_id in varchar2)
    IS
       size1 integer;
       blob1 BLOB ;
       tmpblob BLOB;
       l_mimetype varchar2(4000);
    BEGIN
       BEGIN
       insert into temp_document
       select pk_id,document_file,mime_type
       from portal_documents
       where pk_id = p_pk_id;
       select document_file, mime_type
       into blob1, l_mimetype
    from temp_document;
    --insert into temp_stu_pic select student_id, student_picture from stu_pics
    where student_id = 'CHS321';
       --select student_picture into blob1 from temp_stu_pic where student_id = 'CHS321';
       EXCEPTION when no_data_found then null;
       END;
       size1 := dbms_lob.getlength(blob1);
       dbms_lob.createtemporary(tmpblob,true);
       dbms_lob.copy(tmpblob,blob1,size1,1,1);
       owa_util.mime_header(l_mimetype, false,null);
       htp.p('Content-length: '|| size1);
       htp.p('Pragma: no-cache');
       htp.p('Cache-Control: no-cache');
       htp.p('Expires: Thu, 01 Jan 1970 12:00:00
       GMT');
       owa_util.http_header_close;
       wpg_docload.download_file(tmpblob);
       dbms_lob.freetemporary(tmpblob);
    END retrieve_document;Message was edited by:
    Tubby

  • Message Popup dialog box - "Value invalid or out of range"

    Hi
    From time to time I get an error when trying to display Message Popup dialog boxes. The error appears sporadically and always disappears when I restart TestStand. This happens for all Message Popup dialog boxex (TS standard box).
    The error is "Value invalid or out of range". I get no clues as to why this occurs.
    Any ideas?
    TestStand 2010 SP1 running on Windows 7 64bit.
    Attachments:
    Untitled.png ‏29 KB

    Can you provide the sequence containing that step?
    Without seeing the parameters, its quite hard to give you some hints where to look....
    Norbert
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • OCI-21560 when using XMLElement

    Dear All,
    I've just made my first step regarding to the XML field, but the following select caused me an error:
    select XMLElement ("colors", color) from my_colors;
    OCI-21560: argument 3 is null, invalid, or out of range
    I was looking for answers on google and here, but I couldn't find anything usable.
    One did tell me, that the reason of the error might be using Oracle version 9.2.0.4, so I patched it to 9.2.0.6, but the problem remained the same...
    I do really hope that someone has the solution here and won't hesistate to share it with me! :-)
    Thank You!
    Franky

    Franky,
    First of all, show us if you can do a direct select. Like
    select color from my_colors;
    I was able to do this similar query though:
    SQL> conn scott/tiger
    Connected.
    SQL> select empno from emp;
         EMPNO
          7369
          7499
          7521
          7566
          7654
          7698
          7782
          7788
          7839
          7844
          7876
         EMPNO
          7900
          7902
          7934
    14 rows selected.
    SQL> select xmlelement("EmpNo", empno) from emp;
    XMLELEMENT("EMPNO",EMPNO)
    <EmpNo>7369</EmpNo>
    <EmpNo>7499</EmpNo>
    <EmpNo>7521</EmpNo>
    <EmpNo>7566</EmpNo>
    <EmpNo>7654</EmpNo>
    <EmpNo>7698</EmpNo>
    <EmpNo>7782</EmpNo>
    <EmpNo>7788</EmpNo>
    <EmpNo>7839</EmpNo>
    <EmpNo>7844</EmpNo>
    <EmpNo>7876</EmpNo>
    XMLELEMENT("EMPNO",EMPNO)
    <EmpNo>7900</EmpNo>
    <EmpNo>7902</EmpNo>
    <EmpNo>7934</EmpNo>
    14 rows selected.
    PS.: Are "just" volunteers working here?YES.
    Also , you might want to check out the XML DB Forum.
    XML DB
    Rahul.

  • OO4O, OCI-21560 when selecting records with XMLTYPE column

    When I try to select records from a table with XMLTYPE column
    Set sqldynaset = oraDatabase.dbcreatedynaset("select * from tab1",
    ORADYN_READONLY)
    I got the error message:
    OCI-21560: argument 3 is null, invalid, or out of range.
    Please help.
    Development Tool: VB6
    Oracle Client Version (OIP) : 9.2.0.4.4
    Platform: Window XP

    OO4O doesn' t understand XMLType.

  • Spatial: create index gets ORA-22060: argument [2] is an invalid number

    Hi,
    I'm trying to create a spatial index on an SDO_GEOMETRY column in 10gR2, but getting the following error:
    CREATE INDEX GR_TEST_ADDRP_SIDX ON GR_TEST
    (ADDRESS_POINT)
    INDEXTYPE IS MDSYS.SPATIAL_INDEX
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-22060: argument [2] is an invalid or uninitialized number
    ORA-06512: at "MDSYS.SDO_INDEX_METHOD_10I", line 10Any pointers to what I should be looking for here?

    Found solution to my problem. When inserting to USER_SDO_GEOM_METADATA I copied insert statement from existing metadata and insert statement had NULLs in the 3rd and 4th dimension. Took those out and now index creates okay.

  • Refresh data source view gets 'column' argument cannot be null

    When I try to refresh a data source view in SQL Server 2008 BIDS, I get the error: System.Data   'column' argument cannot be null.  Parameter name: column.   How to resolve this?  The underlying tables have no data yet.

    Hi PCSQL66,
    The error message should be caused by FOREIGN KEY constraint auto-generated. If you
    add a FOREIGN KEY to the generated table, then you will see the error message after clicking refresh button. Please submit this issue to below official link and then post the link back here, I think we need to get confirmation from product group.
    http://connect.microsoft.com/SQLServer
    Thanks,
    RaymondRaymond Li - MSFT

  • Oracle ORA-01428: argument is out of range error

    Oracle ORA-01428: argument is out of range error

    I take it you don't feel like spending the extra money for the EE add-on that was designed to CREATE an INDEX on polygons of logitude,latitude values in such away that a simple
    SELECT * FROM ZIP_CODES WHERE SDO_WITHIN_DISTANCE( Z.ZIPCODE_AREA, /* point for zipcode */, 'distance=' || in_distance ) = 'TRUE';
    will be very efficient and fast.
    primary thing:
    you need to drop out the WHEN OTHERS THEN NULL;
    also, take advantage of the NO_ROWS_FOUND exception for finding out if a row exists in the database. (instead of doing an IF statement on the results of COUNT(*))
    back to your problem
    You'll need to investigate which row is causing the problem.
    Most likely, it is the zipcode that was the input for the search.  I've seen this occur many times on similar trigonometric calculations.
    You may have to surround a lot of those trigonometric functions with ROUND( ____, 25) to get it to work.
    However, I highly advise you to take a look at what can be done with Oracle Spacial
    MK

  • ORA-01428: argument '-1' is out of range

    hi
      here is the details: -
    Select walkin_id, applying_for from walkins where walkin_id =197
    WALKIN_ID     APPLYING_FOR
    197             CLASS1:CLASS2:OTHER /*stored colon seprated classification*/
    Select program_id, program_name, classification from ss_programs
    PROGRAM_ID     PROGRAM_NAME     CLASSIFICATION
    1             PG1                         CLASS1
    2             PG2                         CLASS1
    3             PG3                         CLASS3
    4             PG4                         CLASS1
    5             PG5                         CLASS1
    6             PG6                         CLASS1
    7             PG7                         CLASS1
    8             PG8                         CLASS1
    9             PG9                         CLASS1
    10             PG10                     CLASS2
    11             PG11                    CLASS2
    12             PG12                     CLASS3
    13             PG13                     CLASS1
    14             PG14                     CLASS1
    15             PG15                    CLASS1
    16             PG16                     CLASS1
    17             PG17                     CLASS1
    18             OTHER                     OTHER
    now i wanted to extract all the program_ids belongs to the  walkins.applying_for (colon seprated ss_programs.classification) and
    rebuild them into colon separated list
    like if
    walkins.applying_for is :  CLASS1:CLASS2:OTHER then the
    program_list would be : PG1:PG2:PG4:PG5:PG6:PG7:PG8:PG9:PG10:PG11:PG13:PG14:PG15:PG16:PG17:OTHER
    and for this i build the following query and its giving me
    "ORA-01428: argument '-1' is out of range" error and i am stucked.
    So could you please tell me where i am doing wrong
    and can we do this with SQL like below specified query or some other (SQL) way.
    SELECT SUBSTR (LTRIM(MAX (SYS_CONNECT_BY_PATH (program_id, ':')) KEEP (DENSE_RANK LAST ORDER BY curr),
                    ':'), 2) programs
    FROM               
    (SELECT walkin_id, program_id,
           row_number() over (partition by 1 order by program_id) curr,
           row_number() over (partition by 1 order by program_id)-1 prev
    FROM      
    (SELECT wp.walkin_id, sp.program_id
    FROM SS_PROGRAMS sp,
        (SELECT walkin_id, substr(val, decode(level, 1, 1, INSTR(val, ':', 1, LEVEL -1)+1),
               INSTR(val, ':', 1, level) - decode(level, 1, 1, INSTR(val, ':', 1, LEVEL -1)+1)) walkin_classif
           FROM      
           (SELECT walkin_id, DECODE(SUBSTR(applying_for, -1, 1), ':', applying_for, applying_for||':') val FROM walkins
        WHERE walkin_id =197)
        CONNECT BY INSTR(val, ':', 1, LEVEL) > 0) wp
    WHERE sp.classification = wp.walkin_classif))
    GROUP BY walkin_id
    CONNECT BY prev = PRIOR curr AND walkin_id = PRIOR walkin_id
            START WITH curr = 1;

    And if you want it to work for more than 1 walkin at the same time:
    SQL> create table walkins (walkin_id, applying_for)
      2  as
      3  select 197, 'CLASS1:CLASS2:OTHER' from dual union all
      4  select 198, null from dual union all
      5  select 199, 'CLASS4' from dual union all
      6  select 200, 'CLASS3:CLASS1' from dual
      7  /
    Table created.
    SQL> create table ss_programs (program_id, program_name, classification)
      2  as
      3  select 1, 'PG1', 'CLASS1' from dual union all
      4  select 2, 'PG2', 'CLASS1' from dual union all
      5  select 3, 'PG3', 'CLASS3' from dual union all
      6  select 4, 'PG4', 'CLASS1' from dual union all
      7  select 5, 'PG5', 'CLASS1' from dual union all
      8  select 6, 'PG6', 'CLASS1' from dual union all
      9  select 7, 'PG7', 'CLASS1' from dual union all
    10  select 8, 'PG8', 'CLASS1' from dual union all
    11  select 9, 'PG9', 'CLASS1' from dual union all
    12  select 10, 'PG10', 'CLASS2' from dual union all
    13  select 11, 'PG11', 'CLASS2' from dual union all
    14  select 12, 'PG12', 'CLASS3' from dual union all
    15  select 13, 'PG13', 'CLASS1' from dual union all
    16  select 14, 'PG14', 'CLASS1' from dual union all
    17  select 15, 'PG15', 'CLASS1' from dual union all
    18  select 16, 'PG16', 'CLASS1' from dual union all
    19  select 17, 'PG17', 'CLASS1' from dual union all
    20  select 18, 'OTHER', 'OTHER' from dual
    21  /
    Table created.
    SQL> with walkins_normalized as
      2  ( select walkin_id
      3         , substr
      4           ( ':' || applying_for || ':'
      5           , instr(':' || applying_for || ':',':',1,l) + 1
      6           , instr(':' || applying_for || ':',':',1,l+1) - instr(':' || applying_for || ':',':',1,l) -1
      7           ) applying_for_element
      8      from walkins w
      9         , ( select level l
    10               from ( select max(length(applying_for) - length(replace(applying_for,':')))+1 maxn
    11                        from walkins
    12                    )
    13            connect by level <= maxn
    14           ) m
    15     where l <= length(applying_for) - length(replace(applying_for,':'))+1
    16  )
    17  , string_aggregated as
    18  ( select walkin_id
    19         , rtrim(pl,':') program_list
    20         , rn
    21      from walkins_normalized w
    22         , ss_programs p
    23     where w.applying_for_element = p.classification
    24     model
    25           partition by (w.walkin_id)
    26           dimension by (row_number() over (partition by w.walkin_id order by p.program_id) rn)
    27           measures (cast(p.program_name as varchar2(100)) pl)
    28           rules
    29           ( pl[any] order by rn desc = pl[cv()] || ':' || pl[cv()+1]
    30           )
    31  )
    32  select walkin_id
    33       , program_list
    34    from string_aggregated
    35   where rn = 1
    36  /
    WALKIN_ID PROGRAM_LIST
           197 PG1:PG2:PG4:PG5:PG6:PG7:PG8:PG9:PG10:PG11:PG13:PG14:PG15:PG16:PG17:OTHER
           200 PG1:PG2:PG3:PG4:PG5:PG6:PG7:PG8:PG9:PG12:PG13:PG14:PG15:PG16:PG17
    2 rows selected.And by the way, you should think of redesigning your walkins table to something normalized...
    Regards,
    Rob.

  • Argument #1 of "Gridrowcolumnvalue" is out of range

    Hi I have a CrossTab that I am trying to manually insert information to.
    The idea is that I have two arrays (One with a date value and the other with a dollar value). I would like to match the date on the header of the column to that of my "ConsDate" array and pull the corresponding dollar amount from my "ConsPrice" array.
    My calculated member formula is as so
    global datevar array ConsDate;
    global numbervar array ConsPrice;
    local numbervar i;
    local numbervar Output;
    for i := 1 to ubound(ConsDate) do(
        if ConsDate[i] = date(gridrowcolumnvalue("@Date")) then(
            Output := ConsPrice[i];
            exit for;
            0;
        else
            Output := 0
    Output;
    However, I am getting the error 'Argument #1 of "Gridrowcolumnvalue" is out of range'
    Does anyone have a workaround for this?
    Thanks!

    Hi Abhilash I managed to fix it myself.
    Apparently it was trying to obtain a datetime value from the "Total" column.
    I ended up fixing it by adding a constraint
    global datevar array ConsDate;
    global numbervar array ConsPrice;
    local numbervar i;
    local numbervar j;
    local numbervar Output;
    local numbervar Summary;
    if currentcolumnindex = GetNumColumns - 1 then(
        for i := 0 to GetNumColumns - 2 do
            Summary := Summary + gridvalueat(currentrowindex,i,currentsummaryindex);
    for i := 1 to ubound(ConsDate) do(
        if currentcolumnindex in 0 to GetNumColumns - 2 then(
            if  month(ConsDate[i]) = month(date(gridrowcolumnvalue("@Date"))) then
                Output := ConsPrice[i];
        else
            Output := Summary;
    Output;

  • Index: The argument is out of range: 8 0 or 8 =8. (Error: RWI 00012)

    Hi Friends,
    One of my user is receiving the below error, pls help me is resolving this.
    index: The argument is out of range: 8<0 or 8>=8. (Error: RWI 00012)
    Thanks in Advance
    MMVIHAR

    Hi,
    No, you defiitely should not/cannot apply FP4.2 ontop of SP05
    This fix is going to be ported to FP5.1  which is planned for CW25 (end of June)  according to here:
    https://websmp104.sap-ag.de/~form/sapnet?_SHORTKEY=01200252310000092015&_SCENARIO=01100035870000000202&
    Regards,
    H

  • Numeric value out of range (null) - Inserting a double

    Allright,
    I can't figure this out to save my life.. I am refusing to put my code up because I am trying to insert into a DB Table with 140 some fields, so I will explain as best I can.. I am trying to insert a double into my DB.. I have been getting a numeric value out of range error on insertion. Just to see if it was a db problem, I shortened my query to 4 fields and two of them being the doubles for insertion. They inserted fine. So needless to say, i presumed that my insert statement for the 140 fields query was off. I double checked it and everything seems to be in order. I still get the error. I can assure that everything matches up.. my SQL string looks like this :
    SQL = "INSERT INTO TABLE 1 (VAL1, VAL2, VAL3 ... VAL146) VALUES (?, ?, ? .... ?);
    and my preparedStmt :
    ps = con.prepareStatement(SQL);
    ps.setInt(1, val1);
    ps.setInt(2, val2);
    ps.setString(3, val3);
    ps.setDouble146, val146);
    ps.executeUpdate();
    Please help me solve this..
    Ed

    The name of the table is FAC.
    Here is the query:
    INSERT INTO FAC (FAC_SK, KEY, ACTIVITY, BE_NUMBER,CATEGORY, CC, CLASS_LVL, CONDITION, COORD_BASIS, COORD_DATUM, COORD_DERIV,DOMAIN_LVL, EVAL, GRAPHIC_CC, GRAPHIC_ED_NUM, GRAPHIC_SCALE, GRAPHIC_SERIES,LAST_CHG_USERID, MIDB_TIMESTAMP, OPER_STATUS, OSUFFIX, PROD_LVL_CAP,PROD_LVL_REQ, RECORD_STATUS, RES_PROD, COORD, DATETIME_CREATED,DATETIME_LAST_CHG, FAC_NAME, GRAPHIC_AGENCY, GRAPHIC_ED_DATE,GRAPHIC_SHEET, REVIEW_DATE, ACCESS, AFFILIATION, AIR_DEF_AREA,ALLEGIANCE, BE, CAPACITY, CAPACITY_EVAL, CAPACITY_MAX, CAPACITY_UM,CLASS_RATING, CMD_CNTL_COMM, CODEWORD, CONDITION_AVAIL, CONTROL_MARK,COORD_DERIV_ACC, COORD_DERIV_ACC_UM, COORD_ROA, COORD_ROA_CONF_LVL,COORD_ROA_UM, CPFL, CRITICAL_INDUSTRY, DECLASS_ON, DEGREE_INTEREST,ELEVATION, LAT, LON, ELEVATION_ACC, ELEVATION_CONF_LVL, ELEVATION_DATUM,ELEVATION_DERIV, ELEVATION_DERIV_ACC, ELEVATION_DERIV_ACC_UM, ELEVATION_MSL,ELEVATION_MSL_ACC, ELEVATION_MSL_CONF_LVL, ELEVATION_MSL_DERIV, ELEVATION_MSL_DERIV_ACC,ELEVATION_MSL_DERIV_ACC_UM, ELEVATION_MSL_UM, ELEVATION_UM, FOREIGN_TECH_CC,FOREIGN_TECH_PERCENT, FPA, FUNCT_PRIMARY, FUNCT_SECONDARY, GEOIDAL_MSL_SEPARATION,GEOIDAL_MSL_SEPARATION_UM, ILAT, ILON, INTEGRATION, LINE_QTY, MED_DIAGNOSTICS,MED_MASS_CASUALTY, MIL_AREA, MIL_GRID_SYS, MODERNIZATION, MSN_PRIMARY, MSN_PRIMARY_SPECIALTY,MSN_SECONDARY, MSN_SECONDARY_SPECIALTY, OPEN_STG_COVERED, OPEN_STG_FILLED, OPEN_STG_TOTAL,OPEN_STG_UM, OUTPUT, OUTPUT_EVAL, OUTPUT_MAX, OUTPUT_RATE, OUTPUT_UM, PERIODICITY, PIN,POL_SUBDIV, POP_AREA, POP_AREA_PROXIMITY, POWER_DISTRICT, POWER_DISTRICT_SUB, POWER_SOURCE,RECUP_INTRVL, RECUP_INTRVL_MAX, RECUP_INTRVL_UM, RECUP_LOSS_IMPACT, RECUP_REPAIR_PRIORITY,RELATIVE_RANKING, RELEASE_MARK, ROLE_LVL, ROLE_TYPE, SCALE, TDI, TGT_RESTR, TURN_AROUND_TIME,WAC, WATERBODY, ADDRESS_NAME, CAPACITY_DATE, CAPACITY_EVAL_DATE, COORD_DATETIME,DATETIME_BEGIN, DATETIME_END, DATETIME_FIRST_INFO, DATETIME_LAST_INFO, DECLASS_ON_DATE,LOC_NAME, MAX_DEMO_USE, MIL_GRID, OUTPUT_DATE, OUTPUT_EVAL_DATE, PLACE_NAME, POSTAL_CODE,SCENARIO_SET, STREET_NAME, STREET_NUM, SYMBOL_CODE, UTM) VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?);
    The query works fine if I have no value for the two doubles : LAT and LON..
    If I have a value for them, the thing gives me an error:
    Numeric value out of range (null)
    If you see anything wrong with that query.. Let me know..
    Takizzle

  • When I try and put iTunes on my windows laptop is says certificate is invalid or out of date how do I fix this

    My iTunes stopped working on my windows laptop so I uninstalled it then tried to download iTunes again ,but now says my certificate is invalid or out of date . What is wrong and how do I fix it. I have windows vista on my laptop

    Try the direct download links in the further information area of Troubleshooting issues with iTunes for Windows updates.
    tt2

  • IE 10 templates doesn't load in 2008 Error"An Invalid or out of place input element was detected and will be ignored"

    Hi Team,
    In our organisation we have DC running on Windows 2008 R2 server along with more than 1000 clients.
    We recently procured around 600 new desktop, which are shipped with Windows 8.1 OS.
    Now the issue is
    Hence we can't create GPP for IE 10, we have created a GPP for IE 10 from a Windows 8.1 client, but that policy wasn't get pushed to the all other client machine.
    We have tried replacing the ADMX & ADML template in our server to push the GPP, still it doesn't worked.
    When we expand the GPP we get the following error message.
    "An invalid or out of place input element was detected and will be ignored."
    Due to this we are unable to push the GPP for around 600 machines, need your assistance.

    As like the blog page you have shared; I am trying to imply proxy settings for the client machines running with IE11, Hence I have created GPP in one of a Windows 8.1 client machine and noticed it wasn't working  (as they are not compatible with the
    IE 10 and above) in windows 2008 server to push the GPP.
    Based on the Microsoft forums I to replaced the ADMX and ADML files in my Windows Server 2008, for getting the GPP created for IE 10.
    Answering your question, I get that error messages only in my Windows 2008R2, as they dont aware about those settings.
    The WindowsServer OS version is irrelevant for applying/pushing GPP.
    We use WS2003 DC's with GPP (GPP settings for IE11 created with Win8.1 RSAT/GPMC) and it all works perfectly.
    Check your GPP settings with Win8.1 - have you correctly set the "enabled/disabled" by using F5/F6/F7/F8 ?
    http://blogs.technet.com/b/grouppolicy/archive/2008/10/13/red-green-gp-preferences-doesn-t-work-even-though-the-policy-applied-and-after-gpupdate-force.aspx
    http://technet.microsoft.com/en-us/library/cc754299.aspx
    http://www.gruppenrichtlinien.de/artikel/f5-f6-f7-f8-und-f3-gpps-aktivierendeaktivierennicht-konfigurieren/
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • ORA-01428: argument '0' is out of range

    Hi,
    in 10g R2 , I created (code found in David Kurtz article) a function as follows but when use it I receive an error :
    SQL> CREATE OR REPLACE FUNCTION h2i (p_hash_value NUMBER) RETURN VARCHAR2 IS
      2  l_output VARCHAR2(10) := '';
      3  BEGIN
      4  FOR i IN (
      5  SELECT substr('0123456789abcdfghjkmnpqrstuvwxyz',1+floor(mod(p_hash_value/(POWER(32,LEVEL-1)),32)),1) sqlidchar
      6  FROM dual CONNECT BY LEVEL <= LN(p_hash_value)/LN(32) ORDER BY LEVEL DESC
      7  ) LOOP
      8  l_output := l_output || i.sqlidchar;
      9  END LOOP;
    10  RETURN l_output;
    11  END;
    12  /
    Function created.
    SQL> select SQL_PLAN_HASH_VALUE, sql_id ,h2i(SQL_PLAN_HASH_VALUE) from v$active_session_history;
    select SQL_PLAN_HASH_VALUE, sql_id ,h2i(SQL_PLAN_HASH_VALUE) from v$active_session_history
    ERROR at line 1:
    ORA-01428: argument '0' is out of range
    ORA-06512: at "SYS.H2I", line 4ANy idea ? Any help ,
    Thank you.

    Thaks Michael,
    SELECT sql_id, dbms_utility.sqlid_to_sqlhash (sql_id) hash,
           sql_plan_hash_value
      FROM v$active_session_history
    WHERE sql_plan_hash_value != 0
    SQL_ID              HASH SQL_PLAN_HASH_VALUE
    g1p4md32k85mv 3307476603           149324150
    bwhzpth8a3zgv  279051771          2848324471
    bwhzpth8a3zgv  279051771          2848324471
    0zcud3g9fky57 3538516135          2890534904
    0zcud3g9fky57 3538516135          2890534904
    0zcud3g9fky57 3538516135          2890534904
    08bqjmf8490s2 2420409090          2890534904
    4gd6b1r53yt88 3393152264          2675018582
    4gd6b1r53yt88 3393152264          2675018582
    26xbn5mhmjqn9 3778599561           381738983
    4gd6b1r53yt88 3393152264          2675018582Then can I conclude that h2i function is wrong and it would be better to use original oracle dbms_utility.sqlid_to_sqlhash ?

Maybe you are looking for

  • Please Help: old Airport Extreme, new Aiport Express, want to WDS

    Hi, I'm sorry if this topic has been covered before, but I can't seem to find a post with my exact situation. I have a G4 desktop (no Airport card) connected to an Airport Extreme Base Station (about 2 years old) which is connected to a 2wire DSL mod

  • My project is stuck in a loop. How can I stop it so that I can start a new project?

    My project is stuck in a loop. How can I stop it so that I can start a new project?

  • Negative values in FSV Hierarchy

    Dear All, i installed profit & Loss Balance sheet based on 0figl_v10 and  loaded the data for FSV, report is working fine data is also correct. but the problem is its showing some negative values, like sales gross,inventory etc.......... what could b

  • Why won't my camera appear?

    When I was charging my iPod touch via USB iTunes opened up and automatically started restoring my iPod. I have the newest software. But after the iPod was done restoring and cut back on, my camera isn't appearing on the home page. I already reset my

  • Adobe LiveCycle Form Not Saving Data

    I have designed dozens of Adobe LiveCycle forms and have extended rights (enable usage rights in adobe reader).  My problem is that sometimes the form is not saving the data for end users.  One of my end users even updated Adobe Reader, but still not