Error Export DB

I have a problem during EXPORT of the DB: I have a SUN SOLARIS 8 with ORACLE 9.2.0.1 with 6 Instance and only one give this problem to me... as I can resolve?
exp system/manager full=y file=pippo.dmp log=pluto.txt
EXP-00056: ORACLE error 1116 encountered
ORA-01116: error in opening database file 13
ORA-01110: data file 13: '/global/oli/dati3/OLI/lavoro02.dbf'
ORA-27041: unable to open file
SVR4 Error: 24: Too many open files
Additional information: 3
Thanks

This is simply an OS setting for the max number of files open at once. See this:
http://help.netscape.com/kb/corporate/19980403-12.html
Tom Best

Similar Messages

  • I am trying to export a video I have made in FCP 10.0.8 to Youtube or to a master file and I keep on getting an error -50, or "error exporting master file at frame 20074" Any ideas?

    Having used FCExpress for a while I decided to give FC Pro X a trial, I created my first video with it, exported to youtube and it worked fine.  I am now trying to export my second video to youtube and I get an error -50 which means absolutely nothing.  Not being defeated that easy I tried exporting to a mster file using the H.264 codec and I get an error "exporting master file at frame 20074" - again another useless error.  It takes at least 10 minutes to get to this error after the rendering has started, it gets about 12% in.  Any ideas where to start - I am seriously at the point of giving up with Final Cut Pro X simply on the basis of it being more trouble than its worth - I am just glad I did not pay for it yet...
    Any help would be much appreciated.
    Gerry

    Hi Russ,
    Thanks for your response. I am not an experienced user of FC or other video editing software but if its that hit and miss I think I will go to the trouble of finding some better software - I have a busy enough life as is, I don;t want to get into second guessing what a software problem might be!
    I have just successfully exported my video to a master file using one of the Apple codec options so it looks like it could be to do with the H.264 codec.  I am wondering if Apples Compressor software would solve this problem - the only way to try this it to buy it, there is not trial for the compressor app.  Any ideas?
    Thanks
    Gerry

  • Error exporting report with sub report and parameters

    Post Author: joncombe
    CA Forum: JAVA
    I am using the JRC to export to a PDF file a report that has a sub report within it. Both the main and subreport connect to an Oracle database via an Oracle ODBC connection and both share a single parameter, RUN_ID. I need to set a value for the parameter in both reports. If I don't do that I get this error:-com.crystaldecisions.reports.exportinterface.exceptions.ExportException: Some parameters are missing valuesI have the following code to update the parameters in both reports.                     ParameterField thisParameter1           = new ParameterField ( );                   ParameterField thisParameter2           = new ParameterField ( );                   Values thisValue1                       = new Values ( );                   Values thisValue2                       = new Values ( );                   ParameterFieldDiscreteValue thisParamDV1= new ParameterFieldDiscreteValue();                   ParameterFieldDiscreteValue thisParamDV2= new ParameterFieldDiscreteValue();                   thisParameter1.setReportName("");                   thisParameter2.setReportName("DQA_GER_Adressverification.rpt");                   thisParameter1.setName("RUN_ID");                   thisParameter2.setName("RUN_ID");                   thisParameter1.setType(FieldValueType.numberField);                   thisParameter2.setType(FieldValueType.numberField);                   thisParamDV1.setValue(254);                   thisParamDV2.setValue(254);                   thisValue1.add(thisParamDV1);                   thisValue2.add(thisParamDV2);                   thisParameter1.setCurrentValues(thisValue1);                   thisParameter2.setCurrentValues(thisValue2);                   parameterFields.add(thisParameter1);                   parameterFields.add(thisParameter2);                  ReportStateInfo repStateInfo = new ReportStateInfo();                  repStateInfo.setParameterFields(parameterFields);                  reqCont.setReportStateInfo(repStateInfo);  With this code in place I have found that if I run using the JRC supplied with Crystal Reports for Eclipse I get the following error:-ERROR - QueryEngine error: verify database failed.ERROR - Disk Exporter: no output file was created by an exporterERROR - PdfExporter: caught Exception in PDFFormatter.finalizeFormatJob (from destination?); aborting exportjava.lang.IllegalArgumentException        at com.crystaldecisions.reports.exporters.destination.disk.c.a(Unknown Source)        at com.crystaldecisions.reports.exporters.format.page.pdf.b.a(Unknown Source)        at com.crystaldecisions.reports.a.e.if(Unknown Source)        at com.crystaldecisions.reports.formatter.a.c.if(Unknown Source)        at com.crystaldecisions.reports.formatter.a.c.a(Unknown Source)        at com.businessobjects.reports.sdk.b.b.int(Unknown Source)        at com.businessobjects.reports.sdk.JRCCommunicationAdapter.request(Unknown Source)        at com.crystaldecisions.proxy.remoteagent.x.a(Unknown Source)        at com.crystaldecisions.proxy.remoteagent.q.a(Unknown Source)        at com.crystaldecisions.sdk.occa.report.application.dd.a(Unknown Source)        at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)        at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)        at com.crystaldecisions.sdk.occa.report.application.ReportSource.export(Unknown Source)        at com.crystaldecisions.sdk.occa.report.application.AdvancedReportSource.export(Unknown Source)        at com.crystaldecisions.sdk.occa.report.application.NonDCPAdvancedReportSource.export(Unknown Source)        at com.crystaldecisions.reports.reportengineinterface.JPEReportSource.export(Unknown Source)        at crystalreportrunner.ReportExporter.exportReport(ReportExporter.java:174)        at crystalreportrunner.CrystalReportRunner.main(CrystalReportRunner.java:91)ERROR - Failed to export reportcom.crystaldecisions.reports.exporters.format.page.pdf.a.a: Unexpected exception thrown        at com.crystaldecisions.reports.exporters.format.page.pdf.b.a(Unknown Source)        at com.crystaldecisions.reports.a.e.if(Unknown Source)        at com.crystaldecisions.reports.formatter.a.c.if(Unknown Source)        at com.crystaldecisions.reports.formatter.a.c.a(Unknown Source)        at com.businessobjects.reports.sdk.b.b.int(Unknown Source)        at com.businessobjects.reports.sdk.JRCCommunicationAdapter.request(Unknown Source)        at com.crystaldecisions.proxy.remoteagent.x.a(Unknown Source)        at com.crystaldecisions.proxy.remoteagent.q.a(Unknown Source)        at com.crystaldecisions.sdk.occa.report.application.dd.a(Unknown Source)        at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)        at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)        at com.crystaldecisions.sdk.occa.report.application.ReportSource.export(Unknown Source)        at com.crystaldecisions.sdk.occa.report.application.AdvancedReportSource.export(Unknown Source)        at com.crystaldecisions.sdk.occa.report.application.NonDCPAdvancedReportSource.export(Unknown Source)        at com.crystaldecisions.reports.reportengineinterface.JPEReportSource.export(Unknown Source)        at crystalreportrunner.ReportExporter.exportReport(ReportExporter.java:174)        at crystalreportrunner.CrystalReportRunner.main(CrystalReportRunner.java:91)Caused by: java.lang.IllegalArgumentException        at com.crystaldecisions.reports.exporters.destination.disk.c.a(Unknown Source)        ... 17 moreERROR - JRCAgent1 detected an exception: An error occured while exporting the report        at com.businessobjects.reports.sdk.b.b.int(Unknown Source)        at com.businessobjects.reports.sdk.JRCCommunicationAdapter.request(Unknown Source)        at com.crystaldecisions.proxy.remoteagent.x.a(Unknown Source)        at com.crystaldecisions.proxy.remoteagent.q.a(Unknown Source)        at com.crystaldecisions.sdk.occa.report.application.dd.a(Unknown Source)        at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)        at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)        at com.crystaldecisions.sdk.occa.report.application.ReportSource.export(Unknown Source)        at com.crystaldecisions.sdk.occa.report.application.AdvancedReportSource.export(Unknown Source)        at com.crystaldecisions.sdk.occa.report.application.NonDCPAdvancedReportSource.export(Unknown Source)        at com.crystaldecisions.reports.reportengineinterface.JPEReportSource.export(Unknown Source)        at crystalreportrunner.ReportExporter.exportReport(ReportExporter.java:174)        at crystalreportrunner.CrystalReportRunner.main(CrystalReportRunner.java:91)Error exporting report : report. Error is ReportSDKException: An error occured while exporting the reportAn error occured while exporting the reportcom.businessobjects.reports.sdk.d.byte(Unknown Source)com.businessobjects.reports.sdk.JRCCommunicationAdapter.a(Unknown Source)com.businessobjects.reports.sdk.JRCCommunicationAdapter.request(Unknown Source)com.crystaldecisions.proxy.remoteagent.x.a(Unknown Source)com.crystaldecisions.proxy.remoteagent.q.a(Unknown Source)com.crystaldecisions.sdk.occa.report.application.dd.a(Unknown Source)com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)com.crystaldecisions.sdk.occa.report.application.ReportSource.export(Unknown Source)com.crystaldecisions.sdk.occa.report.application.AdvancedReportSource.export(Unknown Source)com.crystaldecisions.sdk.occa.report.application.NonDCPAdvancedReportSource.export(Unknown Source)com.crystaldecisions.reports.reportengineinterface.JPEReportSource.export(Unknown Source) With the JRC supplied with Crystal Reports XIR2 I get this error:- INFO - PdfExporter: serializing pdf document and cleaning upINFO - Disk Exporter: verifying export to destinationERROR - Disk Exporter: no output file was created by an exporterERROR - PdfExporter: caught Exception in PDFFormatter.finalizeFormatJob (from destination?); aborting exportjava.lang.IllegalArgumentException        at com.crystaldecisions.reports.exporters.destination.disk.c.a(Unknown Source)        at com.crystaldecisions.reports.exporters.format.page.pdf.b.a(Unknown Source)        at com.crystaldecisions.reports.a.e.if(Unknown Source)        at com.crystaldecisions.reports.formatter.a.c.if(Unknown Source)        at com.crystaldecisions.reports.formatter.a.c.a(Unknown Source)        at com.businessobjects.reports.sdk.b.i.int(Unknown Source)        at com.businessobjects.reports.sdk.JRCCommunicationAdapter.request(Unknown Source)        at com.crystaldecisions.proxy.remoteagent.y.a(Unknown Source)        at com.crystaldecisions.proxy.remoteagent.r.a(Unknown Source)        at com.crystaldecisions.sdk.occa.report.application.cf.a(Unknown Source)        at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)        at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)        at com.crystaldecisions.sdk.occa.report.application.ReportSource.export(Unknown Source)        at com.crystaldecisions.sdk.occa.report.application.AdvancedReportSource.export(Unknown Source)        at com.crystaldecisions.sdk.occa.report.application.NonDCPAdvancedReportSource.export(Unknown Source)        at crystalreportrunner.ReportExporter.exportReport(ReportExporter.java:174)        at crystalreportrunner.CrystalReportRunner.main(CrystalReportRunner.java:91)INFO - Disk Exporter: finalizing export to destinationERROR - JRCAgent1 detected an exception: java.lang.NullPointerException        at oracle.jdbc.driver.T4C8Oall.getNumRows(T4C8Oall.java:870)        at oracle.jdbc.driver.T4CStatement.executeForDescribe(T4CStatement.java:811)        at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1037)        at oracle.jdbc.driver.T4CStatement.executeMaybeDescribe(T4CStatement.java:830)        at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1132)        at oracle.jdbc.driver.OracleStatement.executeInternal(OracleStatement.java:1687)        at oracle.jdbc.driver.OracleStatement.execute(OracleStatement.java:1653)        at com.crystaldecisions.reports.queryengine.driverImpl.o.ew(Unknown Source)        at com.crystaldecisions.reports.queryengine.driverImpl.o.if(Unknown Source)        at com.crystaldecisions.reports.queryengine.ao.d4(Unknown Source)        at com.crystaldecisions.reports.queryengine.ao.f(Unknown Source)        at com.crystaldecisions.reports.queryengine.ao.dP(Unknown Source)        at com.crystaldecisions.reports.queryengine.av.if(Unknown Source)        at com.crystaldecisions.reports.queryengine.ba.if(Unknown Source)        at com.crystaldecisions.reports.queryengine.ba.do(Unknown Source)        at com.crystaldecisions.reports.queryengine.ba.try(Unknown Source)        at com.crystaldecisions.reports.queryengine.ba.for(Unknown Source)        at com.crystaldecisions.reports.reportdefinition.datainterface.j.a(Unknown Source)        at com.crystaldecisions.reports.dataengine.j.a(Unknown Source)        at com.crystaldecisions.reports.dataengine.j.a(Unknown Source)        at com.crystaldecisions.reports.dataengine.a9.if(Unknown Source)        at com.crystaldecisions.reports.dataengine.a9.a(Unknown Source)        at com.crystaldecisions.reports.formatter.formatter.objectformatter.bv.a(Unknown Source)        at com.crystaldecisions.reports.formatter.formatter.objectformatter.bv.a(Unknown Source)        at com.crystaldecisions.reports.formatter.formatter.objectformatter.be.a(Unknown Source)        at com.crystaldecisions.reports.formatter.formatter.objectformatter.be.g(Unknown Source)        at com.crystaldecisions.reports.formatter.formatter.objectformatter.i.g(Unknown Source)        at com.crystaldecisions.reports.formatter.formatter.objectformatter.be.for(Unknown Source)        at com.crystaldecisions.reports.formatter.formatter.objectformatter.bt.a(Unknown Source)        at com.crystaldecisions.reports.formatter.formatter.objectformatter.bv.a(Unknown Source)        at com.crystaldecisions.reports.formatter.formatter.objectformatter.bv.a(Unknown Source)        at com.crystaldecisions.reports.formatter.formatter.objectformatter.bf.a(Unknown Source)        at com.crystaldecisions.reports.formatter.formatter.objectformatter.cd.for(Unknown Source)        at com.crystaldecisions.reports.formatter.formatter.objectformatter.cd.for(Unknown Source)        at com.crystaldecisions.reports.formatter.formatter.objectformatter.b3.for(Unknown Source)        at com.crystaldecisions.reports.formatter.formatter.objectformatter.bt.a(Unknown Source)        at com.crystaldecisions.reports.formatter.formatter.objectformatter.cd.a(Unknown Source)        at com.crystaldecisions.reports.formatter.formatter.objectformatter.cd.a(Unknown Source)        at com.crystaldecisions.reports.formatter.formatter.objectformatter.cd.a(Unknown Source)        at com.crystaldecisions.reports.formatter.formatter.objectformatter.ca.a(Unknown Source)        at com.crystaldecisions.reports.formatter.formatter.objectformatter.a9.a(Unknown Source)        at com.crystaldecisions.reports.formatter.formatter.e.m.a(Unknown Source)        at com.crystaldecisions.reports.formatter.formatter.objectformatter.cd.for(Unknown Source)        at com.crystaldecisions.reports.formatter.formatter.objectformatter.cd.for(Unknown Source)        at com.crystaldecisions.reports.formatter.formatter.objectformatter.b3.for(Unknown Source)        at com.crystaldecisions.reports.formatter.formatter.e.m.for(Unknown Source)        at com.crystaldecisions.reports.formatter.formatter.objectformatter.bt.a(Unknown Source)        at com.crystaldecisions.reports.formatter.formatter.e.p.k(Unknown Source)        at com.crystaldecisions.reports.formatter.formatter.e.p.null(Unknown Source)        at com.crystaldecisions.reports.formatter.formatter.e.p.k(Unknown Source)        at com.crystaldecisions.reports.formatter.formatter.e.p.az(Unknown Source)        at com.crystaldecisions.reports.formatter.a.c.a(Unknown Source)        at com.crystaldecisions.reports.formatter.a.c.if(Unknown Source)        at com.crystaldecisions.reports.formatter.a.c.a(Unknown Source)        at com.businessobjects.reports.sdk.b.i.int(Unknown Source)        at com.businessobjects.reports.sdk.JRCCommunicationAdapter.request(Unknown Source)        at com.crystaldecisions.proxy.remoteagent.y.a(Unknown Source)        at com.crystaldecisions.proxy.remoteagent.r.a(Unknown Source)        at com.crystaldecisions.sdk.occa.report.application.cf.a(Unknown Source)        at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)        at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)        at com.crystaldecisions.sdk.occa.report.application.ReportSource.export(Unknown Source)        at com.crystaldecisions.sdk.occa.report.application.AdvancedReportSource.export(Unknown Source)        at com.crystaldecisions.sdk.occa.report.application.NonDCPAdvancedReportSource.export(Unknown Source)        at crystalreportrunner.ReportExporter.exportReport(ReportExporter.java:174)        at crystalreportrunner.CrystalReportRunner.main(CrystalReportRunner.java:91)I believe the error is that the SQL query in the main report is being updated with the RUN_ID but the SQL in the sub-report is not. I am not sure why the update to set the RUN_ID in the second SQL query fails, but it seems to me the JRC is not detecting it as a missing parameter and is passing the SQL including {?RUN_ID} to Oracle, causing the JDBC driver to fail with this NullPointerException. I think this because further up in the log I see this:-INFO - Executing query: SELECT v.* FROM v_ger_main vwhere v.run_id = 254INFO - Verifying databaseINFO - Executing query: SELECT h.* FROM v_ger_av_ls_tagging hwhere h.run_id = {?RUN_ID}ERROR - QueryEngine error: verify database failed.Both connections are from the same database, but the first has the updated value (254) whilst the second query still seems to have the parameter and so fails to verify.Can someone suggest how I can fix this problem or if I have missed something that is required?Thanks.Jon.

    Post Author: Ted Ueda
    CA Forum: JAVA
    What happens if, instead of passing in parameter field values, you pass the report source object to the viewer (ReportViewerBean for stand-alone or CrystalReportViewer for web)?  The viewer should introspect the report for the parameter fields and bring up a parameter field entry dialog box.  Does such a dialog box come up?  Is only the main report parameter field queried for, or both main and subreport paramter fields?  When you enter correct values for the field, does the report display?
    Hopefully, the above should narrow down the issue.
    By the way, JRC doesn't support ODBC connections, only Java based connectivity such as JDBC, JavaBeans and XML.  If you have a report with ODBC, then it looks for a JNDI connection with the same name.
    Sincerely,
    Ted Ueda

  • InDesign-error exporting to pdf with art linked to a Read only server

    My question is about an error exporting a PDF from InDesign ("Cannot export pdf"). The InDesign file has links to art (a .psd file) from a secure file server where I have Read permission only--not Read/Write. The error only happens when I have linked art from this server.
    To export a pdf, is it necessary to have Write permissions to the server that has linked art? To export to PDF of course I am not changing the linked file! My InDesign file only links to it. So why doesn't it work if I have Read permission?
    Can anyone help?
    Can it really be that Read only permission is not enough for linking to art and making a pdf?

    I wouldn't think it would be a problem. Are you sure you have write permission where you want to save the PDF?

  • I am having issues suddenly exporting files. It reads error exporting 25 files, As I attempt to choose another destination folder the folders show a black square where the folder sign previously was. I am in my busy season and this has created a huge dela

    I am having issues suddenly exporting files. It reads error exporting 25 files, As I attempt to choose another destination folder the folders show a black square where the folder sign previously was. I am in my busy season and this has created a huge delay!!! HELP!!!!

    oh and if you use a creative cloud version of Lightroom it could also be that the logon to the cloud is messed up. Logging out and logging back in from preferences in the creative cloud app will fix that. Due to the release of Lightroom CC it appears that adobe's servers have been overwhelmed a bit And many people have strange problems that are solved by logging out and back in.

  • Export from OWB Release: 9.2.0.2.8  results in error: MDL1255: Error export

    An export of a whole project from the OWB-client results in error en crash of the OWB Client.
    Does anyone know what causes this?
    Below the contents of the log-file generated by the export-utility
    Export started at 11/14/2005 4:53:17 PM
    * Export from OWB Release: 9.2.0.2.8 Version: 9.2.0.2.0
    * User: owbrep_MDN_dev Connect String: (DESCRIPTION=(ADDRESS=(HOST=l2-bm13-e0g.nl.rsg)(PROTOCOL=tcp)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=owbrep.l2_bm13_e0g.nl.rsg)))
    * Definition File: null
    * Data File: C:\data\owb\o\MIS_MDN-20051114_1651.mdl
    * Log File: C:\data\owb\o\Log.log Log Message Level: ALL
    * Physical Names: Y Field Separator: | Character Set: WE8MSWIN1252
    * Project: MIS_MDN Configuration Data: Y
    MDL1256: Error occurred exporting LOCATION with physical name <DB>, business name <DB>.
    Detailed Error Message:
    MDL1255: Error exporting CONNECTOR for LOCATION <DB/DB>.
    Error in SQL Statement. Please contact Oracle Support with the stack trace and details on how to reproduce it.
    *************************************************************

    This will not work.. Ypu cannot use FTP to 'PULL' a document into the database. (Yes I know there's a placeholder for an FTPURITYPE() but it was never implemented).
    However you can use an FTP client to PUSH content into the XML DB repository. If the content is schema based XML associated with a known (registered) XML schema the content of the file will automatically be stored in the default table associated with the root element of the file. If the content is not associated with an known XML schema you can then use xdburitype to read the resource that was created when the document was uploaded into the repository

  • ADS: com.adobe.ProcessingException: Error exporting Data into PDF

    Hi Experts,
    when trying to upload a PDF file to my WD4A application and extract the data I am getting this ADS Error:
    ADS: com.adobe.ProcessingException: Error exporting Data into PDF - PDF Exception: Invalid object for the XFA entry in the forms dictionary.(200201).
    The error only appears when I`m trying to upload a PDF file that has been created after an Java Script Update of the Adobe Form Builder. My actual version is 710.20070621204053.403203.403203 - ContainerFoundation_JS.
    All PDF files created before this update can be uploaded without problems. Am I missing something to be updated?!
    Thanx & best regards,
    Oliver

    Dear Oliver,
    I am facing this problem, can you recall how did you resolve this, please ? Thank you.
    Regards
    Kir chern

  • Error exporting application into a ear file

    I'm developing an application with the Sun One 5 IDE,and Application server 8, i'm making CMP entity bean, when i try to export to an ear file an error occur
    Validation failed for entities.CMPAdministradorBean. Verify that all fields are mapped.
    CMP Mapping Error in bean CMPAdministrador:: Warning: The bean pcImpl0.moduleComp0.entities.CMPAdministrador is not mapped.
    Set the primary table for the bean.
    No jndi-name defined for the cmp-resource element of this module.
    Select the SunONE tab for the ejb module and configure the CMP Resource property.
    and they can't make the ear
    somebody can help me with this.
    Thank you

    Figured it out, found similar post that stated changing the HEAP size
    Increase the page size in odiparams.bat in the bin folder and restart Designer.
    For eg:
    set ODI_INIT_HEAP=128m
    set ODI_MAX_HEAP=1024m

  • Error exporting BI Report to Excel

    Hi All,
    We are experiencing strange error, while exporting to Excel.
    We have a sales report which extract data for 3 regions US, ASIA, EUROPE.
    The amount of data for particular month is as follows:
                            No Of Rows              File Size
    US:                        4500                   14.6 MB
    ASIA:                     8000                   26.4MB
    EUROPE:               3500                   11.3MB
    Now when we try to run the report for individual region we can use all functionalities like Export to Excel, Send report through Broadcaster.
    But When we run the same report without region criteria, (For all regions) we get the report displayed on screen, but other functionalities does not work through portal.
    We get following error displayed when we export to excel:
    Java iView Runtime
    and a box outside that.. no details of the error.
    Also when we try to send this report through broadcaster we get following error:
    java.lang.OutOfMemoryError
    Please brief on limitations if any of BEx/EP/Browser
    We are having following configurations:
    EP 7.0/SP14
    BI 7.0/SP16
    If somebody guide us on this issue, it will be of great help.
    Awaiting reply.
    regards
    Kedar Kulkarni

    Hi Bala,
    Thanks for your useful Notes.
    But as mentioned we are on EP7SP14, and Notes speaks about SP11, so not much useful.
    Actually our data size is too high, which might be the problem.
    regards
    Kedar Kulkarni

  • Crystal Report error exporting to Word

    My company recently deployed a Microsoft Security Patch to our workstations that's causing a problem with Crystal Reports. When exporting a Crystal report to a Word file (from a VB 6 application) the following error is generated when opening the file: "You are attempting to open a file that was created in an earlier version of Microsoft Office. This file type is blocked from opening in this version by your registry policy setting."
    My company uses Crystal Reports v 8.0.1.0. Is there a more recent release that provides a fix for this error?
    Thanks.
    David
    Edited by: David Verbinski on Nov 5, 2008 10:35 PM

    I know 100mb works because I have created word document reports with that size before using the crystal export.  Just really big reports.  I'm not sure on the exact size because it doesnu2019t work but I know there is more data in the report than the 100MB report which works so it doesnu2019t work on some reports larger than that (don't know the specific size because it doesnu2019t work) sorry for being redundant.
    Not sure about a size limitation on an RTF formatted document that is saved as a *.doc (word document).
    It's my understanding that exporting to a .doc is the same as exporting to .rtf because the .doc is in .rtf format.  I may be wrong but if you change a .rtf extension to a .doc extension, you get the same thing when opening the file in word.
    When exporting to RTF format I get the same error, so I believe they are using the same or similar process.
    Yes I tried on other machines and different servers and the error only occurs when exporting large documents to word.  Small documents work fine.
    If there are file constraints in exporting to word, I believe a more distinct error message could be displayed related to the specific error.
    No I did not upgrade my pc or software, I developed the report and am running specificly for 11.5 release 2 with service pace 3 installed. 
    Thanks,
    K

  • Quicktime : Windows Vista w/SP2 - Windows Error : Export Controller stopped

    With the latest Quicktime version I am getting several errors in several applications:
    Windows Vista with SP2: "Export Controller was closed - Data Execution Prevention has sttoped Export Controller"
    After Effects CS4: "Invisible OpenGL Buffer Windows: The procedure entry point...etc..etc..could not be located in the dynamic link library SQLite3.dll"
    I fixed the iTunes error as suggested by Rob (moving the SQLite3.dll provided to the iTunes folder as suggested yeasterday and the error does not showed up again when I did restart my system.
    But there are still "serious" issues with Windows Vista and other applications such as After Effects in regards to the SQLite3.dll. I can not even import MOV files in After Affects NO more.
    Pleas help I am wasting a lot of time in attempting to fix something that was working "perfectlly" before the whole update (iTunes/Quicktime).
    Thanks agaain in advance for your help and assiatnce on this matter.

    I am quite disappointed with these Apple' folks. Almost a month or so with the QuickTime' issues and nobody seems to know what is going on. It seems that they are quite lost. I wonder WHERE their Technical and Support Managers are ????????....
    DO YOU GUYS CARE HOW MUCH IS THIS ISSUE COSTING "YOUR" COMPANY ??????????????????
    DO YOU CARE ??????..with such attitude, no wonder why so many US companies are falling down to the drain.....and quickly....
    A simple respond that shows COMMITMENT will do it...when are you "planning" to have a solution ????????????...
    llottlott..AE4 works regardless of the errors..at least, it is my experience so far, the only thing is to convert the MOV files into for example FLV. It seems to me that any FLV option is better than MOV files and certainly with all these issues and lack of respond, FLV would become a better option.

  • Error exporting long movie in Premiere Elements 4

    I just finished editing a movie in Premiere Elements 4.  Every time I try to export the movie, it begins rendering, gets as far as about 15%, and then says "Export Error: Error compiling movie.  Unknown error."  This happens no matter what format I choose.
    I've read that this problem can be caused by titles and transitions, of which this movie has both.  But I think the problem is entirely due to the movie's length, which is six minutes and fifty-five seconds.  I say this because if I split the movie into 25-to-50-second chunks, leaving all titles and transitions intact, all the chunks export with no problems whatsoever.
    I'm not running any other programs while the movie exports, but that doesn't help.
    The source files are MOV (and one PNG), and the resolution is 1920x1080.  I want to export it at the same resolution, otherwise what was the point of shooting in that resolution?  I'm running Windows Vista on a Samsung R522 laptop, if it helps.
    For what it's worth, I did manage to successfully export the audio portion of the movie as a WAV file.
    What can I do?  My movie is due to premiere at a local arts festival in a few weeks, so I need to sort this out.  I read somewhere that the ideal setup is to have three drives -- one for the source videos, one for running the program, and one to export the file onto.  Will that help?
    Many thanks for any suggestions you may have.
    -Grant

    Thanks Bill -- and thank you mods for moving the thread.  I couldn't find an Elements forum so I assumed there wasn't one.
    Actually, the progress bar in my version does tell you what frame it's on.  When I tried to export it just now, it gave up around frame 2328 of 12447.  Frame 2328 would be 01:17:18... which is the middle of a clip, with no titles, no effects, and no transitions, just ordinary video and sound.  30%, the number you suggested, gives frame 3738, which is 02:04:18, which is a different clip but the same deal.
    The exact number varies from attempt to attempt anyway, which is why I think it's a "system memory" problem rather than a problem with a certain moment in the film.  As I said, each part of the film exported fine on its own.
    The videos are all MOV format, 1920x1080, ranging in size from 40 MB to 666 MB (maybe the devil is trying to stop me from exporting).  There are 41 of them, giving a total of 11.9 GB.  The single PNG is also 1920x1080 and 6.02 KB.  The movie's audio is actually muted -- the audio that I successfully exported before was just the original audio from the raw clips.
    I've got 55.3 GB of free space on my C drive and 580 GB of free space on my external drive; Premiere won't successfully export onto either of them.
    Thanks for the link to the KB article, but I'd read it before and it didn't really help.  As it says, "unknown error" really does mean just that.  And it's clear that none of my clips or effects are problematic since they all exported fine when split into chunks.
    I really do appreciate your help!  I don't know too much about computers so if I didn't give you the information you were looking for please let me know.
    Thanks so much,
    -Grant

  • Error Exporting DVD Format from PP/Media Encoder

    I'm trying to export a rather long project (1.5 hours).  It has several sequences grouped together on one sequence that I've labeled "all".  I'm using Media Encoder, preferences are to create a DVD file and it keeps crashing.  These are my converting settings:
    MPEG-2 DVD
    NTSC 23.97 Wide
    Quality at 75
    Bit Rate at 6 using CBR (I just want to see if it works, then I'll up the quality)
    When I read the error log report it mentions files that have nothing to do with that project at all. 
    The project I'm working on is called Yeldell Event and this is a sample error...
    - Source File: /Users/mendezw/Library/Caches/TemporaryItems/Geo Interviews.prproj
    - Output File: /Volumes/VideoBackup/CHSS/Geography/Interviews/Angelica V1.mp4
    - Preset Used: Custom
    - Video: 854x480 (1.0), 23.976 fps, Progressive
    - Audio: AAC, 128 kbps, 48 kHz, Stereo
    - Bitrate: VBR, 2 pass, Target 8.00 Mbps, Max 8.00 Mbps
    - Encoding Time: 00:05:12
    11/02/2014 06:54:17 PM : Encoding Failed
    The Operation was interrupted by user
    The Geo Interviews.prproj and Angelica V1.mp4 are completely different files and I've never imported those files into this project.  Why is it referencing them?  There are others also that I didn't list here.  About 5 total, none of which are part of this project.
    I'm using a 2013 MacBook Pro, PP CC 8.1.0  I do have a couple other programs open, like Outlook and Safari, but I'm not sure that they would cause the error.
    Please help!  Thanks!

    Just out of curiosity, where are all your cache & database files "set" in the PrPro and project dialog preferences? I've found that PrPro tries to lump everything together, and unless I check where anything is set within any project/export, it can decide that a place I included in a different project for some gosh silly reason is where I still want THIS project to use for cache or whatnot. So ... at times I've gone in to check a project and found it had say decided to use the same preview and output file locations/folders from a completely different project, just dumped things in together. Very annoying. Might have some effect here. But again, might not.
    Neil

  • Error Exporting the ID Objects in SAP PI 7.11 was working fine in PI 7.1

    Hi,
    Recently we have upgraded to PI 7.1 Eph1. We have CTS+ for the transportation. The issue here is that i am able to export IR objects from ESR with CTS. But when i try to export the ID objects i am not able to see either CTS export oprion or the file export option from the dropdown. Before that upgrade (SAP PI 7.1) i was able to export both IR and ID objects with CTS+.
    So i managed to get some error messeage from trace. Here is waht is says...
    javax.ejb.EJBAccessException: Principal: EABCDEF (authentication method: password), policyContextID: sap.com/com.sap.xi.directorycom.sap.xpi.ib.server.jar, permission.name: TransportServiceBean, permission.actions: existsCtsWorkspace,Remote,com.sap.guid.IGUID*
    Do you know what could be the reason? I was wondering why i wasnt able to export.
    Many thanks in advance.
    Best Regards,
    Prasad.

    Hi,
    There seems to be a lot of confusion between what is documented and what is available in actual. I did a search in help.sap.com for JMS Topic and got some information under PI7.11
    http://help.sap.com/saphelp_nwpi711/helpdata/en/46/31558a9f1214dfe10000000a155369/frameset.htm
    I hope that someone from SAP confirms the actual working. I dont want to raise an OSS for this
    Thanks,
    Pankaj.

  • Error exporting to PDF from Crystal Reports 2008

    Hi,
    We are getting following error while exporting Crystal report to the PDF and preview in IE:
    Description: Failed to export to a pdf file -- Selected exporter does not support one of the features used in this report. MyReport {DCA37817-1414-45A7-8DF9-75503B8CD0FE}.rpt
    This report having chart object as subreport, however export to Excel works fine and we could see chart fine in Excel. Any other reports without charts are exporting fine to the PDF format only this one having issue.
    Report developed with Crystal Reports 2008/SP2, server we are running this report having CRRuntime_12_0.msm merge file installed successfully. We can't install 12_2 or 12_3 downloaded from your site because of errors we are getting while setup with these merge files somehow.
    Server configuration: Windows 2008 RC2 64bit, .NET framework 3.5, project executing report compiled as x86 ASP.NET project.
    Thanks for help!
    Leonid Shprekher
    Bessemer Trust

    Actually, the question boils down to; does the framework support the fonts?
    I believe that my question re. this working in the designer was valid. The designer does not use the framework, so if it works there, it is either a framework issue or a runtime print engine issue.
    I believe if you use the code below, it will list fonts available to the framework:
    foreach(FontFamily ff in FontFamily.Families)
    System.Diagnostics.Debug.WriteLine(ff.Name);
    For more information see kbase [1198306 - Crystal Report displaying incorrect font in Microsoft Visual Studio .NET|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_dev/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333133393338333333303336%7D.do]
    Ludek

  • Error exporting Premiere CS6 sequence to edit in Audition CS6

    Hi there!
    I've been trying to export a sequence from Premiere CS6 to edit in Audition CS6 through "edit>edit in Adobe Audition>sequence". However, I keep receiving the following error message:
    Premiere Pro has encountered an error.
    [../../Src/Sequence/TrackItem.cpp-171]
    When I hit continue the rendering doesn't move forward and I have to cancel the process.
    Does anyone has a clue what could be wrong???
    Thanks a lot!

    This is a link to something similar
    right click dynamic link to audition broken (premiere cc 2014)

Maybe you are looking for