Issues upgrading from 7.5.1 to 10gR3

We are having issues upgrading from Content Server 7.5.1 to 10gR3 running a Sql Server 2005 back end (based on Windows Server 2003).
We run through the upgrade process (which completes with warnings), but when we try to start the Content Server, we get the following error:
( 0%) Changing lengths of fields in table 'DocFormats'...
system 01.17 12:17:42.738 main When asking the database
for a list of tables, we got no tables back (internal)
01.17 12:17:42.753 main !
csUnableToLocateDatabaseTable,DocFormats-exception stack
intradoc.data.DataException: !
csUnableToLocateDatabaseTable,DocFormats
<snip>
Unable to locate table 'DocFormats' in database.
We are looking for advice from anyone who has been through this upgrade (in the same type of environment), or who have encountered this error or anything like it. The error appears to indicate a database access issue, but we have profiled the upgrade and startup, and have proved that the processes are reaching the database. We
have also tried the install against clean and complex installs, and have tried both JDTS and Microsoft drivers without success (same error).
We have spent many days on this, and have been working with Oracle support, but are starting to worry about how realistic the upgrade is.
Cheers,
Dave T

Oracle support suggested I execute an "exec sp_changeobjectowner 'DocFormats','<SchemaName>" command against the database.
I did this for the DocFormats table only.
When I tried to start the instance, the error message stated the DocFormats table was now missing.
Inside the database, the table 'Stellent.DocFormats' was visible through SQL Server management.
I then created a copy of this table as 'dbo.DocFormats' (as it was originally), and tried starting the process again (with the config.cfg variables you suggested).
It turns out the upgrade process can now see the DocFormats table and upgrade it successfully (The dformat column is now showing as varchar(80) ).
The startup process now fails at the very next table in the upgrade list (see output below).
Sounds like a database owner/permissions issue.
Any ideas from anyone with SQL Server experience?
Output from \bin\idcserver.exe -console -debug:
11:05:30.006     main     SELECT dValue FROM Config WHERE dSection='DevUpdate' AND dName='MetaFieldLengthUpdateV8'
systemdatabase     01.18 11:05:30.006     main     1.79 ms. SELECT dValue FROM Config WHERE dSection='DevUpdate' AND dName='MetaFieldLengthUpdateV8'[Executed. Returned row(s): false]
systemdatabase     01.18 11:05:30.006     main     SELECT dValue FROM Config WHERE dSection='DevUpdate' AND dName='FormatFieldLengthUpdateV8'
systemdatabase     01.18 11:05:30.006     main     2.56 ms. SELECT dValue FROM Config WHERE dSection='DevUpdate' AND dName='FormatFieldLengthUpdateV8'[Executed. Returned row(s): false]
( 0%) Changing lengths of fields in table 'DocFormats'...
systemdatabase     01.18 11:05:30.022     main     getColumns DocFormats
systemdatabase     01.18 11:05:30.022     main     1.66 ms. getColumns DocFormats[Retrieved 3 columns.]
systemdatabase     01.18 11:05:30.084     main     Table list: DocFormats
systemdatabase     01.18 11:05:30.084     main     SELECT * FROM DocFormats
systemdatabase     01.18 11:05:30.084     main     2.83 ms. SELECT * FROM DocFormats[Executed. Returned row(s): true]
systemdatabase     01.18 11:05:30.100     main     Delete DocFormats
systemdatabase     01.18 11:05:30.116     main     drop table DocFormats
systemdatabase     01.18 11:05:30.256     main     148 ms. Delete DocFormats[Executed]
systemdatabase     01.18 11:05:30.256     main     Connection with id of 'main.1' is removed from active connections with key of 'main'.
systemdatabase     01.18 11:05:30.256     main     release pool connection
systemdatabase     01.18 11:05:30.256     main     assigning connection
systemdatabase     01.18 11:05:30.256     main     Connection with last id of <unassigned> is added to active connections with key of 'main'.
systemdatabase     01.18 11:05:30.256     main     Assigned connection to this thread, took 0.49 ms.
systemdatabase     01.18 11:05:30.256     main     Preparing connection for use, id initialized as main.2
systemdatabase     01.18 11:05:30.256     main     dFormat varchar(80) NOT NULL, dConversion varchar(30) NULL, dDescription varchar(80) NULL|PK_DocFormats| PRIMARY KEY (dFormat)
systemdatabase     01.18 11:05:30.256     main     CREATE TABLE DocFormats (dFormat varchar(80) NOT NULL, dConversion varchar(30) NULL, dDescription varchar(80) NULL, CONSTRAINT PK_DocFormats PRIMARY KEY (dFormat))
systemdatabase     01.18 11:05:30.256     main     7.25 ms. dFormat varchar(80) NOT NULL, dConversion varchar(30) NULL, dDescription varchar(80) NULL|PK_DocFormats| PRIMARY KEY (dFormat)[Executed.]
systemdatabase     01.18 11:05:30.256     main     Connection with id of 'main.2' is removed from active connections with key of 'main'.
systemdatabase     01.18 11:05:30.256     main     release pool connection
systemdatabase     01.18 11:05:30.256     main     assigning connection
systemdatabase     01.18 11:05:30.256     main     Connection with last id of <unassigned> is added to active connections with key of 'main'.
systemdatabase     01.18 11:05:30.272     main     Assigned connection to this thread, took 2412 ns.
systemdatabase     01.18 11:05:30.272     main     Preparing connection for use, id initialized as main.3
systemdatabase     01.18 11:05:30.272     main     SELECT * FROM DocFormats
systemdatabase     01.18 11:05:30.288     main     4.26 ms. SELECT * FROM DocFormats[Executed. Returned row(s): false]
systemdatabase     01.18 11:05:30.288     main     INSERT INTO DocFormats (dFormat, dConversion, dDescription) values('application/msword', 'PassThru', 'apMicrosoftWordDesc')
systemdatabase     01.18 11:05:30.288     main     2.93 ms. INSERT INTO DocFormats (dFormat, dConversion, dDescription) values('application/msword', 'PassThru', 'apMicrosoftWordDesc')[Executed. 1 rows affected.]
( 0%) Importing table 'DocFormats'...
systemdatabase     01.18 11:05:30.288     main     INSERT INTO DocFormats (dFormat, dConversion, dDescription) values('application/pdf', 'PassThru', 'apPdfOptimization')
systemdatabase     01.18 11:05:30.288     main     1.87 ms. INSERT INTO DocFormats (dFormat, dConversion, dDescription) values('application/pdf', 'PassThru', 'apPdfOptimization')[Executed. 1 rows affected.]
systemdatabase     01.18 11:05:30.288     main     INSERT INTO DocFormats (dFormat, dConversion, dDescription) values('application/rtf', 'PassThru', 'apRtfDesc')
systemdatabase     01.18 11:05:30.303     main     2.06 ms. INSERT INTO DocFormats (dFormat, dConversion, dDescription) values('application/rtf', 'PassThru', 'apRtfDesc')[Executed. 1 rows affected.]
systemdatabase     01.18 11:05:30.303     main     INSERT INTO DocFormats (dFormat, dConversion, dDescription) values('application/vnd.ms-excel', 'PassThru', 'apMicrosoftExcelDesc')
systemdatabase     01.18 11:05:30.303     main     1.70 ms. INSERT INTO DocFormats (dFormat, dConversion, dDescription) values('application/vnd.ms-excel', 'PassThru', 'apMicrosoftExcelDesc')[Executed. 1 rows affected.]
systemdatabase     01.18 11:05:30.303     main     INSERT INTO DocFormats (dFormat, dConversion, dDescription) values('application/vnd.ms-powerpoint', 'PassThru', 'apMicrosoftPowerPointDesc')
systemdatabase     01.18 11:05:30.303     main     1.69 ms. INSERT INTO DocFormats (dFormat, dConversion, dDescription) values('application/vnd.ms-powerpoint', 'PassThru', 'apMicrosoftPowerPointDesc')[Executed. 1 rows affected.]
systemdatabase     01.18 11:05:30.303     main     INSERT INTO DocFormats (dFormat, dConversion, dDescription) values('application/vnd.ms-project', 'PassThru', 'apMicrosoftProjectDesc')
systemdatabase     01.18 11:05:30.303     main     1.53 ms. INSERT INTO DocFormats (dFormat, dConversion, dDescription) values('application/vnd.ms-project', 'PassThru', 'apMicrosoftProjectDesc')[Executed. 1 rows affected.]
systemdatabase     01.18 11:05:30.303     main     INSERT INTO DocFormats (dFormat, dConversion, dDescription) values('application/vnd.visio', 'PassThru', 'apVisioDesc')
systemdatabase     01.18 11:05:30.303     main     1.63 ms. INSERT INTO DocFormats (dFormat, dConversion, dDescription) values('application/vnd.visio', 'PassThru', 'apVisioDesc')[Executed. 1 rows affected.]
systemdatabase     01.18 11:05:30.303     main     INSERT INTO DocFormats (dFormat, dConversion, dDescription) values('application/wordperfect', 'PASSTHRU', 'apWordPerfectDesc')
systemdatabase     01.18 11:05:30.303     main     1.98 ms. INSERT INTO DocFormats (dFormat, dConversion, dDescription) values('application/wordperfect', 'PASSTHRU', 'apWordPerfectDesc')[Executed. 1 rows affected.]
systemdatabase     01.18 11:05:30.303     main     INSERT INTO DocFormats (dFormat, dConversion, dDescription) values('application/write', 'PassThru', 'apMicrosoftWriteDesc')
systemdatabase     01.18 11:05:30.319     main     4.89 ms. INSERT INTO DocFormats (dFormat, dConversion, dDescription) values('application/write', 'PassThru', 'apMicrosoftWriteDesc')[Executed. 1 rows affected.]
systemdatabase     01.18 11:05:30.319     main     INSERT INTO DocFormats (dFormat, dConversion, dDescription) values('image/graphic', 'ImageThumbnail', 'apThumbnailsDesc')
systemdatabase     01.18 11:05:30.319     main     2.12 ms. INSERT INTO DocFormats (dFormat, dConversion, dDescription) values('image/graphic', 'ImageThumbnail', 'apThumbnailsDesc')[Executed. 1 rows affected.]
systemdatabase     01.18 11:05:30.319     main     INSERT INTO DocFormats (dFormat, dConversion, dDescription) values('text/html', 'PassThru', 'Hyperlink text document')
systemdatabase     01.18 11:05:30.319     main     1.84 ms. INSERT INTO DocFormats (dFormat, dConversion, dDescription) values('text/html', 'PassThru', 'Hyperlink text document')[Executed. 1 rows affected.]
systemdatabase     01.18 11:05:30.319     main     INSERT INTO DocFormats (dFormat, dConversion, dDescription) values('text/plain', 'PassThru', 'Text file')
systemdatabase     01.18 11:05:30.319     main     1.66 ms. INSERT INTO DocFormats (dFormat, dConversion, dDescription) values('text/plain', 'PassThru', 'Text file')[Executed. 1 rows affected.]
systemdatabase     01.18 11:05:30.319     main     INSERT INTO DocFormats (dFormat, dConversion, dDescription) values('text/postscript', 'Distiller', 'apDistillerDesc')
systemdatabase     01.18 11:05:30.319     main     1.60 ms. INSERT INTO DocFormats (dFormat, dConversion, dDescription) values('text/postscript', 'Distiller', 'apDistillerDesc')[Executed. 1 rows affected.]
( 17%) Changing lengths of fields in table 'ExtensionFormatMap'...
systemdatabase     01.18 11:05:30.319     main     Alter ExtensionFormatMap
systemdatabase     01.18 11:05:30.335     main     !csDbUnableToPerformAction_alter,\!csDbTableMissing
(internal)     01.18 11:05:30.335     main     setExceptionCause threw: null
systemdatabase     01.18 11:05:30.335     main     15 ms. Alter ExtensionFormatMap[!csDbTableMissing]
systemdatabase     01.18 11:05:30.335     main     Connection with id of 'main.3' is removed from active connections with key of 'main'.
systemdatabase     01.18 11:05:30.335     main     release pool connection
(internal)     01.18 11:05:30.350     main     !csDbUnableToPerformAction_alter,\!csDbTableMissing-exception stack
intradoc.data.DataException: !csDbUnableToPerformAction_alter,\!csDbTableMissing
     at intradoc.jdbc.JdbcWorkspace.alterTable(Unknown Source)
     at intradoc.server.IdcExtendedLoader.changeFieldLength(Unknown Source)
     at intradoc.server.IdcExtendedLoader.expandFormatFieldLengthsV8(Unknown Source)
     at intradoc.server.IdcExtendedLoader.extraBeforeCacheLoadInit(Unknown Source)
     at intradoc.server.IdcSystemLoader.loadCaches(Unknown Source)
     at intradoc.server.IdcServerManager.init(Unknown Source)
     at IdcServer.init(Unknown Source)
     at IdcServer.main(Unknown Source)
