CSS timeout error Oracle applicaton.

Hi All,
I am facing a issue in the CSS accessing the oracle application server connected the CSS.
Please find the attachments
1) Errors screen shots
2) config.

Hi,
your ar using one-arm mode. This meanse you use only 1 VLAN for client and server traffic.
The problem is that traffic passing the CSS should also return via the CSS.
In one-arm mode this is not the case because the default-gateway of your servers is the upstream router and not the CSS.
In other words, you need to force the servers to send the traffic back to the CSS instead of directly to the router.
This can be accomplished by using source NAT. THis way, the server thinks the traffic was sourced by the CSS, sending te response back to the CSS instead of the router.
You need to configure a source group. In your case, it would look something like this:
group NAT_GRP-IPCC
vip address 10.20.19.X
add destination service http-ora03m
add destination service http-ora04m
active
group NAT_HTTPS-ORACLE
vip address 10.20.19.Y
add destination service https-ora03m
add destination service https-ora04m
active
group NAT_ora03m&4m-7778
vip address 10.20.19.Z
add destination service ora03m-7778
add destination service ora04m-7778
active
The VIP Addresses in the group are the addresses that will be used to replace the original source address. Note that per group the VIP address should be unique, zo replace the 3 letters with 3 different numbers.
Note that by doing this, you will lose the original source IP Address. This means that you will not be able to account the sources that have accessed your database.
HTH,
Dario

