Mirgation 3.0 EA problem missing or to much out SYS_REFCURSOR

Hi,
first thanks for the great work you did with the new version. I specially like the commandline migration!
I tested the new migration functionality and every think what i used to migrate so far worked well.
Because I migrate TSQL stuff quite frequent, I found a new issue which didn't show up so far:
1. no out cursor at all
TSQL:
CREATE PROCEDURE GetInfo
     @FromDate datetime,
     @ToDate datetime,
     @State int,
     @Kind int
AS
     DECLARE @strSQL varchar(8000)
     DECLARE @strSelClause varchar(8000)
     SET @strSelClause = 'SELECT * '
     SET @strSQL = @strSelClause +
               'FROM INFO WHERE DistributionDate >= ''' + @FromDate + ''' AND DistributionDate <= ''' + @ToDate+ ''''
               IF @State IS NOT NULL set @strSQL = @strSQL + ' AND State = ' + @State
               IF @Kind IS NOT NULL set @strSQL = @strSQL + ' AND Kind = ' + @Kind
               EXEC (@strSQL)
Migration ORACLE:
CREATE OR REPLACE PROCEDURE GetInfo
v_FromDate IN DATE DEFAULT NULL ,
v_ToDate IN DATE DEFAULT NULL ,
v_State IN NUMBER DEFAULT NULL ,
v_Kind IN NUMBER DEFAULT NULL
AS
v_strSQL VARCHAR2(4000);
v_strSelClause VARCHAR2(4000);
BEGIN
v_strSelClause := 'SELECT * ' ;
v_strSQL := v_strSelClause || 'FROM INFO WHERE DistributionDate >= ''' || v_FromDate || ''' AND DistributionDate <= ''' || v_ToDate || '''' ;
IF v_State IS NOT NULL THEN
v_strSQL := v_strSQL || ' AND State = ' || v_State ;
END IF;
IF v_Kind IS NOT NULL THEN
v_strSQL := v_strSQL || ' AND Kind = ' || v_Kind ;
END IF;
EXECUTE IMMEDIATE v_strSQL;
END;
instead of EXECUTE IMMEDIATE I expect OPEN cv_1 FOR v_strSQL
2. Problem to many cursors
CREATE PROCEDURE PfmGetPrintformsR
          @QueryMode int
AS
-- Use @SelectBody in Custom Section queries like:
-- EXEC (@SelectBody + ' WHERE xxx = ' + @xxx)
DECLARE @SelectBody VARCHAR(182)
SET @SelectBody =
'SELECT
TAB.ID
FROM PFM_Printform TAB'
IF @QueryMode = 0
SELECT
     [ID]
FROM
     [PFM_Printform]
ELSE
IF @QueryMode = 5 AND @CustomQueryType = 1
EXECUTE (@SelectBody + ' WHERE xxx = ')
ELSE
IF @QueryMode = 2
SELECT
     TAB.[ID]
FROM
     [PFM_Printform] TAB, [ABB_AssociationDirectory] AD
WHERE
     AD.AssociationClass = @AssociationClass
translates to
CREATE OR REPLACE PROCEDURE PfmGetPrintformsR
v_QueryMode IN NUMBER DEFAULT NULL ,
cv_1 IN OUT SYS_REFCURSOR,
cv_2 IN OUT SYS_REFCURSOR
AS
-- Use @SelectBody in Custom Section queries like:
-- EXEC (@SelectBody + ' WHERE xxx = ' + @xxx)
v_SelectBody VARCHAR2(182);
BEGIN
v_SelectBody := 'SELECT
TAB.ID
FROM PFM_Printform TAB' ;
IF v_QueryMode = 0 THEN
OPEN cv_1 FOR
SELECT ID
FROM PFM_Printform ;
ELSE
IF v_QueryMode = 5
AND v_CustomQueryType = 1 THEN
OPEN cv_2 FOR
v_SelectBody || ' WHERE xxx = ';
ELSE
IF v_QueryMode = 2 THEN
OPEN cv_1 FOR
SELECT TAB.ID
FROM PFM_Printform TAB,
ABB_AssociationDirectory AD
WHERE AD.AssociationClass = v_AssociationClass;
END IF;
END IF;
END IF;
END;
I expect that cv_1 is also used for the "string Query" what actually is done when the last else if is removed.
Can these problems be fixed? I will be confronted with these kinds of translation problems in future more frequent.
Thanks for your help
Dominik

Hi,
to who reads my post.
Do you have an idea how to solve the problem or trick the migration so it creates in case 1 an "open cv_1 for v_strSql".
Or why does the migration decide to open second cursor in case 2 while in case 1 it decides not open a cursor at all even it's almost the syntax.
Thanks for your help
Dominik

Similar Messages

  • LaTeX problem missing font?

    I'm getting the following error in my missfont.log, and some chars are rendered wrong. I can't however seem to find out how to slove this:
    mktexpk --mfmode / --bdpi 600 --mag 1+57/600 --dpi 657 eurmo10

    Are you getting this error when you try to view a file (if so, a .dvi file?) or when trying to compile a .tex document? If you have a .dvi file, does converting it to ps (via dvips) or pdf (via dvips/ps2pdf or via dvipdfmx) help? Is this document one you created yourself, or got from someone else? Is it old?
    Anyway, the font in question (eurmo) is mentioned as one that might require custom configuration for the package the handles the core postscript fonts for LaTeX: here, but is very sketchy in the details. A minimal working example of the code generating the problem would make it much easier to troubleshoot.
    Last edited by frabjous (2010-09-14 21:53:15)

  • Problem with Automatic Replies or Out of Office

    Hi mates!
    I´ve just finished migration Exchange 2003 to Exchange 2010. 
    Today I´ve removed Exchange 2003.
    I have a problem with Automatic Replies or Out of Office. When the user active Automatic Replies in Outlook 2010, He has this Error:
    Your Out of Office settings cannot be displayed, because the server is currently unavailable. Try again later.
    If I logged into OWA, (Options > Set Automatic Replies) I could set it up and it worked fine.
    I run Test E-mail AutoConfiguration command to see if AutoDiscover has been configured and the OOF URL is correct:
    https://mail.domain.com/ews/exchange.asmx
    I try to browse the OOF URL from IE, It works fine.
    Authentication Permission for EWS Virtual Directory is:
    Anonymous – Enabled (For IUSER)
    Basic – Enabled
    Windows – Enabled
    Other authentication methods are disabled.
    WebServicesVirtualDirectory configuration for URL:
    InternalNLBBypassUrl :
    https://Server1.domain.local/ews/exchange.asmx
    InternalUrl         
    : https://mail.domain.local/EWS/Exchange.asmx
    ExternalUrl       
      : https://mail.domain.com/EWS/Exchange.asmx
    InternalNLBBypassUrl : https:// Server2.domain.local /ews/exchange.asmx
    InternalUrl         
    : https:// mail.domain.local /EWS/Exchange.asmx
    ExternalUrl         
    : https:// mail.domain.com /EWS/Exchange.asmx
    I use a certificate for Server HUB/CAS from my CA (Active Directory).
    In EMC I have this error for certificate:
    The certificate status could not be determinated because the revocation check failed.
    But when I generated in the past, this status of this certificate was This certificate is valid for Microsoft Exchange.
    I need help, because I don´t know I do…
    Thanks.

    Hi MAS,
    As soon as possible I will install this kb in a PC with Outlook 2010.
    Yes, I reset IIS, with the same result.
    I check this URL, and I run this command: TestOutlookWebServices -identity user01 with this result:
    RunspaceId : 1a13d412-b75d-48b5-8938-72ad53f11cb7
    Id         : 1019
    Type       : Information
    Message    : A valid Autodiscover service connection point was found. The Autodiscover URL on this object is https://mail.domain.local/Autodiscover/Autodiscover.xml.
    RunspaceId : 1a13d412-b75d-48b5-8938-72ad53f11cb7
    Id         : 1006
    Type       : Information
    Message    : Contacted the Autodiscover service at https://mail.domain.local/Autodiscover/Autodiscover.xml.
    RunspaceId : 1a13d412-b75d-48b5-8938-72ad53f11cb7
    Id         : 1016
    Type       : Information
    Message    : [EXCH] The AS service is configured for this user in the Autodiscover response received from https://mail.domain.local/Autodiscover/Autodiscover.xml.
    RunspaceId : 1a13d412-b75d-48b5-8938-72ad53f11cb7
    Id         : 1015
    Type       : Information
    Message    : [EXCH] The OAB service is configured for this user in the Autodiscover response received from https://mail.domain.local/Autodiscover/Autodiscover.xml.
    RunspaceId : 1a13d412-b75d-48b5-8938-72ad53f11cb7
    Id         : 1014
    Type       : Information
    Message    : [EXCH] The UM service is configured for this user in the Autodiscover response received from https://mail.domain.local/Autodiscover/Autodiscover.xml.
    RunspaceId : 1a13d412-b75d-48b5-8938-72ad53f11cb7
    Id         : 1016
    Type       : Information
    Message    : [EXPR] The AS service is configured for this user in the Autodiscover response received from https://mail.domain.local/Autodiscover/Autodiscover.xml.
    RunspaceId : 1a13d412-b75d-48b5-8938-72ad53f11cb7
    Id         : 1015
    Type       : Information
    Message    : [EXPR] The OAB service is configured for this user in the Autodiscover response received from https://mail.domain.local/Autodiscover/Autodiscover.xml.
    RunspaceId : 1a13d412-b75d-48b5-8938-72ad53f11cb7
    Id         : 1014
    Type       : Information
    Message    : [EXPR] The UM service is configured for this user in the Autodiscover response received from https://mail.domain.local/Autodiscover/Autodiscover.xml.
    RunspaceId : 1a13d412-b75d-48b5-8938-72ad53f11cb7
    Id         : 1022
    Type       : Success
    Message    : Autodiscover was tested successfully.
    RunspaceId : 1a13d412-b75d-48b5-8938-72ad53f11cb7
    Id         : 1106
    Type       : Information
    Message    : Contacted the Autodiscover service at https://SERVER1.domain.local:443/Autodiscover/Autodiscover.xml.
    RunspaceId : 1a13d412-b75d-48b5-8938-72ad53f11cb7
    Id         : 1116
    Type       : Information
    Message    : [EXCH] The AS service is configured for this user in the Autodiscover response received from https://SERVER1.domain.local:443/Autodiscover/Autodiscover.xml.
    RunspaceId : 1a13d412-b75d-48b5-8938-72ad53f11cb7
    Id         : 1115
    Type       : Information
    Message    : [EXCH] The OAB service is configured for this user in the Autodiscover response received from https://SERVER1.domain.local:443/Autodiscover/Autodiscover.xml.
    RunspaceId : 1a13d412-b75d-48b5-8938-72ad53f11cb7
    Id         : 1114
    Type       : Information
    Message    : [EXCH] The UM service is configured for this user in the Autodiscover response received from https://SERVER1.domain.local:443/Autodiscover/Autodiscover.xml.
    RunspaceId : 1a13d412-b75d-48b5-8938-72ad53f11cb7
    Id         : 1116
    Type       : Information
    Message    : [EXPR] The AS service is configured for this user in the Autodiscover response received from https://SERVER1.domain.local:443/Autodiscover/Autodiscover.xml.
    RunspaceId : 1a13d412-b75d-48b5-8938-72ad53f11cb7
    Id         : 1115
    Type       : Information
    Message    : [EXPR] The OAB service is configured for this user in the Autodiscover response received from https://SERVER1.domain.local:443/Autodiscover/Autodiscover.xml.
    RunspaceId : 1a13d412-b75d-48b5-8938-72ad53f11cb7
    Id         : 1114
    Type       : Information
    Message    : [EXPR] The UM service is configured for this user in the Autodiscover response received from https://SERVER1.domain.local:443/Autodiscover/Autodiscover.xml.
    RunspaceId : 1a13d412-b75d-48b5-8938-72ad53f11cb7
    Id         : 1122
    Type       : Success
    Message    : Autodiscover was tested successfully.
    RunspaceId : 1a13d412-b75d-48b5-8938-72ad53f11cb7
    Id         : 1013
    Type       : Error
    Message    : When contacting https://mail.domain.local/EWS/Exchange.asmx received the error The request failed withHTTP status 401: Authorization Required.
    RunspaceId : 1a13d412-b75d-48b5-8938-72ad53f11cb7
    Id         : 1025
    Type       : Error
    Message    : [EXCH] Error contacting the AS service at https://mail.domain.local/EWS/Exchange.asmx. Elapsed time was694 milliseconds.
    RunspaceId : 1a13d412-b75d-48b5-8938-72ad53f11cb7
    Id         : 1026
    Type       : Success
    Message    : [EXCH] Successfully contacted the UM service at https://mail.domain.local/EWS/Exchange.asmx. The elapsed time was 31 milliseconds.
    RunspaceId : 1a13d412-b75d-48b5-8938-72ad53f11cb7
    Id         : 1013
    Type       : Error
    Message    : When contacting https://mail.domain.com/EWS/Exchange.asmx received the error The request failed withHTTP status 401: Authorization Required.
    RunspaceId : 1a13d412-b75d-48b5-8938-72ad53f11cb7
    Id         : 1025
    Type       : Error
    Message    : [EXPR] Error contacting the AS service at https://mail.domain.com/EWS/Exchange.asmx. Elapsed time was15 milliseconds.
    RunspaceId : 1a13d412-b75d-48b5-8938-72ad53f11cb7
    Id         : 1026
    Type       : Success
    Message    : [EXPR] Successfully contacted the UM service at https://mail.domain.com/EWS/Exchange.asmx. The elapsed time was 31 milliseconds.
    RunspaceId : 1a13d412-b75d-48b5-8938-72ad53f11cb7
    Id         : 1124
    Type       : Success
    Message    : [Server] Successfully contacted the AS service at https://SERVER1.domain.local/ews/exchange.asmx. The elapsed time was 934 milliseconds.
    RunspaceId : 1a13d412-b75d-48b5-8938-72ad53f11cb7
    Id         : 1126
    Type       : Success
    Message    : [Server] Successfully contacted the UM service at https://SERVER1.domain.local/ews/exchange.asmx. The elapsed time was 93 milliseconds.
    All ok, but with these errors:
    RunspaceId : 1a13d412-b75d-48b5-8938-72ad53f11cb7
    Id         : 1013
    Type       : Error
    Message    : When contacting https://mail.domain.local/EWS/Exchange.asmx received the error The request failed withHTTP status 401: Authorization Required.
    RunspaceId : 1a13d412-b75d-48b5-8938-72ad53f11cb7
    Id         : 1025
    Type       : Error
    Message    : [EXCH] Error contacting the AS service at https://mail.domain.local/EWS/Exchange.asmx. Elapsed time was694 milliseconds.
    RunspaceId : 1a13d412-b75d-48b5-8938-72ad53f11cb7
    Id         : 1013
    Type       : Error
    Message    : When contacting https://mail.domain.com/EWS/Exchange.asmx received the error The request failed withHTTP status 401: Authorization Required.
    RunspaceId : 1a13d412-b75d-48b5-8938-72ad53f11cb7
    Id         : 1025
    Type       : Error
    Message    : [EXPR] Error contacting the AS service at https://mail.domain.com/EWS/Exchange.asmx. Elapsed time was15 milliseconds.
    In IIS for EWS has this method Authentication:
    - Anonymous
    - Basic
    - Windows
    For SSL Settings in EWS has this configuration:
    - Require SSL
    - Client Certificate: Ignore
    For Default Website in IIS, SSL Settings:
    - Require SSL
    - Client Certificate: Ignore
    I don´t have ISA/TMG. I use HLB KEMP for publishing OWA...

  • Problem with XMLTABLE and LEFT OUTER JOIN

    Hi all.
    I have one problem with XMLTABLE and LEFT OUTER JOIN, in 11g it returns correct result but in 10g it doesn't, it is trated as INNER JOIN.
    SELECT * FROM v$version;
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    PL/SQL Release 11.2.0.1.0 - Production
    "CORE     11.2.0.1.0     Production"
    TNS for Linux: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production
    --test for 11g
    CREATE TABLE XML_TEST(
         ID NUMBER(2,0),
         XML XMLTYPE
    INSERT INTO XML_TEST
    VALUES
         1,
         XMLTYPE
              <msg>
                   <data>
                        <fields>
                             <id>g1</id>
                             <dat>data1</dat>
                        </fields>
                   </data>
              </msg>
    INSERT INTO XML_TEST
    VALUES
         2,
         XMLTYPE
              <msg>
                   <data>
                        <fields>
                             <id>g2</id>
                             <dat>data2</dat>
                        </fields>
                   </data>
              </msg>
    INSERT INTO XML_TEST
    VALUES
         3,
         XMLTYPE
              <msg>
                   <data>
                        <fields>
                             <id>g3</id>
                             <dat>data3</dat>
                        </fields>
                        <fields>
                             <id>g4</id>
                             <dat>data4</dat>
                        </fields>
                        <fields>
                             <dat>data5</dat>
                        </fields>
                   </data>
              </msg>
    SELECT
         t.id,
         x.dat,
         y.seqno,
         y.id_real
    FROM
         xml_test t,
         XMLTABLE
              '/msg/data/fields'
              passing t.xml
              columns
                   dat VARCHAR2(10) path 'dat',
                   id XMLTYPE path 'id'
         )x LEFT OUTER JOIN
         XMLTABLE
              'id'
              passing x.id
              columns
                   seqno FOR ORDINALITY,
                   id_real VARCHAR2(30) PATH '.'
         )y ON 1=1
    ID     DAT     SEQNO     ID_REAL
    1     data1     1     g1
    2     data2     1     g2
    3     data3     1     g3
    3     data4     1     g4
    3     data5          Here's everything fine, now the problem:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bi
    PL/SQL Release 10.2.0.1.0 - Production
    "CORE     10.2.0.1.0     Production"
    TNS for HPUX: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    --exactly the same environment as 11g (tables and rows)
    SELECT
         t.id,
         x.dat,
         y.seqno,
         y.id_real
    FROM
         xml_test t,
         XMLTABLE
              '/msg/data/fields'
              passing t.xml
              columns
                   dat VARCHAR2(10) path 'dat',
                   id XMLTYPE path 'id'
         )x LEFT OUTER JOIN
         XMLTABLE
              'id'
              passing x.id
              columns
                   seqno FOR ORDINALITY,
                   id_real VARCHAR2(30) PATH '.'
         )y ON 1=1
    ID     DAT     SEQNO     ID_REAL
    1     data1     1     g1
    2     data2     1     g2
    3     data3     1     g3
    3     data4     1     g4As you can see in 10g I don't have the last row, it seems that Oracle 10g doesn't recognize the LEFT OUTER JOIN.
    Is this a bug?, Metalink says that sometimes we can have an ORA-0600 but in this case there is no error returned, just incorrect results.
    Please help.
    Regards.

    Hi A_Non.
    Thanks a lot, I tried with this:
    SELECT
         t.id,
         x.dat,
         y.seqno,
         y.id_real
    FROM
         xml_test t,
         XMLTABLE
              '/msg/data/fields'
              passing t.xml
              columns
                   dat VARCHAR2(10) path 'dat',
                   id XMLTYPE path 'id'
         )x,
         XMLTABLE
              'id'
              passing x.id
              columns
                   seqno FOR ORDINALITY,
                   id_real VARCHAR2(30) PATH '.'
         )(+) y ;And is giving me the complete output.
    Thanks again.
    Regards.

  • I get an error message when trying to install software update 4.2.8 "problem downloading, network connection timed out. Check network connections.

    I get an error message when trying to install software update 4.2.8
    "problem downloading, network connection timed out. Check network connections."
    Anyone one else had this problem?

    Brian-KK Sabah wrote:
    I too get the same message but I the software had downloaded 100% but about half way through "processing file" the error message (.3259) Check network connections. How do I fix this?
    See Here for your Error Message -3259
    http://support.apple.com/kb/ts2799

  • I am unable to view the full content of various web pages after purchasing Advanced System Care Pro. I was using the free version before with no problems. I cannot figure out if or which setting was changed. Please help

    I am unable to view the full content of various web sites after purchasing Advanced System Care Pro. I was using the free version before with no problems. I cannot figure out if or which setting was changed. I tried doing a system restore but that did not work. I tried turning off all features of ASC pro but that did not work. Javascript is enabled. Please help.
    Brian

    Many thanks.
    With those symptoms, I'd try the following document:
    Apple software on Windows: May see performance issues and blank iTunes Store
    (If there's a SpeedBit LSP showing up in Autoruns, it's usually best to just uninstall your SpeedBit Video Accelerator.)

  • JSF SQL Exception missing parameter IN or OUT

    Hello,
    I am new in JSF. I wanted to view information from table stored in Oracle database XE edition. I use jdbc driver to connect Netbeans 6.0 environment to the database. Then I set the table and SQL statement with "?". Always when I want to see the information it throws exception below. I am completely lost because I couldnt find any solution on the Internet. I use Glassfish V2 server. Thank you very much for help.
    Martin
    com.sun.rave.web.ui.appbase.ApplicationException: java.sql.SQLException: Missing parameter IN or OUT at index:: 1
    at com.sun.rave.web.ui.appbase.faces.ViewHandlerImpl.cleanup(ViewHandlerImpl.java:594)
    at com.sun.rave.web.ui.appbase.faces.ViewHandlerImpl.renderView(ViewHandlerImpl.java:325)
    at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:106)
    at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:251)
    at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:144)
    at com.sun.faces.extensions.avatar.lifecycle.PartialTraversalLifecycle.render(PartialTraversalLifecycle.java:106)
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:245)
    at org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:411)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:317)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:198)
    at com.sun.webui.jsf.util.UploadFilter.doFilter(UploadFilter.java:267)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:198)
    at org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:390)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:198)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:288)
    at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:271)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:202)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
    at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:94)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:206)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:571)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:1080)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:150)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:571)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:1080)
    at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:270)
    at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.invokeAdapter(DefaultProcessorTask.java:637)
    at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.doProcess(DefaultProcessorTask.java:568)
    at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.process(DefaultProcessorTask.java:813)
    at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.executeProcessorTask(DefaultReadTask.java:339)
    at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.doTask(DefaultReadTask.java:261)
    at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.doTask(DefaultReadTask.java:212)
    at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:265)
    at com.sun.enterprise.web.connector.grizzly.ssl.SSLWorkerThread.run(SSLWorkerThread.java:106)

    Open up your SessionBean1 and unfold the init method where it says Creator Managed Component Initialization and copy and paste the code for the RowSet initialization so it is clear what your query says so that somebody can help you because the way you described is not enough information for anyone to understand what's going on. You should also include the prerender method of corresponding page with table, although prerender is not listed in the Stack Trace, but it could help. Then you will have alot better chance of others helping you out!
    Jason

  • After updating to 7, now says that the sim card is missing? Have taken out the sim card several times, but it does not helps.

    After updating to iOS 7.0.1 ( I think it was, could also be iOS 7.0.2), now says that the sim card is missing? Have taken out the sim card several times, but it does not helps.

    See if this helps: http://support.apple.com/kb/TS4148

  • What is this command script called missing kitty that initiated out of nowhere on my macbook pro?

    What is this command script called missing kitty that initiated out of nowhere on my macbook pro? It says it was created by a former Apple genius and it showed up 3 days after I had to have my macbook wiped clean and re-installed at the Genius bar due to a "software glitch" that locked up my firmware....

    https://discussions.apple.com/thread/2404816?start=0&tstart=0
    at the Apple Store called "Missing Kitty" that would allow you to install a script on the root level of the HD. After installing everything and making a user it would go in and delete the user so on the next restart the computer would start up a "brand new" and already have iLife installed.
    You can always call the genius bar for clarification
    Genius reservation http://www.apple.com/retail/geniusbar/

  • Has anyone had any problems with their charger blowing out?

    Has anyone had any problems with their charger blowing out? mine blew, there's now a charred pin on the charger and in the socket of the macbook. The plastic around the charge socket is also cracked & distorted from the blow-out. It wasn't a power surge as no other electrical items were affected. It wasn't liquid or dust, as I'm the only person who uses it & I'm very careful. I'm concerned that the consequences could have been terrible. I wasn't present when it happened though, I can just see the evidence after the event.
    I have a mid 2010 13" Macbook running the latest software & use the original magsafe charger that came with it.
    Will I have to fork out for a costly repair or is there a safety issue that Apple will sort out for me?
    Any advice would be much appreciated.

    Everything in the box with iPhone is covered by the iPhone warranty ,go  to Apple genius bar before warranty expires

  • I'm having trouble buying a season pass for The Americans. I have purchased passes to Justified for the past 4 years with no problem. Can't figure out why this purchase won't work.

    I'm having trouble buying a season pass for The Americans. I have purchased passes to Justified for the past 4 years with no problem. Can't figure out why this purchase won't work.

    What is the problem that you are having ? If you are getting an error message then what does it say ?

  • HT5002 I used Inkscape on Linux before moved to Mac. Now I am trying to install it using MacPorts, but libpixman has some problems that has been reported out there. Does any one know how to fix it without the need to use other way than MacPorts?

    I used Inkscape on Linux before moved to Mac. Now I am trying to install it
    using MacPorts, but libpixman has some problems that has been reported out there.
    Does any one know how to fix it without the need to use other way than MacPorts?

    Start with this comprehensive troubleshooting article:
    https://discussions.apple.com/docs/DOC-3521
    Look at this one for possible solutions:
    https://discussions.apple.com/docs/DOC-3353
    Ciao.

  • When I move high quality clips into my timeline in Final Cut Express HD, they look and export low quality. I have tried converting the clips and de-interlacing them, but they always look the same, What is the problem? Thanks so much.

    When I move high quality clips into my timeline in Final Cut Express HD, they look and export low quality. I have tried converting the clips and de-interlacing them, but they always look the same, What is the problem? Thanks so much.

    You should check that the Project settings match the clip settings before editing them to the Timeline.
    Only newly created Projects will change not existing ones by adjusting the Project settings.
    If, for example, you have a Project set to NTSC DV you can only end up in trouble if the clips are PAL 1920 x 1080i.
    Al

  • TS1702 I am having a problem with the Simpson tapped out app it won't connect to the server it only happens on my iPad other iPads are ok

    I am having a problem with the Simpson tapped out it will not connect to the server it only occurred on my iPad not any others in my home

    Hey Jerryd820,
    Thanks for the question, and welcome to Apple Support Communities.
    The following article provides suggestions if you are having issues with a specific application:
    iOS: Troubleshooting applications purchased from the App Store
    http://support.apple.com/kb/TS1702
    6. Reinstall the affected application
    Remove the application from your device and reinstall it.
    1. Touch and hold any application icon on the Home Screen until the icons start to wiggle.
    2. Tap the "x" in the corner of the application you want to delete.
    3. Tap Delete to remove the application and all of its data from your device.
    4. Press the Home button.
    5. Go to the App Store.
    6. Search for the application and then download it again.
    Note: If it is a paid app, ensure you are using the iTunes account you purchased the app with originally. If it is not, you will be charged for the app again. For more information regarding downloading previously purchased items, see this article.
    7. If the issue is still unresolved
    If you continue to experience the issue, contact the developer of the application for further assistance.
    Thanks,
    Matt M.

  • I can't update Fiefox since update 10.o1 or 10.02. Every time I try to I get the same message, "7 - ZIP File is missing" I don't know how or where to correct this problem. I'd really appreciate any help that corrects this problem. Thanks sovery much,

    Missing "7-Zip File"
    Hello,
    I haven't been able to update Firefox since 10.01 or 10.02 because every time I try I get the same message the "7-ZIP File" is missing. Then the update fails. I've submitted this problem to Mozilla Firefox and, got an immediate reply of " they are researching your problem".
    Well, you can tell how long that has been. Is there anything I can do, or any where I can go to get the file I need?
    Any constructive help would be very much appreciated! I'm not sure If I'll ever be able to find where this is located. But I do appreciate help just the same.

    It is possible that your anti-virus software is corrupting the downloaded files or otherwise interfering with downloading files by Firefox.<br />
    Disable your anti-virus software temporarily to see if that makes installing work.
    Download a fresh Firefox copy and save the file to the desktop.
    *Firefox 11.0.x: http://www.mozilla.org/en-US/firefox/all.html
    Uninstall your current Firefox version, if possible.
    *Do NOT remove personal data when you uninstall the current version or you lose your bookmarks and other data because all profile folders will be removed.
    Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    *It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    *http://kb.mozillazine.org/Uninstalling_Firefox
    Your bookmarks and other profile data are stored elsewhere in the Firefox Profile Folder and won't be affected by a reinstall, but make sure that you do not select to remove personal data if you uninstall Firefox.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/Profile_backup
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

Maybe you are looking for

  • PDFMaker missing files issue with PDF Forms from Office 2007

    Hi, I have Adobe PDF 8.0 Pro installed  (full installation) and I upgraded office from 2003 to 2007 AND Windows from 2000 to XP Pro. I used to be able to create PDF Forms from an Excel document when using Office 2003. Now, when I choose to create a n

  • Strange freezing/display problem

    Hi, I've recently started having some strange problems with my 24" iMac 2.16GHz. What happens is the screen freezes, not just the application I'm working in, but the entire screen. If I move the mouse it looks like the screen tries to redraw itself s

  • How to use web services in JSF app

    I am unsure if this is the right forum for this question. Let me know if it is not - and where I should go. Anyways, I'm building a JSF web app, in which there is a datatable page displaying some business data. The app is going to be deployed and run

  • Index on SharePoint 2013 Power view slide

    Hi All, I have PowerView Dashboard in Sharepoint 2013, and it has 42 slides. It make very bad impression in front of client to go all slide one by one. Is there any simplest way i.e We create index on my first page and according to index we create li

  • Where is the documentation about PostgreSQL?

    Could not get the docs as mentioned on the LION Server Manual: "PostgreSQL, view its documentation at http://www.example.com/postgresql/ (replace www.example.com with your server's URL)." It shows an error message saying the page could not be found.