Query works interactively, but not as a View? ORA-03113: end-of-file on communication

Hi,
I have created a db, using object stuff and now am doing a few
queries. I created this query and it makes perfect sense, runns
fine interactively and returns the correct records ..
But if I put this query into a separate queries.sql file and try
to create a VIEW of it in there, I get that end-of-file
communicaton error, and it basically disconnects me from
oracle .. so I have to restart SQLPlus. There are no other
characters or anything in the file, just the query itself ..
This is what happens when I run the .sql script which creates a
view of the query:
SQL> create or replace view query_b3 as
2 SELECT w.dinner.restaurant AS Restaurant, w.y.name.surname
AS Surname, w.x.bookingno AS BookingNo
3 FROM (SELECT deref(wd.sdt) x, dinner, deref(sd.guestref) y
4 FROM weekenddeal wd, specialdeal sd
5 WHERE wd.sdt.bookingno = sd.bookingno) w;
create or replace view query_b3 as
ERROR at line 1:
ORA-03113: end-of-file on communication channel
SQL>
SQL> select * from query_b3
2 /
select * from query_b3
ERROR at line 1:
ORA-03114: not connected to ORACLE
PLEASE HELP!!!! This query WORKS FINE in SQLPlus, but NOT when I
put it in an outside file / try making a VIEW of it!!!!

Hi,
I was having this problem in a Test DB that was running in
Windows NT.
I thought the problem was caused by Inadequate memory.
Pls Check that.
Regards,
Ganesh R