Similar Messages

  • TimeOut error while running a report on the report server

    Hi,
    One of my report is taking 30 minutes to generate the output. It works fine when I run it locally, but when I run it on report server I encounter the following error message. Its a timeout error. Any solution other than tuning the query, please.
    500 Internal Server Error
    org.omg.CORBA.OBJECT_NOT_EXIST: minor code: 0 completed: No
         at java.lang.Class.newInstance0(Native Method)
         at java.lang.Class.newInstance(Class.java:237)
         at com.inprise.vbroker.orb.SE.read(SE.java:28)
         at com.inprise.vbroker.orb.DelegateImpl.handleReply(DelegateImpl.java:711)
         at com.inprise.vbroker.orb.DelegateImpl.invoke(DelegateImpl.java:606)
         at org.omg.CORBA.portable.ObjectImpl._invoke(ObjectImpl.java:459)
         at oracle.reports.server._ConnectionStub.getMainFile(_ConnectionStub.java:1283)
         at oracle.reports.client.ReportRunner.getMainFile(ReportRunner.java:488)
         at oracle.reports.rwclient.RWReportRunner.getMainFile(RWReportRunner.java:121)
         at oracle.reports.rwclient.RWReportRunner.getMainFile(RWReportRunner.java:95)
         at oracle.reports.rwclient.RWClient.runReport(RWClient.java:1322)
         at oracle.reports.rwclient.RWClient.processRequest(RWClient.java:1139)
         at oracle.reports.rwclient.RWClient.doPost(RWClient.java:328)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:283)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:336)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:59)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:283)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:523)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:269)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:735)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.AJPRequestHandler.run(AJPRequestHandler.java:151)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].util.ThreadPoolThread.run(ThreadPoolThread.java:64)

    Hi Bhasker
    Try setting idleTimeOut under connection element in server configuration file to a large value.
    Regards
    Sripathy

  • ERROR: ORACLE prepare error: ORA-00936: missing expression

    Hello,
    I am required to run "pass-through" Oracle SQL, to extract data from tables into SAS for processing and manipulation. My code (attached) reads and writes (executes) but with zero records to test first. I cannot get past the Prepare Error.
    The query is very much like other queries that seem to work, but I cannot get past this prepare error. I have no other access to individauls with adequate knowledge of PL SQL, and as a last stop hoped others in the forum could quickly spot the source of errror.
    Thanks very much in advance for any assistance.
    Jeff
    1 ;*';*";*/;quit;run;
    2 OPTIONS PAGENO=MIN;
    3 %LET _CLIENTTASKLABEL=%NRBQUOTE(rx_biplr_v3_2);
    4 %LET _EGTASKLABEL=%NRBQUOTE(rx_biplr_v3_2);
    5 %LET _CLIENTPROJECTNAME=%NRBQUOTE();
    6 %LET _SASPROGRAMFILE=;
    7
    8 ODS _ALL_ CLOSE;
    NOTE: Some of your options or statements may not be supported with the Activex or Java series of devices. Graph defaults for these
    drivers may be different from other SAS/GRAPH device drivers. For further information, please contact Technical Support.
    9 OPTIONS DEV=ACTIVEX;
    10 FILENAME EGHTML TEMP;
    NOTE: Writing HTML(EGHTML) Body file: EGHTML
    11 ODS HTML(ID=EGHTML) FILE=EGHTML ENCODING='utf-8' STYLE=EGDefault
    11 ! STYLESHEET=(URL="file:///C:/Program%20Files/SAS/Shared%20Files/BIClientStyles/EGDefault.css")
    11 ! ATTRIBUTES=("CODEBASE"="http://www2.sas.com/codebase/graph/v91/sasgraph.exe") NOGTITLE NOGFOOTNOTE GPATH=&sasworklocation
    11 ! ;
    12
    13 %gaccessible;
    14 /********************************************************/
    15 * RX_BIPLR_V3.SAS ;
    16 /********************************************************/
    17
    18 dm 'log;clear;out;clear';
    19 options linesize =120;
    20 Option obs=0 NoReplace;
    21
    22 ****************************************************************************************;
    23 *Date Programmer Reviewed By WHAT WAS DONE;
    24 *----- -------------- ------------ -----------------------------------------;
    25 *2005 David Boyd Program creation for test population;
    26 *;
    27 *02/06/2006 Ivon Jones Modified to include total population;
    28 *;
    29 *07/20/2006 Ivon Jones Identified data elements for exclusion;
    30 * or inclusion for consolidation with ;
    31 * Robin's report;
    32 *;
    33 *08/18/2006 Ivon Jones Updated the Specific Therapeutic Classes;
    34 * 10-2009 J Shaf - modified to extract actual or potential Bipolar Dx from UBH and Medical Claims;
    35 ****************************************************************************************;
    36
    37
    38
    39 *%let allclmorgn = ('M','A') ; /* all claims origin code */
    40 %let begdate='01SEP2009'd;
    41 %let enddate='30SEP2009'd;
    42 %let q = %str(%') ;
    43
    44
    45 data _null_ ;
    46 call symput('fdos',put(intnx('month',"&begdate"d,-27,'beginning'), date9.) ) ;
    47 call symput('ldos',put(intnx('month',"&enddate"d,-0,'ending'), date9.) ) ;
    48 run ;
    NOTE: DATA statement used (Total process time):
    real time 0.00 seconds
    2 The SAS System 11:44 Friday, October 30, 2009
    cpu time 0.01 seconds
    49
    50
    51
    52 **************************************************************;
    53 * ??Use the data _null_ step to create a macro variable for the ;
    54 * year and month based on the ldos macro variable in the data ;
    55 * step above?? ;
    56 **************************************************************;
    57
    58
    59 data _null_ ;
    60 if month("&ldos"d) < 10
    61 then call symput('yr_mo',compress(year("&ldos"d) || '0' || month("&ldos"d) ) ) ;
    62 else call symput('yr_mo',compress(year("&ldos"d) || month("&ldos"d) ) ) ;
    63 run ;
    NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column).
    61:39 61:64 62:39 62:57
    NOTE: DATA statement used (Total process time):
    real time 0.00 seconds
    cpu time 0.00 seconds
    64
    65 *%put &biplr_dx;
    66 %put &begdate ;
    '01SEP2009'd
    67 %put &enddate ;
    '30SEP2009'd
    68 %put &fdos ;
    01JUN2007
    69 %put &ldos ;
    30SEP2009
    70 %put &q ;
    71
    72
    73 libname biplr'/home/jshafi01/projects/adhoc/biplr_dprsn/data';
    NOTE: Libref BIPLR was successfully assigned as follows:
    Engine: V9
    Physical Name: /home/jshafi01/projects/adhoc/biplr_dprsn/data
    74 libname rosdwp oracle user="&oracle_user." pass="&oracle_pass." buffsize=32767 path='rosdwp';
    NOTE: Libref ROSDWP was successfully assigned as follows:
    Engine: ORACLE
    Physical Name: rosdwp
    75
    76 data work.biplr_up_v1;
    77 attrib mbr_id length=$26;
    78 set biplr.biplr_ubh_med_v1;
    79 run;
    NOTE: There were 0 observations read from the data set BIPLR.BIPLR_UBH_MED_V1.
    NOTE: The data set WORK.BIPLR_UP_V1 has 0 observations and 1 variables.
    NOTE: DATA statement used (Total process time):
    real time 0.01 seconds
    3 The SAS System 11:44 Friday, October 30, 2009
    cpu time 0.00 seconds
    80
    81 proc contents;
    82 run;
    NOTE: PROCEDURE CONTENTS used (Total process time):
    real time 0.03 seconds
    cpu time 0.03 seconds
    83
    84 proc datasets
    85      library = rosdwp nolist;
    86      delete biplr_up_v1;
    87 quit;
    NOTE: Deleting ROSDWP.BIPLR_UP_V1 (memtype=DATA).
    NOTE: PROCEDURE DATASETS used (Total process time):
    real time 3.74 seconds
    cpu time 0.03 seconds
    88
    89 proc datasets
    90      library=work nolist;
    91      copy out = rosdwp move;
    92      select biplr_up_v1 ;
    93 quit;
    NOTE: Moving WORK.BIPLR_UP_V1 to ROSDWP.BIPLR_UP_V1 (memtype=DATA).
    NOTE: SAS variable labels, formats, and lengths are not written to DBMS tables.
    NOTE: There were 0 observations read from the data set WORK.BIPLR_UP_V1.
    NOTE: The data set ROSDWP.BIPLR_UP_V1 has 0 observations and 1 variables.
    NOTE: PROCEDURE DATASETS used (Total process time):
    real time 0.32 seconds
    cpu time 0.04 seconds
    94
    95
    96
    97 *****************************************************************************;
    98
    99 *execute(commit) by rosdwp
    100 ******************************************************************************;
    101
    102
    103 proc SQL noprint ;
    104 connect to oracle as rosdwp (user="&oracle_user." password="&oracle_pass" buffsize=32767 path='rosdwp'
    104 ! preserve_comments);
    105      execute(alter session set nls_date_format = 'ddmonyyyy') by rosdwp;
    106 CREATE table biplr_rx as
    107 SELECT
    108 mrb_id,
    109 pcp_spc,
    110 rx_date,
    4 The SAS System 11:44 Friday, October 30, 2009
    111 brand,
    112 generic,
    113 ahfs_cd,
    114 ahfs_dsc,
    115 lbl,
    116 strngth,
    117 unt,
    118 spc_tx_cls_cd,
    119 spc_tx_cls_dsc,
    120 gcn,
    121 rx_num,
    122 rx_ingrd,
    123 rx_paid,
    124 rx_cnt,
    125 rx_qty,
    126 rx_day
    127 FROM connection to rosdwp
    128 (SELECT
    129 mid.UNIQ_MBR_ID as mrb_id,
    130 pd.PRVDR_SPCLTY_DESC as pcp_spc,
    131 pcf.LAST_SRVC_DT as rx_date,
    132 dd.BRAND_NAME as brand,
    133 dd.GNRC_NAME as generic,
    134 dd.AHFS_THRPTC_CLS_CD as ahfs_cd,
    135 dd.AHFS_THRPTC_CLS_DESC as ahfs_dsc,
    136 dd.LABEL_NAME as lbl,
    137 dd.STRNGTH_NUM as strngth,
    138 dd.STRNGTH_UNIT_DESC as unt,
    139 dd.SPECF_THRPTC_CLS_CD as spc_tx_cls_cd,
    140 dd.SPECF_THRPTC_CLS_DESC as spc_tx_cls_dsc,
    141 dd.GCN_NUM as gcn,
    142 pcf.PRSCRPTN_NUM as rx_num,
    143 SUM(pcf.INGRDNT_AMT) as rx_ingrd,
    144 SUM(pcf.PD_AMT) as rx_paid,
    145 SUM(pcf.UNIT_SRVC_CNT) as rx_cnt,
    146 SUM(pcf.DSPNSD_QTY) as rx_qty,
    147 SUM(pcf.DAY_SUPLY_CNT) as rx_day
    148 FROM
    149 PHRMCY_CLM_FACT pcf,
    150 MBR_ID_DMNSN mid,
    151 DRUG_DMNSN dd,
    152 PRVDR_DMNSN pd,
    153           biplr_up_v1
    154 WHERE
    155 (
    156 (biplr_up_v1.mbr_id = MBR_ID_DMNSN.UNIQ_MBR_ID) And
    157 (PHRMCY_CLM_FACT.FINL_CLM_KEY = PHRMCY_FINL_CLM_DMNSN.FINL_CLM_KEY) AND
    158 (PHRMCY_CLM_FACT.MBR_KEY = MBR_ID_DMNSN.MBR_KEY) And
    159 (PHRMCY_CLM_FACT.BNFT_KEY = MBR_BNFT_DMNSN.BNFT_KEY) And
    160 (PHRMCY_CLM_FACT.DRUG_KEY = DRUG_DMNSN.DRUG_KEY) And
    161 (PHRMCY_FINL_CLM_DMNSN.CLM_ORGN_CD IN ('M','A')) AND
    162 (PHRMCY_CLM_FACT.LAST_SRVC_DT BETWEEN between &q.&fdos.&q and &q.&ldos.&q)
    163      )
    164 Group By
    165 mid.UNIQ_MBR_ID ,
    166 pd.PRVDR_SPCLTY_DESC ,
    167 pcf.LAST_SRVC_DT ,
    168 dd.BRAND_NAME ,
    5 The SAS System 11:44 Friday, October 30, 2009
    169 dd.GNRC_NAME ,
    170 dd.AHFS_THRPTC_CLS_CD ,
    171 dd.AHFS_THRPTC_CLS_DESC ,
    172 dd.LABEL_NAME ,
    173 dd.STRNGTH_NUM ,
    174 dd.STRNGTH_UNIT_DESC ,
    175 dd.SPECF_THRPTC_CLS_CD ,
    176 dd.SPECF_THRPTC_CLS_DESC ,
    177 dd.GCN_NUM ,
    178 pcf.PRSCRPTN_NUM
    179 );
    ERROR: ORACLE prepare error: ORA-00936: missing expression. SQL statement: SELECT mid.UNIQ_MBR_ID as mrb_id,
    pd.PRVDR_SPCLTY_DESC as pcp_spc, pcf.LAST_SRVC_DT as rx_date, dd.BRAND_NAME as brand, dd.GNRC_NAME as generic,
    dd.AHFS_THRPTC_CLS_CD as ahfs_cd, dd.AHFS_THRPTC_CLS_DESC as ahfs_dsc, dd.LABEL_NAME as lbl, dd.STRNGTH_NUM as
    strngth, dd.STRNGTH_UNIT_DESC as unt, dd.SPECF_THRPTC_CLS_CD as spc_tx_cls_cd, dd.SPECF_THRPTC_CLS_DESC as
    spc_tx_cls_dsc, dd.GCN_NUM as gcn, pcf.PRSCRPTN_NUM as rx_num, SUM(pcf.INGRDNT_AMT) as rx_ingrd, SUM(pcf.PD_AMT)
    as rx_paid, SUM(pcf.UNIT_SRVC_CNT) as rx_cnt, SUM(pcf.DSPNSD_QTY) as rx_qty, SUM(pcf.DAY_SUPLY_CNT) as rx_day
    FROM PHRMCY_CLM_FACT pcf, MBR_ID_DMNSN mid, DRUG_DMNSN dd, PRVDR_DMNSN pd, biplr_up_v1 WHERE (
    (biplr_up_v1.mbr_id = MBR_ID_DMNSN.UNIQ_MBR_ID) And (PHRMCY_CLM_FACT.FINL_CLM_KEY =
    PHRMCY_FINL_CLM_DMNSN.FINL_CLM_KEY) AND (PHRMCY_CLM_FACT.MBR_KEY = MBR_ID_DMNSN.MBR_KEY) And
    (PHRMCY_CLM_FACT.BNFT_KEY = MBR_BNFT_DMNSN.BNFT_KEY) And (PHRMCY_CLM_FACT.DRUG_KEY = DRUG_DMNSN.DRUG_KEY) And
    (PHRMCY_FINL_CLM_DMNSN.CLM_ORGN_CD IN ('M','A')) AND (PHRMCY_CLM_FACT.LAST_SRVC_DT BETWEEN between '01JUN2007'
    and '30SEP2009') ) Group By mid.UNIQ_MBR_ID , pd.PRVDR_SPCLTY_DESC , pcf.LAST_SRVC_DT , dd.BRAND_NAME ,
    dd.GNRC_NAME , dd.AHFS_THRPTC_CLS_CD , dd.AHFS_THRPTC_CLS_DESC , dd.LABEL_NAME , dd.STRNGTH_NUM ,
    dd.STRNGTH_UNIT_DESC , dd.SPECF_THRPTC_CLS_CD , dd.SPECF_THRPTC_CLS_DESC , dd.GCN_NUM , pcf.PRSCRPTN_NUM.
    NOTE: PROC SQL set option NOEXEC and will continue to check the syntax of statements.
    180 execute (drop table biplr_up_v1) by rosdwp;
    NOTE: Statement not executed due to NOEXEC option.
    181 disconnect from rosdwp;
    NOTE: Statement not executed due to NOEXEC option.
    182 quit;
    NOTE: The SAS System stopped processing this step because of errors.
    NOTE: PROCEDURE SQL used (Total process time):
    real time 0.14 seconds
    cpu time 0.03 seconds
    183
    184

    Hello Again ,
    Wish Oracle was a bit more informative. Am using a SAS Institute Product called Enterprise Guide. A "hot fix" was installed to address an issue that the product appears unable to save the latest version of edited code changes (hence " BETWEEN between" remaining even after a prior edit). In any case, with the change, am now receiving this error:
    " ERROR: ORACLE prepare error: ORA-00904: "PHRMCY_CLM_FACT"."LAST_SRVC_DT": invalid identifier". (Log file appears below)
    -The error remains, regardless of whether one uses "pass through" code to pass the date range to Oracle (which looks ok from the log output below I believe), or if I hard code the date range into the PL SQL query itself.
    -The Prepare error always appears at end of the inner SELECT.
    -The Prepare error remains, with or without the GROUP BY clause.
    Is there anything else here I am missing? Someone suggested a reserve word - but from other ANSI SQL versions, I do not see that is the case. I have consulted SAS Tech Support and SAS List Serve at University of GA. but nothing definitive from these sources. Have requested facility to be able to run Oracle directly, outside this SAS Institute product - in process.
    Any suggestions are greatly appreciated. Thanks to everyone very much.
    Jeff
    14 /********************************************************/
    15 * RX_BIPLR_V3.SAS ;
    16 /********************************************************/
    17
    18 dm 'log;clear;out;clear';
    19 options linesize =120;
    20 Option obs=0 NoReplace;
    21
    22 ****************************************************************************************;
    23 *Date       Programmer         Reviewed By     WHAT WAS DONE;
    24 *-----      --------------     ------------    -----------------------------------------;
    25 *2005 D. Boyd Program creation for test population;
    26 *;
    27 *02/06/2006 I. Jones Modified to include total population;
    28 *;
    29 *07/20/2006 I. Jones Identified data elements for exclusion;
    30 * or inclusion for consolidation with ;
    31 * Robin's report;
    32 *;
    33 *08/18/2006 I Jones Updated the Specific Therapeutic Classes;
    34 * 10-2009 J Shaf - modified to extract actual or potential Bipolar Dx from UBH and Medical Claims;
    35 ****************************************************************************************;
    36
    37
    38
    39 *%let allclmorgn = ('M','A') ; /* all claims origin code */
    40 %let begdate='01SEP2009'd;
    41 %let enddate='30SEP2009'd;
    42 %let q = %str(%') ;
    43
    44
    45 data null ;
    46 call symput('fdos',put(intnx('month',"&begdate"d,-27,'beginning'), date9.) ) ;
    47 call symput('ldos',put(intnx('month',"&enddate"d,-0,'ending'), date9.) ) ;
    48 run ;
    2 The SAS System 12:46 Monday, November 2, 2009
    NOTE: DATA statement used (Total process time):
    real time 0.00 seconds
    cpu time 0.00 seconds
    49
    50
    51
    52 **************************************************************;
    53 * ??Use the data null step to create a macro variable for the ;
    54 * year and month based on the ldos macro variable in the data ;
    55 * step above?? ;
    56 **************************************************************;
    57
    58
    59 data null ;
    60 if month("&ldos"d) < 10
    61 then call symput('yr_mo',compress(year("&ldos"d) || '0' || month("&ldos"d) ) ) ;
    62 else call symput('yr_mo',compress(year("&ldos"d) || month("&ldos"d) ) ) ;
    63 run ;
    NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column).
    61:39 61:64 62:39 62:57
    NOTE: DATA statement used (Total process time):
    real time 0.00 seconds
    cpu time 0.01 seconds
    64
    65 *%put &biplr_dx;
    66 %put &begdate ;
    '01SEP2009'd
    67 %put &enddate ;
    '30SEP2009'd
    68 %put &fdos ;
    01JUN2007
    69 %put &ldos ;
    30SEP2009
    70 %put &q ;
    71
    72
    73 libname biplr'/home/jshafi01/projects/adhoc/biplr_dprsn/data';
    NOTE: Libref BIPLR was successfully assigned as follows:
    Engine: V9
    Physical Name: /home/jshafi01/projects/adhoc/biplr_dprsn/data
    74 libname rosdwp oracle user="&oracle_user." pass="&oracle_pass." buffsize=32767 path='rosdwp';
    NOTE: Libref ROSDWP was successfully assigned as follows:
    Engine: ORACLE
    Physical Name: rosdwp
    75
    76 data work.biplr_up_v1;
    77 attrib mbr_id length=$26;
    78 set biplr.biplr_ubh_med_v1;
    79 run;
    NOTE: There were 0 observations read from the data set BIPLR.BIPLR_UBH_MED_V1.
    NOTE: The data set WORK.BIPLR_UP_V1 has 0 observations and 1 variables.
    NOTE: DATA statement used (Total process time):
    real time 0.00 seconds
    cpu time 0.01 seconds
    80
    81 proc contents;
    82 run;
    NOTE: PROCEDURE CONTENTS used (Total process time):
    real time 0.02 seconds
    cpu time 0.02 seconds
    83
    84 proc datasets
    85      library = rosdwp nolist;
    86      delete biplr_up_v1;
    87 quit;
    NOTE: Deleting ROSDWP.BIPLR_UP_V1 (memtype=DATA).
    NOTE: PROCEDURE DATASETS used (Total process time):
    real time 0.61 seconds
    cpu time 0.01 seconds
    88
    89 proc datasets
    90      library=work nolist;
    91      copy out = rosdwp move;
    92      select biplr_up_v1 ;
    93 quit;
    NOTE: Moving WORK.BIPLR_UP_V1 to ROSDWP.BIPLR_UP_V1 (memtype=DATA).
    NOTE: SAS variable labels, formats, and lengths are not written to DBMS tables.
    NOTE: There were 0 observations read from the data set WORK.BIPLR_UP_V1.
    NOTE: The data set ROSDWP.BIPLR_UP_V1 has 0 observations and 1 variables.
    NOTE: PROCEDURE DATASETS used (Total process time):
    real time 0.15 seconds
    cpu time 0.04 seconds
    94
    95
    96
    97 *****************************************************************************;
    98
    99 *execute(commit) by rosdwp
    100 ******************************************************************************;
    101
    102
    103 proc SQL noprint ;
    104 connect to oracle as rosdwp (user="&oracle_user." password="&oracle_pass" buffsize=32767 path='rosdwp'
    104 ! preserve_comments);
    105      execute(alter session set nls_date_format = 'ddmonyyyy') by rosdwp;
    106 CREATE table biplr_rx as
    107 SELECT
    108 mrb_id,
    109 uniq_mbr_id,
    110 pcp_spc,
    111 rx_date,
    112 brand,
    113 generic,
    114 ahfs_cd,
    115 ahfs_dsc,
    116 lbl,
    117 strngth,
    118 unt,
    119 spc_tx_cls_cd,
    120 spc_tx_cls_dsc,
    121 gcn,
    122 rx_num,
    123 rx_ingrd,
    124 rx_paid,
    125 rx_cnt,
    126 rx_qty,
    127 rx_day
    128 FROM connection to rosdwp
    129 (SELECT
    130 mid.UNIQ_MBR_ID as uniq_mrb_id,
    131 blpr.mrb_id.mbr_id,
    132 pd.PRVDR_SPCLTY_DESC as pcp_spc,
    133 pcf.LAST_SRVC_DT as rx_date,
    134 dd.BRAND_NAME as brand,
    135 dd.GNRC_NAME as generic,
    136 dd.AHFS_THRPTC_CLS_CD as ahfs_cd,
    137 dd.AHFS_THRPTC_CLS_DESC as ahfs_dsc,
    138 dd.LABEL_NAME as lbl,
    139 dd.STRNGTH_NUM as strngth,
    140 dd.STRNGTH_UNIT_DESC as unt,
    141 dd.SPECF_THRPTC_CLS_CD as spc_tx_cls_cd,
    142 dd.SPECF_THRPTC_CLS_DESC as spc_tx_cls_dsc,
    143 dd.GCN_NUM as gcn,
    144 pcf.PRSCRPTN_NUM as rx_num,
    145 SUM(pcf.INGRDNT_AMT) as rx_ingrd,
    146 SUM(pcf.PD_AMT) as rx_paid,
    147 SUM(pcf.UNIT_SRVC_CNT) as rx_cnt,
    148 SUM(pcf.DSPNSD_QTY) as rx_qty,
    149 SUM(pcf.DAY_SUPLY_CNT) as rx_day
    150 FROM
    151 PHRMCY_CLM_FACT pcf,
    152 MBR_ID_DMNSN mid,
    153 DRUG_DMNSN dd,
    154 PRVDR_DMNSN pd,
    155      BIPLR_UP_V1 blpr
    156 WHERE
    157 (BIPLR_UP_V1.mbr_id = MBR_ID_DMNSN.UNIQ_MBR_ID) And
    158 (PHRMCY_CLM_FACT.FINL_CLM_KEY = PHRMCY_FINL_CLM_DMNSN.FINL_CLM_KEY) AND
    159 (PHRMCY_CLM_FACT.MBR_KEY = MBR_ID_DMNSN.MBR_KEY) And
    160 (PHRMCY_CLM_FACT.BNFT_KEY = MBR_BNFT_DMNSN.BNFT_KEY) And
    161 (PHRMCY_CLM_FACT.DRUG_KEY = DRUG_DMNSN.DRUG_KEY) And
    162 (PHRMCY_FINL_CLM_DMNSN.CLM_ORGN_CD IN ('M','A')) AND
    163 (PHRMCY_CLM_FACT.LAST_SRVC_DT BETWEEN &q.&fdos.&q and &q.&ldos.&q)
    164 );
    ERROR: ORACLE prepare error: ORA-00904: "PHRMCY_CLM_FACT"."LAST_SRVC_DT": invalid identifier. SQL statement: SELECT
    mid.UNIQ_MBR_ID as uniq_mrb_id, blpr.mrb_id.mbr_id, pd.PRVDR_SPCLTY_DESC as pcp_spc, pcf.LAST_SRVC_DT as
    rx_date, dd.BRAND_NAME as brand, dd.GNRC_NAME as generic, dd.AHFS_THRPTC_CLS_CD as ahfs_cd,
    dd.AHFS_THRPTC_CLS_DESC as ahfs_dsc, dd.LABEL_NAME as lbl, dd.STRNGTH_NUM as strngth, dd.STRNGTH_UNIT_DESC as
    unt, dd.SPECF_THRPTC_CLS_CD as spc_tx_cls_cd, dd.SPECF_THRPTC_CLS_DESC as spc_tx_cls_dsc, dd.GCN_NUM as gcn,
    pcf.PRSCRPTN_NUM as rx_num, SUM(pcf.INGRDNT_AMT) as rx_ingrd, SUM(pcf.PD_AMT) as rx_paid, SUM(pcf.UNIT_SRVC_CNT)
    as rx_cnt, SUM(pcf.DSPNSD_QTY) as rx_qty, SUM(pcf.DAY_SUPLY_CNT) as rx_day FROM PHRMCY_CLM_FACT pcf,
    MBR_ID_DMNSN mid, DRUG_DMNSN dd, PRVDR_DMNSN pd, BIPLR_UP_V1 blpr WHERE (BIPLR_UP_V1.mbr_id =
    MBR_ID_DMNSN.UNIQ_MBR_ID) And (PHRMCY_CLM_FACT.FINL_CLM_KEY = PHRMCY_FINL_CLM_DMNSN.FINL_CLM_KEY) AND
    (PHRMCY_CLM_FACT.MBR_KEY = MBR_ID_DMNSN.MBR_KEY) And (PHRMCY_CLM_FACT.BNFT_KEY = MBR_BNFT_DMNSN.BNFT_KEY) And
    (PHRMCY_CLM_FACT.DRUG_KEY = DRUG_DMNSN.DRUG_KEY) And (PHRMCY_FINL_CLM_DMNSN.CLM_ORGN_CD IN ('M','A')) AND
    (PHRMCY_CLM_FACT.LAST_SRVC_DT BETWEEN '01JUN2007' and '30SEP2009').
    NOTE: PROC SQL set option NOEXEC and will continue to check the syntax of statements.
    165 execute (drop table biplr_up_v1) by rosdwp;
    NOTE: Statement not executed due to NOEXEC option.
    166 disconnect from rosdwp;
    NOTE: Statement not executed due to NOEXEC option.
    167 quit;
    NOTE: The SAS System stopped processing this step because of errors.
    NOTE: PROCEDURE SQL used (Total process time):
    real time 0.24 seconds
    cpu time 0.02 seconds
    168
    Edited by: user12142482 on Nov 2, 2009 4:02 PM

  • Timeout error while running Report

    Hi
    All,
    Windows 2000
    Oracle Report builder 10g
    Oracle developer suite 10g
    when I had OLD computer i was able to run report more than 10 minutes. Now, I got NEW computer and i am getting TIMEOUT error while running report more than 10 minutes.
    Any clue?
    Thanks,
    Vishal

    As Fs says it depends on how you're running the report.
    If you're running via a server then you need to make the change on that server or amend the URL you are using to run the report to add the enginereponsetimeout parameter.
    You can amend this parameter on the server either by using the Application Server Control as I described in my last post or by directly editing the config file. This file will be called <reportservername>.conf and can be found in the oracle_home/reports/conf directory.
    In this file look for the engine tag and see if the engineResponseTimeOut property is set.
    E.g:
    <engine id="rwEng" class="oracle.reports.engine.EngineImpl" initEngine="1" maxEngine="4" minEngine="1" engLife="50" maxIdle="20" callbackTimeOut="90000" engineResponseTimeOut="5">
    </engine>
    This value is in minutes so increase to a time larger than that it takes to run the report.
    If instead you're running the report via Report Builder on your own PC then look for a file called rwbuilder.conf in the same location on your PC and make the same change as described above.
    If this property isn't in the file then the engine isn't supposed to time out at all so the problem may well be something different. But to discount it try setting to a large value like 30.

  • I am getting CONNECTION TIMEOUT error in my macbook(10.7.4).plzzz help me

    i am getting CONNECTION TIMEOUT error in my macbook(10.7.4).plzzz help me

    Thank you very much, i guess it will be the remote servers.
    Then i got this critical error on my local server
    Automatic mail message send from usa12 for SID USA on Fri Dec 15 15:00:01 EST 2006
    DONOT REPLY FOR THIS MESSAGE.....
    Please check the follwing files ( will exist if there was an error )
    /u01/app/oracle/admin/usa/bdump/alert_usa.log.121506.1500 ......
    /u01/app/oracle/product/8.1.7/network/log/listener.log.121506.1500 .....
    ORA-00600: internal error code, arguments: [17182], [27793076],
    I know i need to contact oracle , when i went to Metalink ,i needed to run their RDA it is like diagnostic report script and include it before u send to them.
    I needed some permissions from my Senior so i will do it on monday.
    do you have any suggestions????

  • Re:Question related to the Packet timeout error

    2010-03-08 09:11:05.273 Tangosol Coherence CE 3.2.2/371 <Warning> (thread=PacketPublisher, member=2): Member(Id=3, Timestamp=2010-03-07 12:23:13.958, Address=xxxx, MachineId=5238) was unresponsive for 15369 ms, 93 packets have timed-out, PauseRate=0.0040, Paused=false, Deferring=true, OutstandingPackets=0, DeferredPackets=12, Threshold=512
    2010-03-08 09:19:22.772 Tangosol Coherence CE 3.2.2/371 <Warning> (thread=PacketPublisher, member=2): Member(Id=3, Timestamp=2010-03-07 12:23:13.958, Address=xxxx, MachineId=5238) was unresponsive for 16448 ms, 111 packets have timed-out, PauseRate=0.0042, Paused=false, Deferring=true, OutstandingPackets=0, DeferredPackets=10, Threshold=512
    2010-03-08 09:30:52.651 Tangosol Coherence CE 3.2.2/371 <D5> (thread=PacketPublisher, member=2): Member(Id=3, Timestamp=2010-03-07 12:23:13.958, Address=xxxx, MachineId=5238) was unresponsive for 28 ms, 20 packets have timed-out, PauseRate=0.0042, Paused=false, Deferring=true, OutstandingPackets=0, DeferredPackets=1, Threshold=512
    2010-03-08 09:37:50.583 Tangosol Coherence CE 3.2.2/371 <Warning> (thread=PacketPublisher, member=2): Member(Id=3, Timestamp=2010-03-07 12:23:13.958, Address=xxxx, MachineId=5238) was unresponsive for 10590 ms, 60 packets have timed-out, PauseRate=0.0043, Paused=false, Deferring=true, OutstandingPackets=0, DeferredPackets=5, Threshold=512
    2010-03-08 09:50:00.635 Tangosol Coherence CE 3.2.2/371 <D5> (thread=PacketPublisher, member=2): Member(Id=3, Timestamp=2010-03-07 12:23:13.958, Address=xxxx, MachineId=5238) was unresponsive for 132 ms, 20 packets have timed-out, PauseRate=0.0043, Paused=false, Deferring=true, OutstandingPackets=0, DeferredPackets=1, Threshold=512
    2010-03-08 09:50:19.086 Tangosol Coherence CE 3.2.2/371 <Warning> (thread=PacketPublisher, member=2): Member(Id=3, Timestamp=2010-03-07 12:23:13.958, Address=xxxx, MachineId=5238) was unresponsive for 8954 ms, 73 packets have timed-out, PauseRate=0.0044, Paused=false, Deferring=true, OutstandingPackets=0, DeferredPackets=10, Threshold=512
    1. Will the packet retry if they get this timeout error?
    2. why is the logs timestamp and the packet timestamp is having very large gap nearly 1 day in some cases
    3.How long does the packet wait before it timesout ,i see the unresponsive time varies from 80ms to 10000 ms
    4.When do we get this warnings? is there any remedy?

    Wow Coherence 3.2, I haven't seen that in years, it is a pre-Oracle version. I'd suggest considering an upgrade to 3.5, which should be doable without even recompiling your code, just restart the cluster with new jars.
    But that isn't what you asked. This message was reworded in Coherence 3.3 and later to refer to these events not as packet timeouts, but as rescheduled packets do indicate that they are automatically retried.
    Regarding the timestamp that is the timestamp of the cluster member to which the packet was sent. A members timestamp is the time at which it joined the cluster.
    The default packet retry interval is 200ms, I.e. If we don't get an ACK to a packet in that time we will retransmit it. After 1m of this we will give up and remove either the sender or receiver from the cluster. The time intervals in the log messages are with respect to when the first ACK was expected, so a reported delay of 80ms means it took 280ms to delived a packet.
    These messages highlight periods of failed communication, and usually are the result of garbage collections. Some of yours are quite bad (multiple second), indicating that you've likely overcommited your java heap. The effect of the outages should be poor overall cluster performance and if bad enogh should also cause heavily GCing nodes to be kicked out of the cluster.
    Mark
    Oracle (Tangosol) Coherence

  • Timeout error when trying to create repository

    Hello,
    I'm instaling ovm 3.2.3 and when I try to crete the storage repository from ovm manager I get a timeout error and it stops the creation. I've tried several times, I've reinstalled ovm and manager, but the error is always the same.
    I've look into the log but I didn't find anything related to this error. Can somebody help me please?
    The content of log is this one:
    Job Construction Phase
    Job ID: 1370010128786
    begin()
    Appended operation 'File System Construct' to object '0004fb0000050000d62f8093d31671e2 (fs_repositorio1)'.
    Appended operation 'Repository Construct' to object '0004fb00000300005e7bb4e2447294b9 (3600508b1001c5a240ed9f472dfdbb60a)'.
    commit()
    Completed Step: COMMIT
    Objects and Operations
    Object (CREATED): [Repository] 0004fb00000300005e7bb4e2447294b9 (repositorio1)
    Operation: Repository Construct
    Object (CREATED): [LocalFileSystem] 0004fb0000050000d62f8093d31671e2 (fs_repositorio1)
    Operation: File System Construct
    Object (IN_USE): [StorageElement] 0004fb00001800006d86283bfc68236e (3600508b1001c5a240ed9f472dfdbb60a)
    Object (IN_USE): [LocalFileServer] 0004fb0000090000d9ecb1e8a6707a5b (Local FS ovm)
    Job Running Phase at 2013-05-31 15:22:08,786
    Job Participants: [33:31:39:34:34:32:5a:43:32:31:30:33:30:36:51:34 (ovm)]
    Actioner
    15:22:09,461: Starting operation 'Repository Construct' on object '0004fb00000300005e7bb4e2447294b9 (repositorio1)'
    15:22:09,465: Completed operation 'Repository Construct' with direction ==> LATER
    15:22:09,478: Starting operation 'File System Construct' on object '0004fb0000050000d62f8093d31671e2 (fs_repositorio1)'
    Job: 1370010128785/1370010128786, aborted post-commit by user: admin
    Write Methods Invoked
    15:22:08,960 class="InternalJobDbImpl" vessel_id=2960 method=addTransactionIdentifier accessLevel=6 owningTx=1370010128959
    15:22:08,992 class="LocalFileServerDbImpl" vessel_id=1364 method=createFileSystem accessLevel=6 owningTx=1370010128959
    15:22:09,023 class="LocalFileSystemDbImpl" vessel_id=2969 method=setName accessLevel=6 owningTx=1370010128959
    15:22:09,047 class="LocalFileSystemDbImpl" vessel_id=2969 method=setFoundryContext accessLevel=6 owningTx=1370010128959
    15:22:09,047 class="LocalFileSystemDbImpl" vessel_id=2969 method=onPersistableCreate accessLevel=6 owningTx=1370010128959
    15:22:09,047 class="LocalFileSystemDbImpl" vessel_id=2969 method=setLifecycleState accessLevel=6 owningTx=1370010128959
    15:22:09,048 class="LocalFileSystemDbImpl" vessel_id=2969 method=setRollbackLifecycleState accessLevel=6 owningTx=1370010128959
    15:22:09,087 class="LocalFileSystemDbImpl" vessel_id=2969 method=setRefreshed accessLevel=6 owningTx=1370010128959
    15:22:09,090 class="LocalFileSystemDbImpl" vessel_id=2969 method=setBackingDevices accessLevel=6 owningTx=1370010128959
    15:22:09,090 class="LocalFileSystemDbImpl" vessel_id=2969 method=setUuid accessLevel=6 owningTx=1370010128959
    15:22:09,090 class="LocalFileSystemDbImpl" vessel_id=2969 method=setPath accessLevel=6 owningTx=1370010128959
    15:22:09,090 class="LocalFileSystemDbImpl" vessel_id=2969 method=setSimpleName accessLevel=6 owningTx=1370010128959
    15:22:09,091 class="LocalFileSystemDbImpl" vessel_id=2969 method=addFileServer accessLevel=6 owningTx=1370010128959
    15:22:09,091 class="LocalFileSystemDbImpl" vessel_id=2969 method=setStorageDevice accessLevel=6 owningTx=1370010128959
    15:22:09,092 class="StorageElementDbImpl" vessel_id=1383 method=addLayeredFileSystem accessLevel=6 owningTx=1370010128959
    15:22:09,094 class="LocalFileSystemDbImpl" vessel_id=2969 method=setSimpleName accessLevel=6 owningTx=1370010128959
    15:22:09,094 class="LocalFileSystemDbImpl" vessel_id=2969 method=addJobOperation accessLevel=6 owningTx=1370010128959
    15:22:09,110 class="LocalFileSystemDbImpl" vessel_id=2969 method=createRepository accessLevel=6 owningTx=1370010128959
    15:22:09,132 class="RepositoryDbImpl" vessel_id=2975 method=setName accessLevel=6 owningTx=1370010128959
    15:22:09,170 class="RepositoryDbImpl" vessel_id=2975 method=setFoundryContext accessLevel=6 owningTx=1370010128959
    15:22:09,171 class="RepositoryDbImpl" vessel_id=2975 method=onPersistableCreate accessLevel=6 owningTx=1370010128959
    15:22:09,171 class="RepositoryDbImpl" vessel_id=2975 method=setLifecycleState accessLevel=6 owningTx=1370010128959
    15:22:09,171 class="RepositoryDbImpl" vessel_id=2975 method=setRollbackLifecycleState accessLevel=6 owningTx=1370010128959
    15:22:09,213 class="RepositoryDbImpl" vessel_id=2975 method=setRefreshed accessLevel=6 owningTx=1370010128959
    15:22:09,213 class="RepositoryDbImpl" vessel_id=2975 method=setDom0Uuid accessLevel=6 owningTx=1370010128959
    15:22:09,213 class="RepositoryDbImpl" vessel_id=2975 method=setSharePath accessLevel=6 owningTx=1370010128959
    15:22:09,213 class="RepositoryDbImpl" vessel_id=2975 method=setSimpleName accessLevel=6 owningTx=1370010128959
    15:22:09,214 class="RepositoryDbImpl" vessel_id=2975 method=setFileSystem accessLevel=6 owningTx=1370010128959
    15:22:09,214 class="LocalFileSystemDbImpl" vessel_id=2969 method=addRepository accessLevel=6 owningTx=1370010128959
    15:22:09,215 class="RepositoryDbImpl" vessel_id=2975 method=setManagerUuid accessLevel=6 owningTx=1370010128959
    15:22:09,215 class="RepositoryDbImpl" vessel_id=2975 method=setVersion accessLevel=6 owningTx=1370010128959
    15:22:09,216 class="RepositoryDbImpl" vessel_id=2975 method=addJobOperation accessLevel=6 owningTx=1370010128959
    15:22:09,233 class="RepositoryDbImpl" vessel_id=2975 method=setSimpleName accessLevel=6 owningTx=1370010128959
    15:22:09,234 class="RepositoryDbImpl" vessel_id=2975 method=setDescription accessLevel=6 owningTx=1370010128959
    15:22:09,248 class="InternalJobDbImpl" vessel_id=2960 method=setCompletedStep accessLevel=6 owningTx=1370010128959
    15:22:09,253 class="InternalJobDbImpl" vessel_id=2960 method=setAssociatedHandles accessLevel=6 owningTx=1370010128959
    15:22:09,475 class="InternalJobDbImpl" vessel_id=2960 method=setTuringMachineFlag accessLevel=6 owningTx=1370010128959
    Job Aborted (Operation)com.oracle.ovm.mgr.api.exception.JobAbortException: OVMAPI_5000E Job: 1,370,010,128,786/1370010128785/Create Repository repositorio1, was aborted [Fri May 31 15:37:11 WEST 2013]
    at com.oracle.ovm.mgr.api.job.JobEngine.checkJobStatus(JobEngine.java:642)
    at com.oracle.ovm.mgr.api.job.JobEngine.objectAsyncStart(JobEngine.java:626)
    at com.oracle.ovm.mgr.op.physical.storage.FileSystemConstruct.action(FileSystemConstruct.java:57)
    at com.oracle.ovm.mgr.api.collectable.ManagedObjectDbImpl.executeCurrentJobOperationAction(ManagedObjectDbImpl.java:1156)
    at com.oracle.odof.core.AbstractVessel.invokeMethod(AbstractVessel.java:356)
    at com.oracle.odof.core.AbstractVessel.invokeMethod(AbstractVessel.java:333)
    at com.oracle.odof.core.storage.Transaction.invokeMethod(Transaction.java:865)
    at com.oracle.odof.core.Exchange.invokeMethod(Exchange.java:244)
    at com.oracle.ovm.mgr.api.physical.storage.LocalFileSystemProxy.executeCurrentJobOperationAction(Unknown Source)
    at com.oracle.ovm.mgr.api.job.JobEngine.operationActioner(JobEngine.java:230)
    at com.oracle.ovm.mgr.api.job.JobEngine.objectActioner(JobEngine.java:322)
    at com.oracle.ovm.mgr.api.job.InternalJobDbImpl.objectCommitter(InternalJobDbImpl.java:1340)
    at com.oracle.odof.core.AbstractVessel.invokeMethod(AbstractVessel.java:356)
    at com.oracle.odof.core.AbstractVessel.invokeMethod(AbstractVessel.java:333)
    at com.oracle.odof.core.BasicWork.invokeMethod(BasicWork.java:106)
    at com.oracle.odof.command.InvokeMethodCommand.process(InvokeMethodCommand.java:92)
    at com.oracle.odof.core.BasicWork.processCommand(BasicWork.java:81)
    at com.oracle.odof.core.TransactionManager.processCommand(TransactionManager.java:752)
    at com.oracle.odof.core.WorkflowManager.processCommand(WorkflowManager.java:467)
    at com.oracle.odof.core.WorkflowManager.processWork(WorkflowManager.java:525)
    at com.oracle.odof.io.AbstractClient.run(AbstractClient.java:42)
    at java.lang.Thread.run(Thread.java:662)
    15:22:09,476 class="RepositoryDbImpl" vessel_id=2975 method=setCurrentOperationToLater accessLevel=6 owningTx=1370010128959
    15:22:09,477 class="InternalJobDbImpl" vessel_id=2960 method=setTuringMachineFlag accessLevel=6 owningTx=1370010128959
    FailedOperationCleanup
    Starting failed operation 'File System Construct' cleanup on object 'fs_repositorio1'
    Complete rollback operation 'File System Construct' cleanup on object 'fs_repositorio1'
    Rollbacker
    15:37:11,587: Starting rollbacker...
    Executing rollback operation 'File System Construct' on object '0004fb0000050000d62f8093d31671e2 (fs_repositorio1)'
    Complete rollback operation 'File System Construct' completed with direction=DONE
    15:37:11,600: Rollbacker completed...
    Objects To Be Rolled Back
    Object (CREATED): [Repository] 0004fb00000300005e7bb4e2447294b9 (repositorio1)
    Object (CREATED): [LocalFileSystem] 0004fb0000050000d62f8093d31671e2 (fs_repositorio1)
    Object (IN_USE): [LocalFileServer] 0004fb0000090000d9ecb1e8a6707a5b (Local FS ovm)
    Object (IN_USE): [StorageElement] 0004fb00001800006d86283bfc68236e (3600508b1001c5a240ed9f472dfdbb60a)
    Write Methods Invoked
    15:22:08,960 class="InternalJobDbImpl" vessel_id=2960 method=addTransactionIdentifier accessLevel=6 owningTx=1370010128959
    15:22:08,992 class="LocalFileServerDbImpl" vessel_id=1364 method=createFileSystem accessLevel=6 owningTx=1370010128959
    15:22:09,023 class="LocalFileSystemDbImpl" vessel_id=2969 method=setName accessLevel=6 owningTx=1370010128959
    15:22:09,047 class="LocalFileSystemDbImpl" vessel_id=2969 method=setFoundryContext accessLevel=6 owningTx=1370010128959
    15:22:09,047 class="LocalFileSystemDbImpl" vessel_id=2969 method=onPersistableCreate accessLevel=6 owningTx=1370010128959
    15:22:09,047 class="LocalFileSystemDbImpl" vessel_id=2969 method=setLifecycleState accessLevel=6 owningTx=1370010128959
    15:22:09,048 class="LocalFileSystemDbImpl" vessel_id=2969 method=setRollbackLifecycleState accessLevel=6 owningTx=1370010128959
    15:22:09,087 class="LocalFileSystemDbImpl" vessel_id=2969 method=setRefreshed accessLevel=6 owningTx=1370010128959
    15:22:09,090 class="LocalFileSystemDbImpl" vessel_id=2969 method=setBackingDevices accessLevel=6 owningTx=1370010128959
    15:22:09,090 class="LocalFileSystemDbImpl" vessel_id=2969 method=setUuid accessLevel=6 owningTx=1370010128959
    15:22:09,090 class="LocalFileSystemDbImpl" vessel_id=2969 method=setPath accessLevel=6 owningTx=1370010128959
    15:22:09,090 class="LocalFileSystemDbImpl" vessel_id=2969 method=setSimpleName accessLevel=6 owningTx=1370010128959
    15:22:09,091 class="LocalFileSystemDbImpl" vessel_id=2969 method=addFileServer accessLevel=6 owningTx=1370010128959
    15:22:09,091 class="LocalFileSystemDbImpl" vessel_id=2969 method=setStorageDevice accessLevel=6 owningTx=1370010128959
    15:22:09,092 class="StorageElementDbImpl" vessel_id=1383 method=addLayeredFileSystem accessLevel=6 owningTx=1370010128959
    15:22:09,094 class="LocalFileSystemDbImpl" vessel_id=2969 method=setSimpleName accessLevel=6 owningTx=1370010128959
    15:22:09,094 class="LocalFileSystemDbImpl" vessel_id=2969 method=addJobOperation accessLevel=6 owningTx=1370010128959
    15:22:09,110 class="LocalFileSystemDbImpl" vessel_id=2969 method=createRepository accessLevel=6 owningTx=1370010128959
    15:22:09,132 class="RepositoryDbImpl" vessel_id=2975 method=setName accessLevel=6 owningTx=1370010128959
    15:22:09,170 class="RepositoryDbImpl" vessel_id=2975 method=setFoundryContext accessLevel=6 owningTx=1370010128959
    15:22:09,171 class="RepositoryDbImpl" vessel_id=2975 method=onPersistableCreate accessLevel=6 owningTx=1370010128959
    15:22:09,171 class="RepositoryDbImpl" vessel_id=2975 method=setLifecycleState accessLevel=6 owningTx=1370010128959
    15:22:09,171 class="RepositoryDbImpl" vessel_id=2975 method=setRollbackLifecycleState accessLevel=6 owningTx=1370010128959
    15:22:09,213 class="RepositoryDbImpl" vessel_id=2975 method=setRefreshed accessLevel=6 owningTx=1370010128959
    15:22:09,213 class="RepositoryDbImpl" vessel_id=2975 method=setDom0Uuid accessLevel=6 owningTx=1370010128959
    15:22:09,213 class="RepositoryDbImpl" vessel_id=2975 method=setSharePath accessLevel=6 owningTx=1370010128959
    15:22:09,213 class="RepositoryDbImpl" vessel_id=2975 method=setSimpleName accessLevel=6 owningTx=1370010128959
    15:22:09,214 class="RepositoryDbImpl" vessel_id=2975 method=setFileSystem accessLevel=6 owningTx=1370010128959
    15:22:09,214 class="LocalFileSystemDbImpl" vessel_id=2969 method=addRepository accessLevel=6 owningTx=1370010128959
    15:22:09,215 class="RepositoryDbImpl" vessel_id=2975 method=setManagerUuid accessLevel=6 owningTx=1370010128959
    15:22:09,215 class="RepositoryDbImpl" vessel_id=2975 method=setVersion accessLevel=6 owningTx=1370010128959
    15:22:09,216 class="RepositoryDbImpl" vessel_id=2975 method=addJobOperation accessLevel=6 owningTx=1370010128959
    15:22:09,233 class="RepositoryDbImpl" vessel_id=2975 method=setSimpleName accessLevel=6 owningTx=1370010128959
    15:22:09,234 class="RepositoryDbImpl" vessel_id=2975 method=setDescription accessLevel=6 owningTx=1370010128959
    15:22:09,248 class="InternalJobDbImpl" vessel_id=2960 method=setCompletedStep accessLevel=6 owningTx=1370010128959
    15:22:09,253 class="InternalJobDbImpl" vessel_id=2960 method=setAssociatedHandles accessLevel=6 owningTx=1370010128959
    15:22:09,475 class="InternalJobDbImpl" vessel_id=2960 method=setTuringMachineFlag accessLevel=6 owningTx=1370010128959
    15:22:09,476 class="RepositoryDbImpl" vessel_id=2975 method=setCurrentOperationToLater accessLevel=6 owningTx=1370010128959
    15:22:09,477 class="InternalJobDbImpl" vessel_id=2960 method=setTuringMachineFlag accessLevel=6 owningTx=1370010128959
    15:37:11,488 class="LocalFileSystemDbImpl" vessel_id=2969 method=nextJobOperation accessLevel=6 owningTx=1370010128959
    15:37:11,488 class="InternalJobDbImpl" vessel_id=2960 method=setFailedOperation accessLevel=6 owningTx=1370010128959
    15:37:11,590 class="RepositoryDbImpl" vessel_id=2975 method=nextJobOperation accessLevel=6 owningTx=1370010128959
    15:37:11,591 class="LocalFileSystemDbImpl" vessel_id=2969 method=nextJobOperation accessLevel=6 owningTx=1370010128959
    15:37:11,591 class="StorageElementDbImpl" vessel_id=1383 method=nextJobOperation accessLevel=6 owningTx=1370010128959
    15:37:11,591 class="LocalFileServerDbImpl" vessel_id=1364 method=nextJobOperation accessLevel=6 owningTx=1370010128959
    15:37:11,600 class="LocalFileSystemDbImpl" vessel_id=2969 method=nextJobOperation accessLevel=6 owningTx=1370010128959
    Completed Step: ROLLBACK
    Job Aborted due to OVMAPI_5000E Job: 1,370,010,128,786/1370010128785/Create Repository repositorio1, was aborted [Fri May 31 15:37:11 WEST 2013]
    com.oracle.ovm.mgr.api.exception.JobAbortException: OVMAPI_5000E Job: 1,370,010,128,786/1370010128785/Create Repository repositorio1, was aborted [Fri May 31 15:37:11 WEST 2013]
    at com.oracle.ovm.mgr.api.job.JobEngine.checkJobStatus(JobEngine.java:642)
    at com.oracle.ovm.mgr.api.job.JobEngine.objectAsyncStart(JobEngine.java:626)
    at com.oracle.ovm.mgr.op.physical.storage.FileSystemConstruct.action(FileSystemConstruct.java:57)
    at com.oracle.ovm.mgr.api.collectable.ManagedObjectDbImpl.executeCurrentJobOperationAction(ManagedObjectDbImpl.java:1156)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.oracle.odof.core.AbstractVessel.invokeMethod(AbstractVessel.java:356)
    at com.oracle.odof.core.AbstractVessel.invokeMethod(AbstractVessel.java:333)
    at com.oracle.odof.core.storage.Transaction.invokeMethod(Transaction.java:865)
    at com.oracle.odof.core.Exchange.invokeMethod(Exchange.java:244)
    at com.oracle.ovm.mgr.api.physical.storage.LocalFileSystemProxy.executeCurrentJobOperationAction(Unknown Source)
    at com.oracle.ovm.mgr.api.job.JobEngine.operationActioner(JobEngine.java:230)
    at com.oracle.ovm.mgr.api.job.JobEngine.objectActioner(JobEngine.java:322)
    at com.oracle.ovm.mgr.api.job.InternalJobDbImpl.objectCommitter(InternalJobDbImpl.java:1340)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.oracle.odof.core.AbstractVessel.invokeMethod(AbstractVessel.java:356)
    at com.oracle.odof.core.AbstractVessel.invokeMethod(AbstractVessel.java:333)
    at com.oracle.odof.core.BasicWork.invokeMethod(BasicWork.java:106)
    at com.oracle.odof.command.InvokeMethodCommand.process(InvokeMethodCommand.java:92)
    at com.oracle.odof.core.BasicWork.processCommand(BasicWork.java:81)
    at com.oracle.odof.core.TransactionManager.processCommand(TransactionManager.java:752)
    at com.oracle.odof.core.WorkflowManager.processCommand(WorkflowManager.java:467)
    at com.oracle.odof.core.WorkflowManager.processWork(WorkflowManager.java:525)
    at com.oracle.odof.io.AbstractClient.run(AbstractClient.java:42)
    at java.lang.Thread.run(Thread.java:662)
    End of Job

    Hi,
    To create a repository with Oracle VM Manager with NFS share, so the NFS share should have the write privilege.
    if the repository with iSCSI so verify your configuration (give it all privilege).
    after you verify your configuration and if this solved so good and if still the same error so
    thinks to tell us the output of the files /var/log/ovs-agent.log and /var/log/messages
    I hope this can help you
    Best Regards

  • Planning Data Pull process failed with timeout error

    Hi Experts,
    Version: Oracle apps 11.5.10.2
    Issue: Planning Data Pull process failed with timeout error
    message in the log file as follows,
    The Request id : 90018907 has Phase : COMPLETE and Status: ERROR
    Concurrent Message : Timeout error.
    There is an Unknown error in the Worker.
    Planning Data Pull process failed.
    +-------------------------------------
    Please advice what could be the problem. I submitted, standard data collection programs with 900 mins and 8 workers.
    Refresh Collection Snapshot completed without any issue

    Please see these docs.
    Data Collection Fails Because Of Time Out Timeout error [ID 339968.1]
    OPM-ASCP: Data Collection Timeout Error [ID 601539.1]
    STD COLLECTION FAILING AT PLANNING DATA PULL WITH TIMEOUT ERROR [ID 978472.1]
    Data Collections is Failing - All Errors - First Diagnostic Steps [ID 207644.1]
    Troubleshooting Errors with ATP/Planning Data Collections [ID 1227255.1]
    MSCPDC PLANNING ODS LOAD ERRORS WITH TIMEOUT ERROR - POOR PERFORMANCE [ID 417633.1]
    Thanks,
    Hussein

  • Portlet Timeout error

    Hi,
    The following error is displayed when accessing a Portal page with protlets:
    "Error: Timeout for content=20015" .
    The used Oracle Portal is 3.0.9.8.0
    Any work around to increase the timeout vakue for the portlets ?
    Ayman

    Hi all,
    The same problem is also hampering our work.Inspite of refreshing the page the timeout error remains.We have tried changing the timeout for the respective provider which contains the portlets but of no avail.Is there ne way of improving the performance of the Portal?The time for loading pages is very high as of now.The end result being that to access a particular form/report etc we end up spending a considerable amount of time.
    Can anyone suggest a workaround for the same.
    Regds.
    Kiran.

  • TIMEOUT error from adstrtal.sh -- even after made Guest user password same

    I have migrated E-bus Database from HPTru64 to SunSolaris (Still Object differences are there).
    when I try to start application I got TimeOUT error.
    1)I made GUEST password same in <Context>.xml & $FND_TOP/11.5.0/secure/*.dbc file to ORACLE
    2)ran adautocfg.sh on all apps nodes
    still I get same error...
    SQL> SELECT fnd_web_sec.validate_login('GUEST','ORACLE') FROM dual;
    FND_WEB_SEC.VALIDATE_LOGIN('GUEST','ORACLE')
    N
    SQL>

    Sawwan,
    I got below error...
    I am in the process of migration, I may not be able to use OAM unless I start the application..
    ====================
    SQL> @afgstusr.sql
    PL/SQL procedure successfully completed.
    ERROR: The Profile "Guest User Password" is not set correctly, the current
    value is "GUEST/ORACLE" and failed FND user validation.
    Oracle Applications requires a "GUEST" user account for special restricted
    access functions. The "<GUEST User Name>/<Password>" is stored in the
    profile option "Guest User Password" for Applications program use. In this
    instance the profile option is not set, or does not represent a valid
    User_name/Password combination.
    CORRECTIVE ACTION: The profile needs to be set to a valid User_name/Password
    combination, preferably the combination for the seeded user account "GUEST".
    The profile can be set using the Oracle Forms Interface and the System
    Administrator Responsibility.
    Navigate -> Profile -> System -> Query Site level profile:
    "Guest User Password"
    Alternatively, if the profile value shown above is defined and set to what
    you think should be the correct value, you may need to reset the GUEST user
    account password from the Oracle Forms Interface. Again using the System
    Administrator Responsibility.
    Navigate -> Security -> User -> Define -> Query "User Name":
    Type a temporary password in the "Password" field -> hit the Tab Key
    and confirm the password ... Then log in to Oracle Applications Forms
    Interface as this user and change the password, when prompted to do so,
    to match the value set in the "Guest User Password" profile.
    Finally if the Oracle Forms Interface is not available for some reason you
    can use SQL*Plus and the Applications API - FND_PROFILE.SAVE(). You can use
    the file that generated this message (FND_TOP/patch/115/sql/afgstusr.sql) as
    an example of how to code this function. Set the value to a known good
    User_name/Password combination. Remember to go back and properly set up
    a default GUEST account and to synchronize the profile after your upgrade is
    complete using the appropriate steps shown above.
    DECLARE
    ERROR at line 1:
    ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at line 15
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    $

  • Please help for ORA-02049 - Timeout error

    Hi All,
    we have got a reporting DB and 14+ Application DBs, the data is extracted from all the application databases (DBs) and dumped into the common tables of reporting database. While inserting and updating the common reporting tables the other jobs gets timeout error and fails. We daily face this failure problem (error: ORA-02049 - Timeout error distributed transaction waiting for lock) for almost 10-15 times.
    Can you please help me out in resolving and getting the permanent solution for this problem.
    Thanks in advance.

    Thanks Kamal,
    as mentioned above, I have got Oracle,Java,Unix environment. Autosys jobs are scheduled through out the day.
    Mechanism : Autosys job triggers the action at specified time, Unix code calls oracle packaged procedure, extracts data and puts into the common reporting table from this data java code formats the report output.
    There are separate reporting jobs for all instances though the report is same but for different locations(14 DB instances).
    and all these reporting jobs dump data into common reporting table, data can be differentiated on the hub or location.
    But if one job is running for first instance then second job waits for the lock and fails after 2 mins.
    I have to avoid this situation, I hold I am able to explain the situation.

  • Reports Timeout Error

    I'm executing a report and I'm getting the following error, can anyone help me ?
    500 Internal Server Error
    org.omg.CORBA.OBJ_ADAPTER: The delegate has not been set! minor code: 0
    completed: No at com.inprise.vbroker.poa.BOAImpl.deactivate_obj
    (BOAImpl.java:446) at oracle.reports.server.ConnectionManager.release
    (Unknown Source) at oracle.reports.server.ConnectionImpl.disconnect
    (Unknown Source) at
    oracle.reports.client.ReportRunner.releaseConnection(Unknown Source)
    at oracle.reports.rwclient.RWClient.runReport(Unknown Source)
    at oracle.reports.rwclient.RWClient.processRequest(Unknown Source)
    at oracle.reports.rwclient.RWClient.doGet(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:244)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:336)
    at com.evermind[Oracle9iAS (9.0.2.2) Containers for
    J2EE].server.http.ResourceFilterChain.doFilter
    (ResourceFilterChain.java:66) at
    oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:283)
    at com.evermind[Oracle9iAS (9.0.2.2) Containers for
    J2EE].server.http.ServletRequestDispatcher.invoke
    (ServletRequestDispatcher.java:539) at com.evermind[Oracle9iAS
    (9.0.2.2) Containers for
    J2EE].server.http.ServletRequestDispatcher.forwardInternal
    (ServletRequestDispatcher.java:285) at com.evermind[Oracle9iAS
    (9.0.2.2) Containers for
    J2EE].server.http.HttpRequestHandler.processRequest
    (HttpRequestHandler.java:771) at com.evermind[Oracle9iAS (9.0.2.2)
    Containers for J2EE].server.http.AJPRequestHandler.run
    (AJPRequestHandler.java:152) at com.evermind[Oracle9iAS (9.0.2.2)
    Containers for J2EE].server.http.AJPRequestHandler.run
    (AJPRequestHandler.java:72) at
    EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run
    (PooledExecutor.java:796) at java.lang.Thread.run(Thread.java:484)
    When I see the job status at EM it says that a timeout error occurs.
    Best regards.

    Hi,
    This error was reported in Bug 2686291, but it was not confirmed, so it was closed as not a bug. The error was:
    org.omg.CORBA.OBJ_ADAPTER: The delegate has not been set! minor code: 0
    completed: No      at
    com.inprise.vbroker.poa.BOAImpl.deactivate_obj(BOAImpl.java:446)
    Initially it used to occur when a jsp include statement was used, like
    <jsp:include page="EMPLOYEE.JSP" flush="true"/>
    But as I said, this bug was not reproduced. Here, I can only advise you to try applying the latest reports patchset (9.0.2.3) - patch number 3129219 - from Metalink.
    A very similar error has been reported if you use Oracle9iAS 9.0.2 with IBM JDK 1.3.1 SR4. See Note 251343.1 on Metalink on how to resolve the problem. Just to quote from the note,
    ========================================================================================
    Oracle Report Server 9.0.2.0.1 & onwards
    Operating System - IBM AIX
    Symptom(s)
    ~~~~~~~~~~
    When starting report server, you are getting the error
    REP-50125: org.omg.CORBA.OBJ_ADAPTER: org.omg.CORBA.BAD_INV_ORDER: The Servant has not been associated with an ORBinstance minor code: 0 completed: No minor code: 0 completed: No
    Change(s)
    ~~~~~~~~~~
    Recently applied the Java 1.3.1 SR4 (ca131-20030329).
    or
    Check that you are not using above java version
    java -fullversion will show the full java version
    Cause
    ~~~~~~~
    It seems that IBM JDK 1.3.1 SR4 switched to new CORBA standard (which is part of Sun's JDK 1.4).
    Fix
    ~~~~
    1.Ensure that you had applied the Java 1.3.1 SR5a or higher (ca131-20030630a, IY47055)
    2.Set the fowlloing in environment before starting the report server export IBM_JAVA_OPTION=-Dcom.ibm.CORBA.POACompatibilityMode=true
    ============================================================================================
    Also see Note 258012.1 for AIX based systems, and Note 245985.1
    http://metalink.oracle.com
    Navneet.

  • Script Timeout error in classic ASP

    Hi ,
    In classic asp , i am using Stored procedure to fetch the result from oracle database . my database have 85Lakhs records . approx. 30 records are being inserted into the table. at the same time some users trying to fetch the data from same table.now i am getting script timeout error after long wait .it was an intermittent issue (sometimes it is working and sometimes it is not working). i thought it was because of performance issue with stored procedures . but in oracle Readers cannot block writers and Writers cannot block readers.so no issues with database side.i couldn't replicate the issue . i am wondering what will be the rootcause for this issue. is there anything i need to modify with the script side.by increasing the timeout property is the only solution?i tried to modify the timeout property to 180 seconds in classic asp page. please give your valuable suggestion.
    Thanks.
    Regards,
    Boss

    Hi,
    This error is thrown by the Flash Player when a script takes more than 15 seconds to execute i.e. if your script executes continously for 15 seconds with out letting the Flash Player render the UI, this error is dispatched. Probably the data returned is pretty huge, try splitting the data or use pseudo threading as explained in the URL below.
    http://blogs.adobe.com/aharui/2008/01/threads_in_actionscript_3.html
    http://www.actionscript.org/forums/showthread.php3?t=185320
    Hope this helps.

  • TPETIME - timeout error occured

    Hi,
    We are experiencing a TPETIME - timeout error in our system. We are executing a long process, which in DB2 database takes approx 2 mins to complete. On the screen end user is getting 'Web Server not responding error' when the end user refresh his screen the work is actually been done. All the SQLS underneath the process are completed. In the logs we encountered the following error:
    2011-12-09 08:11:21,338 INFO [Portal] Retrieving Navigation Link Language Info, language='ENG'
    2011-12-09 09:41:13,351 WARN [XSLT] Missing Field Meta Data 'GOTO_TOOLTIP_DESCR'
    2011-12-09 10:17:02,289 ERROR [Jolt] Jolt Error in CILPEVTP
    XD_COLL_CNT=+000000001
    bea.jolt.pool.ServiceException: TPETIME - timeout occured
         at bea.jolt.pool.Connection.call(Connection.java:279)
         at bea.jolt.pool.SessionPool.call(SessionPool.java:501)
         at bea.jolt.pool.SessionPool.call(SessionPool.java:241)
    Below details are from the tuxedo log:
    133549.olivau18!QTUXFULLall.880820.1.0: TRACE:at: { tpservice({"CILPEVTP", 0x0, 0x110226a58, 280260, 0, 4294967295, {1323314536, 0, 32648}})
    133549.olivau18!QTUXFULLall.880820.1.0: TRACE:at: { tptypes(0x110226a58, 0xfffffffffffe7a8, 0xfffffffffffe7b4)
    133549.olivau18!QTUXFULLall.880820.1.0: TRACE:at: } tptypes = 657408
    133549.olivau18!QTUXFULLall.880820.1.0: TRACE:at: { tpfree(0x110226a58)
    133549.olivau18!QTUXFULLall.880820.1.0: TRACE:at: } tpfree
    133549.olivau18!QTUXFULLall.880820.1.0: TRACE:at: { tpalloc("VIEW32", "CIFPEVTP", 280260)
    133549.olivau18!QTUXFULLall.880820.1.0: TRACE:at: } tpalloc = 0x1104741f8
    133549.olivau18!QTUXFULLall.880820.1.0: TRACE:at: } tpservice
    133549.olivau18!QTUXFULLall.880820.1.0: TRACE:at: { tpreturn(2, 538976288, 0x1104741f8, 280260, 0x0)
    133549.olivau18!QTUXFULLall.880820.1.0: TRACE:at: } tpreturn [long jump]
    133549.olivau18!QTUXFULLall.880820.1.0: TRACE:at:} tpservice
    133549.olivau18!JSH.184470.1.-2: TRACE:at: { tpalloc("VIEW32", "CIFZUIZL", 2347)
    133549.olivau18!JSH.184470.1.-2: TRACE:at: } tpalloc = 0x11016f4f8 [tperrno TPEBLOCK]
    133549.olivau18!JSH.184470.1.-2: TRACE:at: { tpchkauth()
    133549.olivau18!JSH.184470.1.-2: TRACE:at: } tpchkauth = 0
    133549.olivau18!JSH.184470.1.-2: TRACE:at: { tpfree(0x11016f4f8)
    133549.olivau18!JSH.184470.1.-2: TRACE:at: } tpfree
    133549.olivau18!QTUXFULLall.1101914.1.0: TRACE:at: { tpservice({"CILZUIZL", 0x0, 0x1103dccd8, 2347, 0, 4294967295, {1323314536, 0, 32648}})
    133549.olivau18!QTUXFULLall.1101914.1.0: TRACE:at: { tptypes(0x1103dccd8, 0xfffffffffffe7a8, 0xfffffffffffe7b4)
    The configuration of the UBBCONFIG file is as follows:
    SCANUNIT 5
    SANITYSCAN 6
    BLOCKTIME 12
    DBBLWAIT     2
    BBLQUERY     6
    Please note no SVCTIMEOUT or TRANTIME is been set.
    We would like to know if the error we encountered is related to some tuxedo settings. Please suggest.
    Best Regards,
    Aashima Sethi
    Edited by: user810396 on 12-Dec-2011 04:51

    Hi Todd,
    just wondering if you may answer a follow-up-question ?
    We're having trouble understanding how to measure this blocking timeouts. We do have SCANUNIT set to 10 and BLOCKTIME to 12 in ubbconfig. tpgblktime returns 120, that makes us belive that the effective blocktime is a multiple of BLOCKTIME and SCANUNIT. If you explicitly use tpsblktime and set the value 13, tpgblktime returns 13, so it doesn't seem to be a multiple of SCANUNIT then. It's a bit confusing but there might be some documentation somewhere explaining this ?
    Whenever we perform a call to a service after using tpsblktime with the value 13, it seems like the client receives TIMEOUT randomly after 20-30 seconds. If we use tpsblktime with the value of 4, it seems like a TIMEOUT occurs randomly after 10-20 seconds
    Reading the documentation (http://docs.oracle.com/cd/E18050_01/tuxedo/docs11gr1/rf3c/rf3c.html#wp2437258), we should receive TIMEOUT after 20 seconds with tpsblktime set to 13 and after 10 seconds with tpsblktime set to 4, but that does not seem to be the case
    Are there any explanations to this behaviour or is the documentation wrong ?
    Best regards,
    Kristian

  • TNS Timeout Error with both 32bit and 64bit drivers installed

    I have a server running WIndows 2008 64bit and SQL Server 2012 64bit. I have both the 32bit and 64bit Oracle ODBC drivers installed. 32bit is for SSIS and SSRS uses 64bit. I have an ODBC connection setup for both the 32bit and 64bit. I have the datasources setup for the 64bit and when I test it it works. When I go to run a query I get TNS timeout errors. Any ideas?

    Thank you very much, Curt!
    It's right: When the 64bit version is running, then the PSDs will be opened by this.
    But the configuration under "Bridge Edit/preferences/file type assoiciatons" has the same result as under the "Windows/Systemcontrol/Standardprograms": Never they show the name "Adobe Photoshop.exe (64bit)" - only "Adobe Photoshop.exe" In both cases (Bridge and systemcontrol) I have the possibility to choose the "right" Photoshop.exe by going to the right file (32bit OR 64bit), but the name of the .exe is ever the same: Only "Adobe Photoshop.exe". There is no difference.
    And so even if the 64bit version is preferred (in Bridge), the PSD-files will be opened in the 32bit-version, when no one of both versions is running.
    But - so or so - you have given me a way to solve my basic-problem!
    And when I find the time for experiments, I will show what happens, when I rename the 64bit-exe to "Adobe Photoshop64.exe" to get two different filenames for Photoshop in the Windows-System. (I'm not shure if this will function: When in the Photoshop-System are intrinsic lnks/references to "Photoshop.exe", then I will have no success! Therefore I have to make a HDD-Clone with the whole Windows-System, all Apps and my Working-data before I try to rename. Perhaps there is "no way back to the activation" after renaming the .exe ...
    Thank you and kind regards,
    Oh-Mann

Maybe you are looking for

  • Looking up an EJB in a foreign app server

    Hi, I am trying to look up an EJB in a foreign app server from within an EJB deployed in WLS 7.0.2. I have passed the name of the initialcontext factory with the -Djava.naming.factory.initial argument to the java command in the startWebLogic.cmd file

  • Inventary Management(Urgent)

    Hi Gurus, I am new to BW, and can anybody help about Inventary Management like, what type of data source's we are using and how to extract to bw side, and what are the steps we are following  when we run init and delta, and what are the stranded cube

  • What is the CVI function use to get the Read-Only attribute of currently loaded sequence file in TS?

    I am working with CVI 8.0 and TS 3.5.  The VCI code is called from the process model (I want to get the attribute of the currently loaded users sequence file)

  • Self service to eBusiness Suite with Apex?

    Is it possible to build a selfservice application for Oracle eBusiness Suite General Ledger with APEX? The solution should enable users to make journal entries/corrections without having to log in to the ebusiness suite and use the traditional journa

  • E60 Unable to upgrade firmware (Product Code:05190...

    Hello all, I have just gotten an E60, but currently unable to upgrade the firmware. The NSU says that the phone is not supported. Pressing the buttons (*#0000#) shows the following: 05w34.2 20-09-05 RM-49 And the product code of the phone is 0519047.