Caused by: java.sql.SQLException: !csDbTableMissing
     ... 8 more
Unable to alter table '!csDbTableMissing'.

Similar Messages

  • Issue: Upgrading from 11i to R12 - zxmiggltaxopts.sql

    Hi,
    we are upgrading from 11.5.10.2 to 12.1.1. During upgrade patch, one of the worker zxmiggltaxopts.sql has failed with below errors:
    sqlplus -s APPS/***** @/orafinx/apps/apps_st/appl/zx/12.0.0/patch/115/sql/zxmiggltaxopts.sql
    declare
    ERROR at line 1:
    ORA-20001:
    ORA-06512: at "APPS.APP_EXCEPTION", line 72
    ORA-06512: at "APPS.ZX_MIG_GL_TAX_OPTIONS_PKG", line 131
    ORA-06512: at line 8
    We are unable to find any hits for this particular error in MOS. Have any one else on the forum faced this particular issue? any known issues or workarounds that might help us ?
    Thanks a lot for your help.
    Regards,
    Kai

    Similar issue is reported in (Bug 8608790: APPLYING PATCH: ADWORKER FAILED /ORA-06512: AT) but it is not much helpful.
    I would suggest you log a SR.
    Thanks,
    Hussein

  • Any issues upgrading from 1.0.2 to 1.1.2?

    Hello,
    I have a regular unhacked/locked phone and it's on 1.0.2. I never upgraded to 1.1.1 because of the rumor of the battery draining issue. I have very good battery usage. Now that 1.1.2 seem to have fix that, I'd like to upgrade.
    So I'd like to hear from anyone who upgraded from 1.0.2 to 1.1.2 whether there was issue or not.
    Thanks in advance.

    Answering my own question. Just took the leap and upgraded from 1.0.2 to 1.1.2. No problems at all. Took all of 15 minutes. Had the phone connected the whole time and didn't disconnect until the entire process is finished with the message that the phone has been activated.
    There were two "hold my breath" spots, one is the yellow triangle with "connect iPhone to iTune", the other is the end of upgrade with the white plug to iTune icon and something about emergency call. Both lasted 2-3 seconds before the process continued on.
    Now I get to have fun with the new features. I'll monitor the battery usage as I was getting excellent usage with 1.0.2.

  • Any Issues Upgrading from Word 2003 to 2007?

    Hello. We have the option in my department to upgrade from
    Word 2003 to Word 2007. My team still has some help projects in
    RoboHelp for Word. Before we decide to upgrade, I was wondering if
    anyone else using RoboHelp 7 (for Word) has upgraded to Microsoft
    Word 2007, and if they have encountered any issues. Thanks for any
    input.

    Thanks for all the helpful feedback, everyone. Here's an
    update, just fyi. I loaded Office 2007 today, and seem to be
    encountering one of the issues described by David Hurlston. When I
    try to create a new popup, it takes a little over one minute for
    the Insert Popup window to appear. Then when I select the topic to
    which I want to link and click OK, it takes another 10 seconds or
    so for the link to appear.
    I also received the "Microsoft Office Word has encountered a
    problem and needs to close" error five times in the past hour, when
    just trying to add new topics. I ran Microsoft Office Diagnostics,
    and it was unable to diagnose the cause of the crash. I'm using
    RoboHelp for Word 7.0, Build 7.02.001. (I have the full Adobe
    Technical Communication Suite with all of the latest updates
    installed, and just loaded Office 2007 today, along with all of the
    latest Windows and Office updates.)
    This is the perfect time for our team to upgrade to Office
    2007 since we're at the very beginning of a release, so I'm going
    to continue testing to see if I can figure out why it's a bit
    sluggish and why it's crashing. I just wanted to follow up on my
    original post in case any of this info is helpful.
    On a semi-related note... I'm usually pretty good about
    finding my way around in new user interfaces, but it took me about
    ten minutes to figure out how to access the Insert Popup window
    (due to the new Word UI). If anyone knows of a handy reference
    guide for people upgrading to RoboHelp for Word 2007, let me know.
    I checked the LiveDocs for RoboHelp for Word, but the version I
    found currently contains the old icons I'm used to. (I'm hoping to
    find some type of quick reference that explains where to find
    things that have moved and/or changed icons. I found a great
    interactive tool on Microsoft's site, but it seems to be specific
    to Word docs, without addressing the RoboHelp-specific options.)
    Thanks again for all the input!

  • Any problems/issues upgrading from iPhoto 6.0.6 to iPhoto 8?

    Hello, I am about to purchase iLife 08 and upgrade iPhoto 6 to iPhoto 8. Does anyone know of any problems in doing this, pitfalls to watch out for, etc.? Thanks, PP

    pokerpal
    No issues but there are changes.
    Have you your photos organised in Rolls in v6? If so, make sure that each roll has a name other than the default one. So make sure your Roll 123 is named Spring 06 or whatever, otherwise the rolls will be split into Events. The primary difference between Events and Rolls is that Events are based on the date the pics were taken, rolls on the dates the pic were imported.
    You can rename rolls using the Info Pane (wee 'i', lower left) the name and date fields are editable.
    If you've no interest in Rolls, then ignore the above.
    Other than that make a back up, of course. Then update iLife and simply launch iPhoto. It will ask is it okay to upgrade the library. Say yes and off you go.
    With iPhoto 7 (iLife 08) the old iPhoto Library Folder is now a Unix Style Package File. The change was made to the format of the iPhoto library because many users were inadvertently corrupting their library by browsing through it with other software or making changes in it themselves. Before you panic:
    There are many, many ways to access your files in iPhoto:
    For 10.5 users: You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Apple-Click for selecting multiple pics.
    Uploaded with plasq's Skitch!
    To upload to a site that does not have an iPhoto Export Plug-in the recommended way is to Select the Pic in the iPhoto Window and go File -> Export and export the pic to the desktop, then upload from there. After the upload you can trash the pic on the desktop. It's only a copy and your original is safe in iPhoto.
    This is also true for emailing with Web-based services. If you're using Gmail you can use THIS
    If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
    Or, if you want to access the files with iPhoto not running, then create a Media Browser using Automator (takes about 10 seconds) or use THIS
    Other options include:
    1. *Drag and Drop*: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    2. *File -> Export*: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    3. *Show File*: Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.
    Regards
    TD

  • Known Issues Upgrading from Apex 3.0.1 to 3.1.1

    Hi,
    We are in the process of upgrading to 3.1.1 from 3.0.1, are there any known issues (critical) that people can share?
    Have heard that there might be an issue with the Shuttle item - is this correct?
    Thanks.
    Tony.

    Hello,
    >> Have heard that there might be an issue with the Shuttle item - is this correct?
    I’m not aware of any critical issues with the shuttle item, or any other items, for that matter, regarding upgrade to 3.1.1. However …
    Version 3.1 introduced extensive use with the ‘FIELDSET’ tag, in all the compound items, like data picker, checkboxes, shuttle etc. This use might cause some layout problems, or the need to adjust some JavaScript code, but nothing that can’t be overcome. You can read the following for some more details:
    FIELDSET – new layout behavior in 3.1.1
    3.1 upgrade problem:  Post Element Text does not align properly
    Other than that, and as far as my own experience goes, it’s a smooth upgrade.
    Regards,
    Arie.

  • BO XI InfoStore Service Issue - upgrading from CR 10 to BO XI

    Ours is a Java web application that works with BO 10. After we upgraded to BI XI, when I login to the CMS server (successfully) and try to get the InfoStore with this code
    IInfoStore iStore = (IInfoStore) es.getService("InfoStore");
    I get the following exception
    ERROR: 2011-06-28 20:20:53,738 com.crystaldecisions.enterprise.ocaframework.WireOb2Unpacker - initialize(): invalid xrl,3&U=10,03&.1={3&1=301,03&2=301,03},2z&.2={3&1=302,03&2=302,03},2z&.3={3&1=303,03&2=303,03},2z&.4={3&1=304,03&2=304,03},2z&.5={3&1=305,03&2=305,03},2z&.6={3&1=306,03&2=306,03},2z&.7={3&1=307,03&2=307,03},2z&.8={3&1=308,03&2=308,03},2z&.9={3&1=309,03&2=309,03},2z&.?={3&1=310,03&2=310,03},2z
    com.crystaldecisions.celib.exception.c: ASSERTION FAILED
         at com.crystaldecisions.celib.trace.d.a(Unknown Source)
         at com.crystaldecisions.enterprise.ocaframework.k.a(Unknown Source)
         at com.crystaldecisions.celib.properties.Property.a(Unknown Source)
         at com.crystaldecisions.celib.properties.Property.getPropertyBag(Unknown Source)
         at com.crystaldecisions.celib.properties.PropertyBag.getPropertyBag(Unknown Source)
         at com.crystaldecisions.sdk.occa.pluginmgr.internal.a.getSecurityInfo(Unknown Source)
         at com.crystaldecisions.sdk.occa.infostore.internal.InfoStore.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.infostore.internal.InfoStore.<init>(Unknown Source)
         at com.crystaldecisions.sdk.occa.infostore.internal.InfoStoreFactory.makeOCCA(Unknown Source)
         at com.crystaldecisions.sdk.framework.internal.a.getService(Unknown Source)
         at com.crystaldecisions.sdk.framework.internal.a.getService(Unknown Source)
    This does NOT happen when I connect to CR 10. Only with the new BO XI, I come across this issue. I am using the sdk from BO XI installation. I tried on Java 1.4 and 1.6 with the same results.
    The report viewer (CrystalReportViewer) throws a NullPointerException when the following is executed in the jsp
    viewer.processHttpRequest(request, response, getServletConfig().getServletContext(), out);
    stack trace:
    java.lang.NullPointerException
         at com.crystaldecisions.enterprise.ocaframework.ServerSpec.a(Unknown Source)
         at com.crystaldecisions.enterprise.ocaframework.ServerSpec.<init>(Unknown Source)
         at com.crystaldecisions.enterprise.ocaframework.AbstractServerHandler.buildServerInfo(Unknown Source)
         at com.crystaldecisions.enterprise.ocaframework.AbstractServerHandler.buildClusterInfo(Unknown Source)
         at com.crystaldecisions.enterprise.ocaframework.u.a(Unknown Source)
         at com.crystaldecisions.enterprise.ocaframework.ServiceMgr.do(Unknown Source)
         at com.crystaldecisions.enterprise.ocaframework.l.a(Unknown Source)
         at com.crystaldecisions.enterprise.ocaframework.m.a(Unknown Source)
         at com.crystaldecisions.enterprise.ocaframework.ServiceMgr.getManagedService(Unknown Source)
         at com.crystaldecisions.sdk.occa.managedreports.ps.internal.j.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.managedreports.ps.internal.j.<init>(Unknown Source)
         at com.crystaldecisions.sdk.occa.managedreports.ps.internal.PageServerRequesterFactory.makePageServerRequester(Unknown Source)
         at com.crystaldecisions.sdk.occa.managedreports.ps.internal.c.if(Unknown Source)
         at com.crystaldecisions.sdk.occa.managedreports.ps.internal.c.getPage(Unknown Source)
         at com.crystaldecisions.report.web.viewer.ReportAgent.a(Unknown Source)
         at com.crystaldecisions.report.web.viewer.CrystalReportViewer.goto(Unknown Source)
         at com.crystaldecisions.report.web.ServerControl.a(Unknown Source)
         at com.crystaldecisions.report.web.ServerControl.processHttpRequest(Unknown Source)
         at org.apache.jsp.jsp.reportviewer.ReportViewer_jsp._jspService(ReportViewer_jsp.java:54)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:92)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:720)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:162)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:240)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:187)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:720)
         at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:628)
         at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:383)
         at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:307)
    I am not sure if the BO installation on the server is the issue or the code on the application side. Also our administrator says that he does not see any log (audit) to attribute to my issues.
    Thank you in advance for any help you may provide in resolving this.

    The problem that you are encountering may be due to conflicting or not up-to-date jar files in your cutom web application.
    I would suggest that you confirm that the BusinessObjects jar files that you are using in your custom application on the XI environment (I am assuming that you are now on an XI R3 environment) are completely up-to-date and do not conflict with any of the Crystal jar files that you were using in the CE10 environment.
    To do this, please remove all of the CE10 jar files from your custom web application.  Then add all of the BusinessObjects XIR3 jar files to your custom web application.
    The SDK jar files for a Windows environment can be found in the following location:
    <Business Objects Installation Directory>\Common\4.0\java\lib and
    <Business Objects Installation Directory>\Common\4.0\java\lib\external
    Additionally, if you are using the Viewers SDK, the crystal report viewer files can be found in this location:
    <Business Objects Installation Directory>\Common\4.0\crystalreportviewers12
    You don't need to include all of the jar files into your custom application.  Depending on which SDKs you are using, the jar files that are required are different.   We have a developer's guide for the Enterprise SDK that lists the jar files that are required for the various SDKs.  The developer's guide can be downloaded from the following location:
    http://help.sap.com/businessobject/product_guides/boexir31SP3/en/boesdk_java_dg_12_en.zip
    When you open the Developer's Guide, go to "Setting up the development environment" --> "Web application setup" --> "JAR files needed for deployment of Business Objects Software".  There you will see all of the "Core JAR Files" and "Dependent JAR Files" that are required in your custom SDK web application.
    You should also verify that your web.xml is set up properly for the XIR3 environment.  Information on how to set this up is also including in the Developer's Guide.
    I hope that after carrying out these steps that this helps to resolve the problem.
    Regards.
    - Robert

  • Crazy lag issues upgrading from OS 10.58 to OS 10.6, what gives?

    I've just upgraded to OS 10.6 from OS 10.5.8  on my 3.06ghz Intel Core 2 Duo iMac and pretty much everything has slowed down considerably. I've got 4gigs and 800 mhz of memory and my computer was lightning fast running 10.5 so I'm pretty sure that's not the issue.
    My main problem  is that I'm no longer able to "spacebar" preview any files without extremely long lag times. Trying to preview video, music, and .PSD files takes 5 minutes to load in some cases even for a 10mb file. I'm in the process of editing over 200 video clips and this has basically prevented me from using this machine at all.
    Additionally I made the mistake of deleting Quicktime 10 because the interface was horrendous and sticking with Quicktime 7 since I had already purchased a pro code for it. Even though Quicktime 7 is still on my computer all of my audio and video files are now opening in the "Grapher" utility by default, which is extremely annoying and ridiculous. How can I make Quicktime 7 my default again?
    Anyone have any idea what would cause these issues and more importantly what can I do to resolve them?
    Thank you!
    JD

    Try restarting in Safe Mode, this clears some of the caches  it's possible one has become corrupted. You should also Repair Disk Permissions using Disk Utility (Applications - Utilities - Disk Utility) and I'd also recommend doing a SMC reset (maybe even 2) and reset the PRAM.
    SMC RESET
    Shut down the computer.
    Unplug the computer's power cord and all peripherals.
    Press and hold the power button for 5 seconds.
    Release the power button.
    Attach the computers power cable.
    Press the power button to turn on the computer.
    PRAM RESET
    Shut down the computer.
    Locate the following keys on the keyboard: Command, Option, P, and R. You will need to hold these keys down simultaneously in step 4.
    Turn on the computer.
    Press and hold the Command-Option-P-R keys. You must press this key combination before the gray screen appears.
    Hold the keys down until the computer restarts and you hear the startup sound for the second time.
    Release the keys.
    Roger

  • Issue upgrading from R 3.1.2 to R 3.1.3

    Hi, i wanted to upgrade my system tonight,
    but I am having a problem with the R package.
    I currently have version 3.1.2, and an upgrade to version 3.1.3 is available.
    After typing
    sudo pacman -Syu
    the upgrade of the packages fails with the error message:
    error: failed to commit transaction (conflicting files)
    r: /usr/lib/R/library/Matrix/po/fr/LC_MESSAGES/Matrix.mo exists in filesystem
    r: /usr/lib/R/library/spatial/po/ko/LC_MESSAGES/R-spatial.mo exists in filesystem
    Any idea how I can fix the issue?
    Thanks a lot for the help,
    Cheers,
    Luca

    Hmmm:
    $ pkgfile -v Matrix.mo
    extra/r 3.1.2-1 /usr/lib/R/library/Matrix/po/de/LC_MESSAGES/Matrix.mo
    extra/r 3.1.2-1 /usr/lib/R/library/Matrix/po/en@quot/LC_MESSAGES/Matrix.mo
    extra/r 3.1.2-1 /usr/lib/R/library/Matrix/po/pl/LC_MESSAGES/Matrix.mo
    After updating package database:
    $ pkgfile -v Matrix.mo
    extra/r 3.1.3-1 /usr/lib/R/library/Matrix/po/de/LC_MESSAGES/Matrix.mo
    extra/r 3.1.3-1 /usr/lib/R/library/Matrix/po/en@quot/LC_MESSAGES/Matrix.mo
    extra/r 3.1.3-1 /usr/lib/R/library/Matrix/po/fr/LC_MESSAGES/Matrix.mo
    extra/r 3.1.3-1 /usr/lib/R/library/Matrix/po/pl/LC_MESSAGES/Matrix.mo

  • Issues upgrading from iOS 7.1.2 to 8.1.2 on my iPhone 5c.

    I recently returned from a deployment overseas.  While I was away, iOS 8 was released and I am now attempting to update my 16GB iPhone 5c from 7.1.2.  I have attempted to do this via wifi which gives me an error message reading "Software Update Failed; An error occurred downloading iOS 8.1.2".  When I try to update through iTunes, the update file downloads to my iMac, but when iTunes begins to install it, I get an error message that reads "The software for the iPhone 'Mark's iPhone' was corrupted during download".  I've also been experiencing the same problem with my iPad 2, though I'm not as concerned about that as I don't use it much these days.  Has anyone else been experiencing a similar problem?  Any advice is appreciated.  Thanks!

    I took the device to an Apple Service Provider and they did that, restore from DFU. It worked!
    Search for: Device Firmware Update

  • Upgrading from weblogic 8.1 to 10gr3 facing problem with the Building

    Internal compiler error
    java.lang.NullPointerException at org.eclipse.jdt.internal.compiler.lookup.ReferenceBinding.binarySearch(ReferenceBinding.java:108)
         at org.eclipse.jdt.internal.compiler.lookup.ParameterizedTypeBinding.getMethods(ParameterizedTypeBinding.java:542)
         at org.eclipse.jdt.internal.compiler.lookup.Scope.findMethod(Scope.java:1069)
         at org.eclipse.jdt.internal.compiler.lookup.Scope.getMethod(Scope.java:2072)
         at org.eclipse.jdt.internal.compiler.ast.MessageSend.resolveType(MessageSend.java:428)
         at org.eclipse.jdt.internal.compiler.ast.CastExpression.resolveType(CastExpression.java:460)
         at org.eclipse.jdt.internal.compiler.ast.LocalDeclaration.resolve(LocalDeclaration.java:187)
         at org.eclipse.jdt.internal.compiler.ast.AbstractMethodDeclaration.resolveStatements(AbstractMethodDeclaration.java:428)
         at org.eclipse.jdt.internal.compiler.ast.MethodDeclaration.resolveStatements(MethodDeclaration.java:195)
         at org.eclipse.jdt.internal.compiler.ast.AbstractMethodDeclaration.resolve(AbstractMethodDeclaration.java:402)
         at org.eclipse.jdt.internal.compiler.ast.TypeDeclaration.resolve(TypeDeclaration.java:1084)
         at org.eclipse.jdt.internal.compiler.ast.TypeDeclaration.resolve(TypeDeclaration.java:1165)
         at org.eclipse.jdt.internal.compiler.ast.CompilationUnitDeclaration.resolve(CompilationUnitDeclaration.java:366)
         at org.eclipse.jdt.internal.compiler.ast.CompilationUnitDeclaration.analyseCode(CompilationUnitDeclaration.java:102)
         at org.eclipse.jdt.internal.compiler.Compiler.process(Compiler.java:626)
         at org.eclipse.jdt.internal.compiler.Compiler.compile(Compiler.java:392)
         at org.eclipse.jdt.internal.core.builder.AbstractImageBuilder.compile(AbstractImageBuilder.java:362)
         at org.eclipse.jdt.internal.core.builder.BatchImageBuilder.compile(BatchImageBuilder.java:174)
         at org.eclipse.jdt.internal.core.builder.AbstractImageBuilder.compile(AbstractImageBuilder.java:299)
         at org.eclipse.jdt.internal.core.builder.BatchImageBuilder.build(BatchImageBuilder.java:59)
         at org.eclipse.jdt.internal.core.builder.JavaBuilder.buildAll(JavaBuilder.java:269)
         at org.eclipse.jdt.internal.core.builder.JavaBuilder.build(JavaBuilder.java:177)
         at com.bea.wstudio.javabuilderx.JavaBuilderX.build(JavaBuilderX.java:66)
         at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:624)
         at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37)
         at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:166)
         at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:197)
         at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:247)
         at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37)
         at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:249)
         at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:302)
         at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:334)
         at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:137)
         at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:235)
         at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
         Utilities/src/com/att/edb/dppco/util     ErrKey.java     line 0     1247660099328     104158
    i am using jdk160_05 as standard VM
    checked with jrockit_160_05 as an Standard VM, when building i am getting the same above error
    can anybody help me on this

    hmm so are you compiling your old 8.1 code in WLS 10.3 and getting the error during compilation?
    I found similar issue reported before:-
    Re: Running Eclipse with Jrockit issues

  • Upgrade from CS4 to CS5.5. did not go smoothly, now stuck at CS5 - how do I fix the installation?

    Hi There,
    I had a lot of issues upgrading from CS4 (Adobe Application Manager crashing, installer not opnening etc) but managed to get the installer to run by using the Adobe Creative Suite Cleaner Tool to remove all traces of CS4.
    However, when the installer finished, it stated there were errors and now the installers won't run - nor can I run updates from the CS apps that did install.
    I've normally never had any issues upgrading, so am not sure why I had so many issues and the best way forward from here - Hoping I don't have to remove all the CS5 apps, use the Adobe Creative Suite Cleaner Tool again and start from the begining.
    I'm trying to install Master Collection CS5.5 on Mac OS 10.7.2
    Any suggestions would be much appreciated.
    Cheers
    Ben

    Have had to hang up as I was calling the US using a New Zealand Mobile while in Portugal (long story) - and the 11 minute wait time would've cost the same amount as the CS5.5 upgrade!
    I had to call the US because:
    The New Zealand support number listed on the Adobe site doesn't work
    New Zealand is not listed as a country Adobe suppoprt will call back from the "Schedule a callback" page
    What a joke.
    I used the Adobe Support Adviser app to analyze the install error log and it provided me with a very helpful link to a support page that states "You can ignore this error and launch the products you were installing."
    Unfortunately, nothing was installed.
    I need to do work while a long way from home and can't use/install any CS5 apps - does anyone know how to install CS5 in Lion?
    Cheers

  • Can I install Windows 7 upgrade (from XP) to BootCamp?

    I currently use Snow Leopard and have a Boot Camp partition running Windows XP Professional. It was a pain to install, because I had the upgrade version, and you can't eject CDs from the optical drive during the installation process to put the old CD in to prove you already own a copy of Windows. Let's just say I found a way around that and was able to install XP which currently works fine.
    I am now considering trying out Windows 7. If I get it, it will be the upgrade version as well. Will it be possible to install that to Boot Camp from XP? I know there are issues upgrading from XP to Windows 7, in that it has to be a custom install. I don't care about losing Windows settings and files; in fact, I would much prefer to do a clean install. Does anyone know if that is possible using an upgrade CD or will I have the same problem of not being able to eject the CD to put an old one in during the installation process?

    If you thought what I was saying was off-base, perhaps you still don't understand my question, since none of your answers has addressed it.
    I don't want to do the "upgrade" process. I was very familiar, even before you posted several links saying the same thing over and over, that you can't do that from XP to Win 7 anyway, but even if you could you wouldn't want to. I get the difference of upgrade v. migrate, etc., etc. Please don't link to it again. That is not my question.
    All I want to know is this: If you are using an upgrade CD to install Windows 7 (as opposed to a full install CD, and not to be confused with the "upgrade" process), will there be an issue with switching it out during installation and not being able to get it out of the optical drive?
    When I clean-installed XP to Boot Camp using an upgrade XP CD, you couldn't do that, because it needed proof of a prior copy of Windows during the installation process and there was no way to switch out the discs. This was a weird glitch of needing to eject from the optical drive during the installation process but having no way to do so at that particular point in the installation. It had nothing to do with anything about Windows licenses, upgrade pathways, etc. It was a technical oddity because of the hardware.
    From Apple support site re. XP and Vista with Boot Camp:
    "Important: _You must use a single full-install Windows installation disc._ Service pack 2 is required for Windows XP installations. Do not install an earlier version of Windows XP and attempt to update it later to service pack 2. Use only 32-bit versions of Windows."
    You don't need to answer this. BlueDevilKurz somehow understood exactly what I was asking and responded several posts ago as well as anyone can until Windows 7 is actually released and we know for sure. But if you want to, it's a Yes or No question, with a second bonus Yes or No question.
    1. Can I use an upgrade Windows 7 CD/DVD (rather than full install media) to install Windows 7 on a Boot Camp partition that currently has XP?
    2. Can I use an upgrade Windows 7 CD/DVD (rather than full install media) to install Windows 7 on a Boot Camp partition that is currently empty (no XP installed)?

  • Mavericks upgrade from Snow Leopard broke boot camp. Help!

    Since Apple made the newest version of OS X free, I decided to upgrade my 2010 MacBookPro from Snow Leopard. The installation seemed to go fine, but after the installation, I can't boot into my Bootcamp / Windows partition. From what I have read so far, others have experienced this issue upgrading from Snow Leopard to Mountain Lion because the recovery partition apparently messes up something fragile between the MBR (Master Boot Record) and the GPT (GUID Partition Table). I'm not sure if that's what's going wrong here or not.
    When I attempt to repair /dev/disk0s4 via the GUI Disk Utility, I get the following details:
    Verify and Repair volume “disk0s4”
    Checking file system** /dev/disk0s4
    Invalid BS_jmpBoot in boot block: 6e0020
    Volume repair complete.Updating boot support partitions for the volume as required.
    Error: Disk Utility can’t repair this disk. Back up as many of your files as possible, reformat the disk, and restore your backed-up files.
    Here's a screen shot:
    http://imgur.com/6XLYMOM
    Well, I can't mount the partition to copy off my files, and I just want to be able to go back to using my windows partition normally. So I started Googling and found several different threads, but so far I'm a few hours into trying to get my system back, without a clue as to what the right fix is.
    Upgrading the OS on one partition of a HDD shouldn't completely break another partition. Is my case just a freak accident, or is this a serious flaw in the upgrade process? Sifting through 250GB of data (1/2 my laptop drive) is going to take some of these tools a while... I'm not a happy customer today.
    Aside from spending upwards of 12 hours reinstalling Windows and the dozens of other applications and data files from backups and recovering all the files that I can, does anyone know of any tools that can recover the lost partition should I find it? I'm going to leave testdisk running over the disk while I sleep to try and find filesystems.

    I had Windows 7 64-bit installed, but the version is irrelevant. The problem here is that *something* Apple's installer did damaged my working computer. The fact that it damaged others as well and apparently hasn't been fixed since the release of Mountain Lion is very disappointing. Boot camp is a supported Apple product, and we pay a premium for Apple's computers so we should expect better than for an upgrade to blithely destroy our data and tools leaving us to spend days restoring. That's no upgrade. It's a minefield. I'm happy if some good comes from my sharing and it helps others make better decisions than to trust the installer not to screw up their week. Make sure you back up your whole disk image before installing. The upgrade is only free if your time is worthless.
    I'm still looking for an easy fix to this problem. The disk scanning software I'm running now is taking a long time to search through the 500GB HDD for information. I fear that the addition of the recovery partition wiped out my NTFS partition's file system entirely. It's inevitable that I haven't backed up all my stuff and that I have lost some amount of data in addition to my time.

  • Issue with list saving data after sites upgrade from sharepoint 2010 to sharepoint 2013

    Issue with list saving data after sites upgrade from sharepoint 2010 to sharepoint 2013 
    Newform.aspx of list:-
    Custom List is not saving data sometimes in the new form after 15 minutes and only blank entry record got created without saving data, even though some columns are mandatory fields?

    Hello dcakumar,
    Sounds like a strang issue. If you can reproduce this can you see some errors in the ULS logs?
    - Dennis | Netherlands | Blog |
    Twitter

Maybe you are looking for

  • How to use Return parameter of BAPI in DOE

    Hello all, I have a question on Return parameter of BAPI wrappers written in backend. When we use the BAPI in DOE there i do not see any table which stores these Return parameters then what is the use of writting it in BAPI wrappers. Can anyone pleas

  • IN pages how does one remove an unwanted template?

    Hello world!  First time here! Question #1  How does one delete unwanted templates in the "My Template" section of Pages? Question #2  How does one, using Lion, retrieve Appleworks 6 database files? Thanks VAGrandad

  • To_date function related to location of server

    is to_date function related to the location of the database server? In the where clause I'm using the UPDATE_TIME column with is a timezone with timestamp When I use a simple where clause indicated in item A below, I get a result as if it was item B.

  • Change of the quantity field to 5 decimal places in SAP

    Hi Gurus, The quantity field is appearing with 3 decimal places in BOM, Process Order, etc. Is it possible to make the decimal places to 5. All the decimal digits from SAP are 3 digits. We have an interface through which the data flows from another l

  • Travel & Expenses: car allowance

    Good morning, I need to enter the car allowance amounts (x €/per milage) per country for the Travel & Expenses. Does anyone know where to find the customzing settings in IMG? Thank you! Kind regards, Linda