Similar Messages

  • Simple Spatial Query caused ORA-03113: end-of-file on communication channel

    I try to run a simple spatial query to find the ID's which inside the specified circle
    select n.ID,n.FEATURE_ID
    from NC_MANGROVE n
    where sdo_relate(n.shape,
         mdsys.sdo_geometry(2003,null,null,
         mdsys.sdo_elem_info_array(1,1003,4),
         mdsys.sdo_ordinate_array(848948,834940,848908,834980,848908,834900)),
         'mask=ANYINTERACT querytype=WINDOW')='TRUE';
    but it end up of ORA-03113: end-of-file on communication channel
    Then I try another query, which I think do the similar thing
    select n.ID,n.FEATURE_ID
    from NC_MANGROVE n
    where sdo_within_distance(n.shape,
         mdsys.sdo_geometry(2001,null,mdsys.sdo_point_type(848908,834900,null),null,null),
         'distance=40')='TRUE';
    but same error occurs.
    Is it the SQL*net configure problem. I am using Oracle 8.1.7 for both client and server.
    Please help
    Tommy

    Does SDO_FILETER Queries work fine? If so there is already reported bug and patch for that on Metalink site. Get all the patches for 8.17 spatial and install those.

  • ORA-03113: end-of-file on communication channel while executing a query

    Hi all,
    I am getting following error while executing one of the query.
    ORA-03113: end-of-file on communication channel
    The query involves subqueries. At one point, in the second last condition of the whole query is the cause. what makes the query to disconnect from database.
    I am pasting the whole query with highlighted part causing the error.
    select
    A.Num_Employee_Id as col_0_0_,
    A.Str_Name_For_Reports as col_1_0_
    from
    Est_Esb_employee_m A
    where
    A.num_office_id=1
    and A.Num_Employee_Id not in
    (select
    B.Num_Employee_Id
    from
    Est_Esb_Employee_Service_D B
    where
    B.Chr_Curr_Status='N'
    and
    B.Dat_Effective_Date is not null
    and
    B.Dat_Effective_Date=
    (select
    max(C.Dat_Effective_Date)
    from
    Est_Esb_Employee_Service_D C
    where
    C.Num_Employee_Id=B.Num_Employee_Id
    and C.Dat_Effective_Date is not null
    and B.Num_Transaction_Id=
    (select
    max(D.Num_Transaction_Id)
    from
    Est_Esb_Employee_Service_D D
    where
    D.Dat_Effective_Date=
    (select
    max(E.Dat_Effective_Date)
    from
    Est_Esb_Employee_Service_D E
    where
    Num_Employee_Id=D.Num_Employee_Id
    and D.Num_Employee_Id=B.Num_Employee_Id
    and B.Num_New_Office_Id=1
    order by
    A.Str_First_Name,
    A.Str_Middle_Name,
    A.Str_Last_Name
    Awaiting your valuable suggestions.
    Regards
    Vijay Kumar

    I would start by compareing the explain plan of both versions of the statement.
    Also by adding such a restriction you might change from an uncorrelated subquery to a correlated subquery. I'm not sure, because your code is hardly readably without formatting.
    In any case you seem to select again and again from the same table. Maybe you should find a way to optimize to query in terms of io (less table access). Then this problem could go away.

  • ORA-03113: end-of-file on communication channel, error on view

    Dear all,
    I had created view using Set operator(UNION ALL)
    CREATE OR REPLACE VIEW ABCD
    AS
       SELECT "AD_CLIENT_ID", "AD_ORG_ID", "UPDATED", "UPDATEDBY", "CREATED",
              "CREATEDBY", "M_EMPLOYEE_MASTER_ID", "M_DEPARTMENT_ID",
              "DATE_OF_JOIN", "STARTDATE", "ENDDATE", "C_PERIOD_ID", "TYP", "REF",
              "VALUE", "DOCSTATUS", "USERID", isactive
         FROM opend_emp
       UNION ALL
       SELECT "AD_CLIENT_ID", "AD_ORG_ID", "UPDATED", "UPDATEDBY", "CREATED",
              "CREATEDBY", "M_EMPLOYEE_MASTER_ID", "M_DEPARTMENT_ID",
              "EFFECTIVE_DATE", "STARTDATE", "ENDDATE", "C_PERIOD_ID", "TYP",
              "REF", "VALUE", "DOCSTATUS", "USERID", isactive
         FROM opend_payroll
       UNION ALL
       SELECT "AD_CLIENT_ID", "AD_ORG_ID", "UPDATED", "UPDATEDBY", "CREATED",
              "CREATEDBY", "M_EMPLOYEE_MASTER_ID", "M_DEPARTMENT_ID",
              "DATE_OF_JOIN", "STARTDATE", "ENDDATE", "C_PERIOD_ID", "TYP", "REF",
              "VALUE", "DOCSTATUS", "USERID", isactive
         FROM opend_loan
       UNION ALL
       SELECT "AD_CLIENT_ID", "AD_ORG_ID", "UPDATED", "UPDATEDBY", "CREATED",
              "CREATEDBY", "M_EMPLOYEE_MASTER_ID", "M_DEPARTMENT_ID",
              "DATE_OF_JOIN", "STARTDATE", "ENDDATE", "C_PERIOD_ID", "TYP", "REF",
              "VALUE", "DOCSTATUS", "USERID", isactive
         FROM opend_loantrx
       UNION ALL
      SELECT "AD_CLIENT_ID", "AD_ORG_ID", "UPDATED", "UPDATEDBY", "CREATED",
              "CREATEDBY", "M_EMPLOYEE_MASTER_ID", "M_DEPARTMENT_ID",
              "DATE_OF_JOIN", "STARTDATE", "ENDDATE", "C_PERIOD_ID", "TYP", "REF",
              "VALUE", "DOCSTATUS", "USERID", isactive
         FROM opend_service_ch
       UNION ALL
       SELECT "AD_CLIENT_ID", "AD_ORG_ID", "UPDATED", "UPDATEDBY", "CREATED",
              "CREATEDBY", "M_EMPLOYEE_MASTER_ID", "M_DEPARTMENT_ID",
              "EFFECTIVE_DATE", "STARTDATE", "ENDDATE", "C_PERIOD_ID", "TYP",
              "REF", "VALUE", "DOCSTATUS", "USERID", isactive
         FROM opend_prom
       UNION ALL
       SELECT "AD_CLIENT_ID", "AD_ORG_ID", "UPDATED", "UPDATEDBY", "CREATED",
              "CREATEDBY", "M_EMPLOYEE_MASTER_ID", "M_DEPARTMENT_ID",
              "DATE_OF_JOIN", "STARTDATE", "ENDDATE", "C_PERIOD_ID", "TYP", "REF",
              "VALUE", "DOCSTATUS", "USERID", isactive
         FROM opend_leave_absWhen i run the script like
    select * from abcd;if i select particular column from view like
    select "M_EMPLOYEE_MASTER_ID", "M_DEPARTMENT_ID" from abcd;it showing error as ORA-03113: end-of-file on communication channel.
    please give some suggestion for it.
    hb venki

    Dude,
    Yes i knew this (ORA-03113: end-of-file on communication channel) error, but when i run that particular script ABCD then i got frequent error.
    hb venki

  • ORA-03113: end-of-file on communication channel:(The queuing is not enabled

    The queuing is not enabled.
    SQL> select * from user_queues;
    NAME QUEUE_TABLE QID QUEUE_TYPE MAX_RETRIES RETRY_DELAY ENQUEUE DEQUEUE RETENTION USER_COMMENT
    ACK_QUEUE ACK_QUEUE_T 36560 NORMAL_QUEUE 5 6 NO NO 0
    AQ$_ACK_QUEUE_T_E ACK_QUEUE_T 36561 EXCEPTION_QUEUE 0 0 NO NO 0 exception queue
    AQ$_IFW_SYNC_E IFW_SYNC 36562 EXCEPTION_QUEUE 0 0 NO NO 0 exception queue
    IFW_SYNC_QUEUE IFW_SYNC 36563 NORMAL_QUEUE 5 6 NO NO 0
    In blrhpqe2 system when we try to create the queue it gives end-of-communication error. It seems there some problem with the dbms_aqadmn. Can you please check-up and let know your feedback.
    Below the output of the screen contents:
    1* select * from user_queues
    SQL> begin
    2 dbms_aqadm.start_queue(ACK_QUEUE);
    3 commit;
    4 end;
    5 /
    begin
    ERROR at line 1:
    ORA-03113: end-of-file on communication channel
    please help me on this

    >>>ERROR at line 1:
    ORA-03113: end-of-file on communication channel
    conn to database again.
    ORA-03113: end-of-file on communication channel
    Cause: The connection between Client and Server process was broken.
    Action: There was a communication error that requires further investigation. First, check for network problems and review the SQL*Net setup. Also, look in the alert.log file for any errors. Finally, test to see whether the server process is dead and whether a trace file was generated at failure time.

  • ORA-03113: end-of-file on communication channel during query execution

    Hi All,
    My production database is running on 9.2.0.1 on windows 2003 adv srv.
    I have some web-based application (ASP.NET) which is using this database.
    From yesterdasy onwards, i started receieving ORA-03113 error while running a perticular query.(Query given below)
    I did following yesterday during my maintanance window.
    1)Perform object re-org by exp/imp for a business schema
    2)modify some sizing parameters
    3)introduced parallelism
    4)change ini_trans for some hot tables from 1 to 10
    5)Change my optimizer mode to ALL_ROWS from CHOOSE
    6)collected object statistics for that particular business schema
    Below are my changed value of init.ora parameters
    java_pool_size                       big integer 25165824
    parallel_max_servers                 integer     4 (I have dual CPU)
    large_pool_size                      big integer 0 (from 8 MB)
    shared_pool_size                     big integer 754974720 (Decreased from 808 MB)
    db_cache_size                        big integer 805306368 (Increased from 416 MB)
    sga_max_size                         big integer 2149133572
    pga_aggregate_target                 big integer 429916160 (Increased from 216 MB)
    SELECT A.Itemcode,
    (SELECT Sum(Nvl(PS.PPR_SCHD_QTY,0))   FROM TXN_PR_HDR PH
           LEFT OUTER JOIN TXN_PR_ITEM_DTL PI ON PH.PR_NO = PI.PR_NO
           LEFT OUTER JOIN TXN_PR_ITEM_SCHD_DTL PS ON PI.PR_NO = PS.PR_NO AND PI.SRNO = PS.PR_SRNO
           WHERE ITEMCODE  LIKE  '870927400' and PH.FLAG IN ('2','3') AND PH.PR_TYPE <> 'A' ) AS PPR_QTY,
             (SELECT Sum((Nvl(A.SCHD_QTY ,0) - (Nvl(A.CANC_QTY,0) + Nvl(A.RCVDQTY,0))))
                FROM TXN_PO_ITEM_DTL e inner join TXN_PO_ITEM_SCH_DTL A
                ON (e.PO_NO = a.PO_NO AND e.SRNO = a.po_SRNO)
               WHERE (CASE WHEN E.toiTEMCODE IS NOT null THEN E.toiTEMCODE ELSE e.itemcode END) LIKE '870927400' AND (Nvl(A.SCHD_QTY ,0) - (Nvl(A.CANC_QTY,0) + Nvl(A.RCVDQTY,0)))>0 ) AS PPO_QTY
        (SELECT SUM(NVL(CHALLAN_QTY,0) - NVL(GRN_QTY,0)) AS CHALQTY FROM TXN_IGP_DTL DTL INNER JOIN TXN_IGP_HDR HDR
        ON DTL.IGP_NO=HDR.IGP_NO WHERE ITEMCODE LIKE '870927400'  AND FLAG='2') AS CHAL_QTY,
        (SELECT SUM( CASE WHEN SO.STATUS NOT IN ('C','K') AND SONO IS NOT NULL
                 THEN (D.REQQTY-NVL(D.ALLOCQTY, 0) - NVL(D.ISUQTY, 0))
                   ELSE 0 END) || '#' ||
         Sum(CASE WHEN ((NVL(ALLOCQTY,0) - NVL(UN_APR_QTY,0))> 0) AND IS_UNIT='I' AND SONO IS NOT NULL
                    THEN (NVL(ALLOCQTY,0) - NVL(UN_APR_QTY,0))
                    ELSE 0 END) || '#' ||
          Sum(CASE WHEN cat=3 AND D.SHTQTY >0 THEN Nvl(D.SHTQTY,0) ELSE 0 END) || '#' ||
          Sum(CASE WHEN cat=5 AND D.ALLOCQTY >0 THEN Nvl(D.ALLOCQTY,0) ELSE 0 END)
        FROM TXN_MRP_P_ITEM_DTL D
        INNER JOIN TXN_MRP_P_HDR H ON D.MRP_P_NO=H.MRP_P_NO
        LEFT OUTER JOIN SPA_TXN_SO_HDR SO ON H.SONO=SO.SONO
        WHERE
        D.ITEMCODE LIKE '870927400') PQTY,
        (SELECT SUM(NVL(EXPT_QTY,0)) AS SUB_CONT FROM VW_SENT_EXP_ITEM WHERE EXP_ITEM LIKE  '870927400') AS SUB_CONT_BAL,
       (SELECT SUM(NVL(SENT_QTY,0)) FROM VW_SENT_EXP_ITEM WHERE SENT_ITEM LIKE  '870927400') AS OUTSUBCONT
    ,    Nvl((SELECT SUM(NVL(RECEIVED_QTY,0)) FROM TXN_GRN_ITEM_DTL WHERE ITEM_STATUS<>'Clear' AND ITEMCODE LIKE '870927400'),0) AS HOLD
        ,(SELECT SUM(NVL(UND_INSP,0)) FROM VW_STO_CURR_BAL v WHERE v.ITEMCODE='870927400') AS UND_INSP
        FROM MST_ITEM A
        LEFT OUTER JOIN MST_ITEM_PUR B ON A.ITEMCODE=B.ITEMCODE
        WHERE A.ITEMCODE='870927400'I captured 10046 trace and it contains below lines at bottom:
    WAIT #1: nam='db file sequential read' ela= 279 p1=12 p2=883216 p3=1
    WAIT #1: nam='db file sequential read' ela= 196 p1=12 p2=883220 p3=1
    WAIT #1: nam='db file sequential read' ela= 253 p1=12 p2=883225 p3=1
    WAIT #1: nam='db file sequential read' ela= 185 p1=12 p2=883232 p3=1
    WAIT #1: nam='db file sequential read' ela= 52614 p1=12 p2=883239 p3=1
    WAIT #1: nam='db file sequential read' ela= 198 p1=12 p2=883243 p3=1
    WAIT #1: nam='db file sequential read' ela= 213 p1=12 p2=883248 p3=1
    WAIT #1: nam='db file scattered read' ela= 304 p1=12 p2=883251 p3=2
    WAIT #1: nam='db file sequential read' ela= 201 p1=12 p2=883255 p3=1
    WAIT #1: nam='db file sequential read' ela= 191 p1=12 p2=883260 p3=1
    WAIT #1: nam='db file sequential read' ela= 10939 p1=12 p2=883263 p3=1
    WAIT #1: nam='db file sequential read' ela= 148 p1=12 p2=883271 p3=1Below is TKPROF output of above trace
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.21       0.21          0          0          0           0
    Execute      1      0.00       0.00          0          0          0           0
    Fetch        0      0.00       0.00          0          0          0           0
    total        2      0.21       0.21          0          0          0           0
    Misses in library cache during parse: 1
    Optimizer goal: ALL_ROWS
    Parsing user id: 133 
    Elapsed times include waiting on following events:
      Event waited on                             Times   Max. Wait  Total Waited
      ----------------------------------------   Waited  ----------  ------------
      SQL*Net message to client                       1        0.00          0.00
      db file sequential read                       227        0.05          0.34
      db file scattered read                        424        0.01          0.51When parallel degree =4, i got below msg in tkprof
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.21       0.22          0          0          0           0
    Execute      1      0.00       0.00          0          0          0           0
    Fetch        1      0.00       0.02          0        381          0           0
    total        3      0.21       0.25          0        381          0           0
    Misses in library cache during parse: 1
    Optimizer goal: ALL_ROWS
    Parsing user id: 133 
    Rows     Row Source Operation
          1  NESTED LOOPS OUTER (cr=4 r=0 w=0 time=26 us)
          1   INDEX UNIQUE SCAN OBJ#(564427) (cr=2 r=0 w=0 time=16 us)(object id 564427)
          1   INDEX UNIQUE SCAN OBJ#(564464) (cr=2 r=0 w=0 time=8 us)(object id 564464)
    Elapsed times include waiting on following events:
      Event waited on                             Times   Max. Wait  Total Waited
      ----------------------------------------   Waited  ----------  ------------
      SQL*Net message to client                       2        0.00          0.00
      PX Deq: Join ACK                                3        0.00          0.00
      PX Deq: Parse Reply                             2        0.01          0.01
      enqueue                                         4        0.01          0.02
      SQL*Net break/reset to client                   2        0.00          0.00
      SQL*Net message from client                     1       24.72         24.72I then, changed DOP to 1 for all tables invloved in query.But still i am getting end of comm err.
    Looking fw to have solution.
    Regards,
    Bhavik Desai

    Just to update:
    I got below in core dump
    ------------------- Raw Stack Dump -----------------------
    Address    Dump of bytes
    0x0dc2d4d0 50 d8 a3 06 b4 79 a9 06 - 08 00 03 00 e8 1f 00 00 P....y..........
    0x0dc2d4e0 01 00 00 00 00 00 00 00 - 40 4f a9 06 00 00 00 00 ........@O......
    0x0dc2d4f0 00 00 00 00 00 04 10 00 - 8c 8b 4c 00 38 d4 c2 0d ..........L.8...
    0x0dc2d500 ec 84 71 00 00 00 00 00 - 00 00 00 00 8c 83 7b 00 ..q...........{.
    0x0dc2d510 34 52 a3 06 00 00 00 00 - 00 00 00 00 00 00 00 00 4R..............
    0x0dc2d520 00 00 00 00 ff ff ff ff - ff ff 00 00 00 00 00 00 ................
    0x0dc2d530 00 00 00 00 00 00 00 00 - 0e 00 00 00 00 00 00 00 ................
    0x0dc2d540 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00 ................
    0x0dc2d550 00 00 00 00 26 ea a9 06 - 00 00 00 00 b0 22 41 01 ....&........"A.
    0x0dc2d560 0c d6 c2 0d b0 00 00 00 - 00 00 00 00 05 00 00 00 ................
    0x0dc2d570 10 d6 c2 0d 1d 0d 53 00 - b4 79 a9 06 cc 9d a9 06 ......S..y......
    0x0dc2d580 c0 52 67 19 c8 77 00 53 - c8 77 00 53 6c 76 a9 06 .Rg..w.S.w.Slv..
    0x0dc2d590 d0 d4 c2 0d fc d0 c2 0d - 98 d8 c2 0d b0 22 41 01 ............."A.
    0x0dc2d5a0 ec 30 5b 02 ff ff ff ff - d0 d5 c2 0d a9 94 06 01 .0[.............
    0x0dc2d5b0 d8 26 da 17 06 00 00 00 - 40 63 b5 1d 18 04 00 00 .&......@c......
    0x0dc2d5c0 48 03 00 00 c8 77 00 53 - 0b 00 00 00 f0 52 67 19 H....w.S.....Rg.
    0x0dc2d5d0 60 d6 c2 0d 3e cb 52 00 - f8 d6 c2 0d ff 7f 00 00 `...>.R.........
    0x0dc2d5e0 02 50 1e 2c 00 32 00 00 - 01 00 00 00 28 59 79 3c .P.,.2......(Yy<
    0x0dc2d5f0 00 00 00 00 0f 00 00 00 - 01 00 00 00 26 ea a9 06 ............&...
    0x0dc2d600 01 00 00 00 40 63 b5 1d - 01 00 00 00 01 00 00 00 ....@c..........
    0x0dc2d610 40 63 b5 1d c8 77 00 53 - 00 00 00 00 00 d6 c2 0d @c...w.S........
    0x0dc2d620 01 00 00 00 00 00 00 00 - 30 52 a3 06 68 63 b5 1d ........0R..hc..
    0x0dc2d630 10 00 00 00 01 00 00 00 - 14 63 b5 1d 00 00 00 00 .........c......
    0x0dc2d640 00 00 00 00 01 00 00 00 - 44 ea a9 06 06 00 00 00 ........D.......
    0x0dc2d650 18 4e a3 06 18 00 00 00 - e8 62 b5 1d 00 94 06 01 .N.......b......
    0x0dc2d660 b4 d6 c2 0d ed 8e 51 00 - 40 63 b5 1d 00 94 06 01 ......Q.@c......
    0x0dc2d670 f8 d6 c2 0d ff 7f 00 00 - 6c 92 51 00 b0 67 b5 1d ........l.Q..g..
    0x0dc2d680 01 00 00 00 18 4e a3 06 - f4 05 00 00 28 38 a3 06 .....N......(8..
    0x0dc2d690 ff 7f 00 00 ff 7f 00 00 - 00 50 b0 00 c8 77 00 53 .........P...w.S
    0x0dc2d6a0 18 04 00 00 18 4e a3 06 - f8 d6 c2 0d 00 94 06 01 .....N..........
    0x0dc2d6b0 e8 03 00 00 d4 d6 c2 0d - 55 51 b0 00 e8 62 b5 1d ........UQ...b..
    0x0dc2d6c0 00 94 06 01 f8 d6 c2 0d - ff 7f 00 00 ec 37 a3 06 .............7..
    0x0dc2d6d0 40 91 bf 39 08 d7 c2 0d - 3f 92 06 01 40 91 bf 39 @[email protected]
    0x0dc2d6e0 00 94 06 01 f8 d6 c2 0d - ff 7f 00 00 e8 37 a3 06 .............7..
    0x0dc2d6f0 e4 90 bf 39 2c d7 c2 0d - 10 ae 07 01 2c d7 c2 0d ...9,.......,...
    0x0dc2d700 14 91 bf 39 c8 77 00 53 - 38 d7 c2 0d 9d ac 07 01 ...9.w.S8.......
    0x0dc2d710 14 91 bf 39 00 94 06 01 - f8 d6 c2 0d ff 7f 00 00 ...9............
    0x0dc2d720 a0 36 a3 06 d0 37 a3 06 - 70 37 a3 06 d0 fb 02 01 .6...7..p7......
    0x0dc2d730 94 90 bf 39 e4 90 bf 39 - 88 d7 c2 0d 5a e4 02 01 ...9...9....Z...
    0x0dc2d740 4c 54 67 19 d0 fb 02 01 - 2c d7 c2 0d ff 7f 00 00 LTg.....,.......
    0x0dc2d750 c8 77 00 53 6c 7f e0 16 - 44 c9 a3 06 01 00 00 00 .w.Sl...D.......
    0x0dc2d760 00 00 00 00 00 00 00 00 - 00 00 00 00 44 c9 a3 06 ............D...
    0x0dc2d770 00 00 00 00 58 54 67 19 - c8 77 00 53 94 0b 1a 18 ....XTg..w.S....
    0x0dc2d780 a0 36 a3 06 c4 d6 c2 0d - c4 d7 c2 0d 0e 74 f2 00 .6...........t..
    0x0dc2d790 94 90 bf 39 00 00 00 00 - 00 00 00 00 01 00 00 00 ...9............
    0x0dc2d7a0 94 90 bf 39 01 00 00 00 - dc 00 00 00 6c 7f e0 16 ...9........l...
    0x0dc2d7b0 dc 55 a9 06 44 c9 a3 06 - c8 77 00 53 34 37 76 24 .U..D....w.S47v$
    0x0dc2d7c0 00 00 00 00 a8 d8 c2 0d - 29 39 4e 00 6c 7f e0 16 ........)9N.l...
    0x0dc2d7d0 50 d8 a3 06 dc 55 a9 06 - 2c d8 c2 0d ec c1 a3 06 P....U..,.......
    0x0dc2d7e0 6c 2d 7b 00 f8 d7 c2 0d - 13 02 00 00 c0 21 79 00 l-{..........!y.
    0x0dc2d7f0 08 bc 79 00 00 00 00 00 - ec c1 a3 06 c4 6f a3 06 ..y..........o..
    0x0dc2d800 4c d9 c2 0d 06 00 00 00 - 26 b4 40 04 03 00 00 00 L.......&.@.....
    0x0dc2d810 70 cf 00 53 00 00 20 01 - ff ff 00 00 bc 1f 5a 00 p..S.. .......Z.
    0x0dc2d820 00 00 00 00 00 00 00 00 - 2c d8 c2 0d 00 00 00 00 ........,.......
    0x0dc2d830 00 00 00 00 11 00 00 00 - 26 b4 40 04 f0 9c 08 00 ........&.@.....
    0x0dc2d840 f0 9c 08 00 08 00 03 00 - e8 1f 00 00 01 00 00 00 ................
    0x0dc2d850 00 00 00 00 40 4f a9 06 - 00 00 00 00 00 00 00 00 ....@O..........
    0x0dc2d860 00 04 10 00 8c 8b 4c 00 - a4 d7 c2 0d ec 84 71 00 ......L.......q.
    0x0dc2d870 00 00 00 00 00 00 00 00 - c8 77 00 53 00 db c2 0d .........w.S....
    0x0dc2d880 a0 da 00 53 00 00 00 00 - c8 77 00 53 38 4f a9 06 ...S.....w.S8O..
    0x0dc2d890 d0 d7 c2 0d fc d0 c2 0d - 14 dc c2 0d b0 22 41 01 ............."A.
    0x0dc2d8a0 ec 30 5b 02 ff ff ff ff - 1c d9 c2 0d f2 b2 9d 00 .0[.............
    0x0dc2d8b0 b4 3a 76 24 76 00 00 00 - 38 bb a3 06 64 04 00 00 .:v$v...8...d...
    0x0dc2d8c0 ce 6f a3 06 a4 da 00 53 - 50 d8 a3 06 5b 60 5f 00 .o.....SP...[`_.
    0x0dc2d8d0 50 79 00 53 08 00 00 00 - 8c db a3 06 b8 f4 c6 31 Py.S...........1
    0x0dc2d8e0 00 00 00 00 f5 6f a3 06 - 04 00 00 00 00 00 00 00 .....o..........
    0x0dc2d8f0 c8 77 00 53 bc 0e 17 09 - 00 4b a9 06 09 00 00 00 .w.S.....K......
    0x0dc2d900 00 00 00 00 2c 78 e0 16 - 58 dc a9 06 00 00 00 00 ....,x..X.......
    0x0dc2d910 06 00 00 00 0c 0f 17 09 - 2c 4c a9 06 3c d9 c2 0d ........,L..<...
    0x0dc2d920 92 36 7b 00 00 db c2 0d - 76 00 00 00 ec 6f a3 06 .6{.....v....o..
    0x0dc2d930 b0 06 00 00 06 00 00 00 - dc e9 c6 31 cc d9 c2 0d ...........1....
    0x0dc2d940 3e cb 52 00 e4 d9 c2 0d - 76 00 00 00 04 00 12 18 >.R.....v.......
    0x0dc2d950 00 2d 00 00 01 00 00 00 - b4 73 2a 17 00 00 00 00 .-.......s*.....
    0x0dc2d960 09 00 00 00 01 00 00 00 - ce 6f a3 06 01 00 00 00 .........o......
    0x0dc2d970 dc e9 c6 31 01 00 00 00 - 01 00 00 00 dc e9 c6 31 ...1...........1
    0x0dc2d980 c8 77 00 53 00 00 00 00 - 00 d9 c2 0d 01 00 00 00 .w.S............
    0x0dc2d990 00 00 00 00 e8 c1 a3 06 - 04 ea c6 31 0a 00 00 00 ...........1....
    0x0dc2d9a0 01 00 00 00 50 d8 a3 06 - 00 00 00 00 00 00 00 00 ....P...........
    0x0dc2d9b0 01 00 00 00 ec 6f a3 06 - 06 00 00 00 38 bb a3 06 .....o......8...
    0x0dc2d9c0 18 00 00 00 9c e8 c6 31 - 28 36 7b 00 20 da c2 0d .......1(6{. ...
    ------------------- End of Raw Stack Dump ----------------
    {code}
    -Bhavik                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • ORA-03113 : end-of-file on communication channel while running a SQL Query

    Hi,
    While executing the following query, we are facing ORA-03113 : EOF on communication channel error.
    SELECT
    FROM QDF_CLSS_SHENG_HIST
    /*WHERE* a.FACT_TYPE_CODE='BS'
    AND */
    WHERE (SRCE_SYS_ID = 850 OR (SRCE_SYS_ID IN (1747,1764) AND GEO_ID IN (826,372) AND PRTTN_BY_FUNC_DATE>=to_date('20060701','YYYYMMDD') ))
    When we remove one of the values in the SRCE_SYS_ID's 'IN' condition the error is not thrown, e.g.
    WHERE (SRCE_SYS_ID = 850 OR (SRCE_SYS_ID IN (1747) AND GEO_ID IN (826,372) AND PRTTN_BY_FUNC_DATE>=to_date('20060701','YYYYMMDD') ))
    The version of the Database we are using is 10.2.0.3.0 - 64bi. Is this a common error in this version of the database because when we ran the same query in a 9i database we got no such error.
    P.S : QDF_CLSS_SHENG_HIST table is partitioned on SRCE_SYS_ID and PRTTN_BY_FUNC_DATE
    Thanks,
    Puneeth

    Yes, we get the same error and no dumps are getting created.It might be interesting to look at a trace file for this SQL statement with event 10046 at level 12 and event 10053 at level 1 enabled for the session. You may need to modify the query slightly to make certain that a hard parse is required (possibly by specifying a couple of the column names to be returned rather than *). Take a look through the raw trace file for something like this
    cost: -1.#IND  card: 1.#INFThere is at least one query in the ERP package that I use that will output the following in a 10053 trace when optimizer_features_enable is greater than 10.1.0.4, followed by an ORA-600:
      Access Path: index (AllEqUnique)
        Index: SYS_C004588
        resc_io: 1.00  resc_cpu: 8341
        ix_sel: 0.5  ix_sel_with_filters: 0.5
        NL Join: Cost: 1.#J  Resp: 1.#J  Degree: 1
          Cost_io: 1.#J  Cost_cpu: 1
          Resp_io: 1.#J  Resp_cpu: 1
      Best NL cost: 1797693134862315700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000.00
              resc: 3.01 resc_io: 3.00 resc_cpu: 35947
              resp: 3.01 resp_io: 3.00 resp_cpu: 35947
    Outer Join Card:  1.#J = max ( outer (1.#J), (outer (1.#J) * inner (2.00) * sel (0.5) )
    Join Card - Rounded: 1 Computed: 1.#JYou may be experiencing a similar problem that might become evident with both trace events enabled.
    Charles Hooper
    IT Manager/Oracle DBA
    K&M Machine-Fabricating, Inc.

  • cffeed caching works locally but not on server

    So I got my new Hostek account set up (woohoo!) and I've started uploading some basic files so I can do thinks like validate my code and make sure everything's working.  One thing that does not work (but does locally) is my news feed caching.
    Pulling in two RSS feeds was seriously slowing down my index page loading, so I stole a trick from Ray Camden on caching the feeds.  It works perfectly on my dev machine at home, but doesn't work on my hosted account.
    Here's the exact code being used:
    <cfset feedurl = "http://velonews.competitor.com/feed">
    <cfset cacheTime = #createtimespan(1,0,0,0)#>
    <cfif not structKeyExists(application,"rsscache") or dateDiff("n", application.rsscache.created, now()) gt cacheTime>
        <cffeed source="#feedurl#" query="entries">
        <cfset application.rsscache = structNew()>
        <cfset application.rsscache.data = entries>
        <cfset application.rsscache.created = now()>
    </cfif>
    <ul>
    <cfloop query="#application.rsscache.data#" startrow="1" endrow="6">
    <cfoutput><li><a href="#rsslink#">#title#</a></li></cfoutput>
    </cfloop>
    </ul>
    I tried wrapping a try/catch around the top section (above the <ul>) and still got nothing for an error message.  The page just stops being rendered at that first <ul>.
    I'm not sure why it works locally but not on the web server.  Any ideas?

    Miraculously, I got it working.
    I changed this:
    <cfloop query="#application.rsscache.data#" startrow="1" endrow="6">
    <cfoutput><li><a href="#rsslink#">#title#</a></li></cfoutput>
    </cfloop>
    To this:
    <cfoutput maxrows="6" query="application.rsscache.data">
    <li><a href="#rsslink#">#title#</a></li>
    </cfoutput>
    And bingo!  It worked. Perhaps it's an idiosyncrasy between CF9 and CF10.

  • Ever since I turned on ITunes match, album art shows in coverview but not in other views on my iphone. Anyone else having this problem?

    ever since I turned on ITunes match, album art shows in coverview but not in other views on my iphone. Anyone else having this problem?

        jsavage9621,
    It pains me to hear about your experience with the Home Phone Connect.  This device usually works seamlessly and is a great alternative to a landline phone.  It sounds like we've done our fair share of work on your account here.  I'm going to go ahead and send you a Private Message so that we can access your account and review any open tickets for you.  I look forward to speaking with you.
    TrevorC_VZW
    Follow us on Twitter @VZWSupport

  • Firefox will not open on my computer the majority of the time. If I shut down and restart it will work sometimes, but not always. This started recently in the last two weeks. Today is June 12th 2011.

    Firefox will not open on my computer the majority of the time. If I shut down and restart it will work sometimes, but not always. This started recently in the last two weeks. Today is June 12th 2011.

    See:
    * http://kb.mozillazine.org/Browser_will_not_start_up

  • HT1386 my Ipod will not connect to my computer it worked yesterday but not today and it is only a new ipod touch, it will not even be recognised on my itunes but yet it can charge off my computer. need help!

    it worked yesterday but not today and it is only a new ipod touch, it will not even be recognised on my itunes but yet it can charge off my computer. need help!

    iOS: Device not recognized in iTunes for Mac OS X
    or
    iOS: Device not recognized in iTunes for Windows

  • Occasionally Firefox 3.6.12 won't display photos on certain sites. Reloading works sometime but not alwasys.

    At times on auction some sites such as ebay, (and others), photos won't display. If I press the reload button there's a chance the photo will display. If reload doesn't work the first time, pressing it 3 or 4 times may work but not always. Closing the site then re-opening works sometimes but not always. Annoying.

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • I can connect my Iphone 6 and Ipad Air to my Bose Soundlink but not my IMac.  I have tried all the usual solutions but nothing works.  It has worked recently but not in the last week. Help

    I can connect my Iphone 6 and Ipad Air to my Bose Soundlink but not my IMac.  I have tried all the usual solutions but nothing works.  It has worked recently but not in the last week. Help

    make sure it's not being connected to by any of the other two
    one can only connect 1 device at the time and just by waking up sometimes a headset connects to a device
    automaticly
    then forget the bluetooth device in OS X and put the headset in pairing mode / discovery mode and connect with it once again with the mac

  • Constant Error; Adobe Flash Player 11.4 r402 has stopped working. But NOT running Trusteer Rapport.

    I am experiancing this unbelieveably annoying and constant Flash error;  Adobe Flash Player 11.4 r402 has stopped working.
    But NOT running Trusteer Rapport, I never have, and it's not even installed on my computer.  So what's causing this?

    There were a couple AntiVirus/AntiMalware products that keep coming up, but I haven't validated that in the lab and don't want to call anyone out publicly without reporting the issue to them first.

If you could tell me what antivirus/antimalware products and versions you have installed, that would be helpful.
    So, third party stuff aside, I'd like to know more about the crashes your seeing:
    1.) Please provide links to the Firefox crash reports.  If you have multiples, the first few would be great.
         In Firefox, type about:crashes in the address bar
         If the link starts with "bp...", it's already been submitted -- just right-click on it and copy the link, and paste it into the reply here.
         If not, click it to submit it, and copy the subsequent link.
    2.) In firefox, type about:support
         Just copy and paste the output into the reply.
    3.) In Firefox, type about:plugins
         Please copy and paste the output into the reply
    4.) Please provide the output of the DirectX Diagnostic Utility
         Click Start > type "dxdiag" [enter]
         Click Save All Information
         Copy the output of the file into the reply, or use Adobe SendNow/DropBox/PasteBin to share the file.
    5.) If you can provide an exact URL and step-by-step instructions on repeating the crash (if it's consistent), that would be really helpful.  My goal is to build out a configuration that matches yours as closely as possible, reproduce the problem and then debug it.
    If you're not comfortable sharing that diagnostic information publicly, send me a private message.  Just click my name and use the options on the right.
    Thanks!

  • Link to tabbed panel works once, but not again

    I have successfully linked from text in one tabbed panel to open another panel on the same page, using SpryURLUtils.js.
    <a href="?tab=2#TabbedPanels1">
    var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1", {defaultTab: params.tab ? params.tab : 0});
    When I return to the panel containing the link, the link no longer functions. So basically, it will work once, but not twice.
    Thoughts on what's happening?

    The example that you gave is great for opening a tab in a new page.To open panels on the same page see here http://labs.adobe.com/technologies/spry/samples/tabbedpanels/tabbed_panel_sample.htm
    Gramps

Maybe you are looking for

  • I ordered my iPhone on Friday and it is still on Processing Items?

    So i ordered my Iphone on Friday and it still says "Processing Items" and "Delivers Oct 14 via" i got a verizon 16 GB White iPhone! And i havent gotten any email by apple besides the one confirming my order! And its already Wednesday night Do you thi

  • Reading Attachments from T-code VF03

    Hi folks, I have a requirement to download all the attachments from T-code VF03 into my 'Z' program, I searched SDN a lot and I came to know that FM 'SO_OBJECT_READ'  can be of some help. However, I could not understand how exactly I need to pass the

  • Can I open a port range in the firewall for one host?

    Can I open a port range in the firewall for one host?  In other words, I want to be able to open ports 54001 to 54050 to allow one remote host in my LAN to access that port range in my Mac Server.  Is this possible?  Currently, the only option I see

  • Profit center on purchase order

    Hi All, my problem is for one purchase order goods receipt and invoice is picking different profit centre. the two profit centres are assigned to one cost centres for the different periods.purcahse order is having past date, GR and invoice is done fo

  • How do I change Icloud accounts on a device that is used?

    So my wife has a used iphone that was given to her by her sister. I can't figure out how to change her icloud account from her sister's to mine. The username is locked in and we don't have access to the current account that is on there. How do I swit