Error Message: Not enough memory for operation.

Hi All,
I'm having problem when try to connect to Oracle DB, check my details as below :
Connector : Microsoft ODBC for Oracle
Database Expert : Using Stored Procedure to populate data to excel.
Server Used: DBCCSWST125.reportjobserver 
Error Message: Not enough memory for operation
Problem occurred when I tried to use stored procedure in my rpt file.
Thanks.

You are using multiple versions and it's still not clear what is happening but the CR 2008 reports should not be published to BusinessObjects Enterprise XI R2. CR 2008 has functionality that XI R3 does not support.
Create reports in CR XI R2 for BOE R2.
Also, your version of Enterprise has not been patched. You should have a Support contract which will allow you to get into our Gated site and update BOE. Then it may work but check with your administrators first before patching BOE.
Thank you
Don

Similar Messages

  • Error of "Not enough memory for operation" when exporting Crystal Report

    Hi,
    I am getting errors in Business Objects when I try to export a report from its native Crystal format to PDF (or Word).  This is only happening in one of our many reports.
    When I try to export within the Business Objects viewer (in Crystal format), then click the "Export this report" button, and select "Adobe Acrobat (PDF) as the File Format, click OK, I get the following error:
    CrystalReportViewer
    handleCrystalEvent failed 
    WebReporting.dll error '80004005'
    Not enough memory for operation.
    /InformationCentral/Viewers/crystal_viewer.asp, line 39
    This also occurs if I try to export to PDF within the Crystal Report designer as well, but the error is a bit different:
    "Failed to export report" then "Memory Full".
    Strange one this is....

    Hi Peter,
    Could you try to minimize the records in the report by giving some additional conditions?  May be like give the date range or select for few regions etc?
    Try in such a way so that your report downloads less number of records.
    Hope this helps.
    Regards,
    Rashmi

  • Error:500 Not enough memory for operation Export.send PEGetExportOptions

    I get this error when trying to export a report to a .pdf file.  Has anyone ever seen this error?
    Thanks,

    Hi Bill,
    The version is the original release of CR 10 which means no patches installed. The next issue is that error number is typically returned by crpe32 which was deprecated in CR 9, meaning CR 10 isn't supported and no one should be using it except for 4 OEM Partners who continued to be licensed until they had time to migrate to the new engine. It could be they wrote their software in Delphi which sort of supported that engine using the CR VCL component.
    So much time has passed that company may have at one time have been part of one of the 4 but I can't say for sure now or the are using the VCL.
    The only option you have now is to ask them for support. Or if they have an updated version or patches available.
    I would suggest installing patches but that could completely break their software so I don't recommend doing it.
    See if they suggest a solution.
    Thank you
    Don

  • Scheduled report failure - Not enough memory for operation

    Crystal Reports Server XI R2 SP4
    SQL Server 2005
    Hi,
    I have a report that is scheduled. Most of the times it runs successfully, however for one parameter setting I continuously get the following error mesage:
    Status:  Failed
    Printer:  The instance is not printed.
    External Destination:  Copy the instance with default filename to the directory '//10.2.25.24/polling_in'.
    Creation Time:  03/04/2009 05:00
    Start Time:  03/04/2009 05:00
    End Time:  03/04/2009 05:00
    Server Used:  BWAQTSREP-1.reportjobserver
    Error Message:  Not enough memory for operation.
    Why would this happen, and how can I resolve? I can run the report successfully in Infoview.
    Thanks!
    Penny

    Hi Penny,
    do you run the report successfully in the infoview using the same parameter setting?
    If it does please try to reschedule the report and monitor (using the task manager) the memory consumption on your windows server.
    Please also make sure that there is enough disk space available on both your server and the destination directory ( '//10.2.25.24/polling_in'. )
    Regards,
    Stratos

  • Reproducible error when loading many reports (Load report failed - Not enough memory for operation)

    Environment:
    Win 7 SP 1
    Visual Studio Pro 2012 Update 4
    Crystal Reports for Visual Studios Service Pack 10 (13.0.10.1385)
    Report created in Crystal Reports XI Release 2 (11.5.8.826)
    Targeting x86 .NET 4.0
    Scenario:
    We have a program that runs and creates a large number of reports before the process is ended. When running after many hours we'd get a Load report failed/Not enough memory of operation exception. I kept removing code and found i could reproduce just using the report.Load call. I simplified the report to a completely blank report to make sure it was nothing specific to a report I was loading. (Opened Crystal Reports XI Release 2, Save As, "Blank.rpt".). I then created, loaded, and disposed of this report in a loop. I was able to cause the same exception after 32,764 iterations on my machine. I also tried using .NET 3.5 same result. I added a counter to our main program and it also went through 32,764 report loads before the same exception was thrown. Main program uses 15 or so different reports with a variable number of subreports in each.
    Sample Code to illustrate the problem:
    I did this as a WinForms project since our main program is using winforms.
    References added:
    CrystalDecisions.CrystalReports.Engine
    CrystalDecisions.ReportSource
    CrystalDecisions.Shared
    CrystalDecisions.Windows.Forms
    using System;
    using System.Windows.Forms;
    using CrystalDecisions.CrystalReports.Engine;
    namespace CrystalTest
        public partial class Form1 : Form
            public Form1()
                InitializeComponent();
                int i = 0;
                try
                    while (true)
                        i++;
                        ReportDocument report = new ReportDocument();
                        report.Load("Blank.rpt");
                        report.Close();
                        report.Dispose();
                catch(Exception ex)
                    MessageBox.Show(i.ToString() + ex.Message);
    Exception:
    CrystalDecisions.Shared.CrystalReportsException: Load report failed. ---> System.Runtime.InteropServices.COMException (0x80041004):
    Not enough memory for operation.
       at CrystalDecisions.ReportAppServer.ClientDoc.ReportClientDocumentClass.Open(Object& DocumentPath, Int32 Options)
       at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.Open(Object& DocumentPath, Int32 Options)
       at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened()
       --- End of inner exception stack trace ---
       at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened()
       at CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename, OpenReportMethod openMethod, Int16 parentJob)
       at CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename)
       at CrystalTest.Form1..ctor() in c:\Test Projects\CrystalTest\CrystalTest\Form1.cs:line 27

    int = Int32. No it's not the "counter" that's causing the problem. The max size of an int32 is far far larger than 32764.
    I am disposing and cleaning up the datasets in the main app. That is why I didn't include them in this test; they aren't relevant.
    I'm unsure why this test program is completely irrelevant. It throws the same exception, at the same count, as the main program. It does it in substantially less lines of code than our main program. I spent days running long tests to figure out exactly what I needed to make the problem appear so I could post a clean and precise post on these forums. I then created the test program to illustrate that.
    The "real" code as I said does stuff in sections and in a certain order.
    For each report I need to export based on rows in a table
    1. Creates a new Report Document
    2. Loads the report document with the report
    3. Creates a dataset of the data to display
    4. Calls SetDataSource
    5. Calls Report.ExportToDisk
    6. Disposes DataSets
    7. Closes/Disposes Reports
    To help isolate the problem I first took out the export to disk part (Step 5). The problem still occurred. I then took out everything related to our data. (Step 3, Step 4, Step 6). The problem still occurred. And yes I commented out this code in our main real program. This left me with:
    1. Creates a new Report Document
    2. Loads the report document with the report
    7. Closes/Disposes Reports
    At this point i had to prove it was not dependent on the report. This makes sure it's not a database connection, or pulling too much data into the report. The most efficient test for this is a blank report.
    So my order of operations becomes...
    1. Creates a new Report Document
    2. Loads the report document with a blank report
    7. Closes/Disposes Reports
    So you'll see this is exactly why I wrote this test the way that I did.
    I've had a run where it error on iteration 32761. My last runs have errored on 32764. I have had many runs over many weeks that all error with the same exception.
    There are no temp files left behind, With a test running you can see the temp files being added but they are immediately removed.

  • Memory full.Not enough memory for operation.

    To the Report Design Team,
    It has been suggested that I post this issue here based on another thread I started: Re: Memory full.Not enough memory for operation.
    The template contains a single 24 bit PNG image as a background in the Page Header section, plus 9 image records from a SQL Server image field over 3 pages (3 images per page).  The images are all JPG at 3000x2000 (digital camera).
    To summarize, we are experiencing three problems.
    1. CR2008SP2 Designer issues a Memory Full error when Exporting to PDF.
    2. Using a 3rd party PDF Printer (Bullzip PDF) and CR2008SP2 Designer generates a PDF, however, the CR2008SP2 API throws a "Memory full" exception suggesting Designer and API are different (see stack trace in linked message above).
    3. With only 3 images on 1 page, CR2008 Designer Export to PDF takes 110 seconds to generate a 24MB PDF while our third party PDF Printer generates the same report in 17 seconds and 580KB.
    Edited by: Don Williams on Sep 30, 2009 6:43 AM

    The .rpt file size is 14MB with the Data Save option enabled, 12MB without Data Save.  Presumably the 12MB file size is because of the 24bit PNG we have as our background.
    The Designer executes the report in less than a second and we can scroll through all pages and see the image fields perfectly.
    When we Export to PDF, the Designer takes a long time, eventually gets to the 77%, the 7th record and returns "Export report failed" followed by "Memory full".  If we export only page 1 of the 3 pages, it also returns a Memory full error.  However, when the same report is run with only 1 page, that page exports to PDF but with a ridiculously large size and export time.
    The machine has 2GB of physical memory with an 8GB pagefile with Windows 2003 (latest everything).  The process runs up to about 1GB before reporting the memory full error.
    We've also tried a variety of other suggestions posted in the other thread with no success.
    We're happy to provide the RPT file to the Report Team to diagnose the problem.  Ultimately, we need to be able to produce a 15 page report with approximately 45 images.
    Our preferred scenario is fixing problem 2.  The CR Designer seems quite capable of rendering our report and printing it to our third party PDF printer in a timely manner with small size.  However, the API reports memory full.
    The API resides in a dedicated reporting web service with NO other code except for loading the report, setting parameters and printing.  When executing, it uses up to about 1.1GB before reporting the error.
    Are there any other suggestions for fixing what we have?  Are there known problems with large images in reports?  Do we need to lodge a formal support request?
    Regards,  Grant.
    PS.  Grr and my message formatting is lost when I edited this message!!!
    There is a 1500 character limit and then all formatting is removed to save space. Break you posts into separate entries.
    Edited by: grantph on Sep 30, 2009 2:49 AM

  • Export report Excel-Data Only works not,'not enough memory for operation'

    Hi all,
    we are using in our Software CrystalReport Version 11 Service Pack 5. Crystal report is intergated for .NET. We can not uninstall CrystalReport Version 11 Service Pack 5 to install another Version or another Service Pack.
    We are haveing problems to export report as Excel 97-2000 Data Only, "not enough memory for operation" message pop up after you try to export report as Excel data Only.
    Export Report as PDF is working fine.
    This problems are on Windows XP Sp3 and Vista. On Windows 7 we have no problem.
    Please, can somebody help me solving this problem, or to finde a workaround for Windows XP. Memory from PC is not the problem.
    Mit freundlichen Grüßen / Kind regards
    Odisej Nujiq

    Odisej, unfortunately, processes such as remote sessions are reserved for phone cases only. You can create a phone case here;
    http://store.businessobjects.com/store/bobjamer/en_US/pd/productID.98078100?resid=S6I@hgoHAkEAAGsiyVkAAAAR&rests=1282226845369
    Also, just as an FYI, see the blog [What are these 'support' forums good for anyhow?|/people/ludek.uher/blog/2011/04/07/what-are-these-support-forums-good-for-anyhow]
    Without phone support, you are left to do most of the foot work your self. On the forums, we can provide suggestions and guidance, but that is about it.
    Couple of things to note though. If you do create a phone case, one of the 1st things that you will be asked is to update your app to SP6 - unless you can prove the same issue exists with SP6 (see more bellow).
    Something I would recommend you try is to take an XP box, install SP6 on it, then install your app on it. If this works, your options are highly limited. E.g.; SP6...
    One other utility that may be worthwhile to use is [Process Monitor|http://technet.microsoft.com/en-ca/sysinternals/bb896645.aspx]. Run that on the XP box. In the logs, look for "Access Denied" error messages. Look for load or other issues with crxf_xls.dll, exportmodeller.dll and crtslv.dll.
    From your responses I am still not sure if you actually did run Modules and compared the results. This is much, much easier to do than working with ProcMon and I'd start there. To summarize, my troubleshooting plan (irrespective of the limits imposed on you) would be:
    1) Use Modules as this is the easiest thing you can do
    2) Try this with SP6 - more work that (1) above, but at least you are on the latest. If this works, banging your head into an SP5 wall will do you no good (like I said, irrespective of what ever limits...)
    3) Use ProcMon - not too difficult, but time consuming as you will be looking over 100s, possibly 1000s of lines and not being familiar with details of CR, this will take time.
    - Ludek

  • Error Message "Not Enough Memory to Open Illustrator"

    Hi,
    Im running adobe illustrator cs5 on windows 7 and have previously had no problems. Today however when I opened a pdf I got the error message "Not enough memory to open illustrator" I have searched and cannot find a reason for this error. It now happens nearly every time I open a pdf. I increased my windows 7 virtual memory, however, this does not seem to have any effect. Any assistance would be appreciated.

    Something is blocking PDF handling (a security tool) on the system level and/or one of the shared Adobe components for PDF handling has been updated/ changed, most likely. Do the PDFs properly open in Acrobat/ Adobe Reader? Investigate these things. Also of course simply trash your AI prefs to make sure you are not a victim of tainted config data...
    Mylenium

  • Getting not enough memory for operation

    webpage displays error
    not enough memory for operation
    description: an unhandled exception occured during the execution of the current web request. Please review the stack for more information
    excewption details: system.outofmemoryexception: Not enough memory fior operation
    this is when printing report to a DOC file or PDF file

    hi
    I have faced a similar issue, the root cause of it was like we have identified few crystal report formulas that might lead to memory issues and corrected them
    for example
    assigning a value to an array
    samplearray<i> := "value";
    need to ensure that the i is an integer and that it should not be less than 0 or fraction ..
    i have just given some example above..
    so the solution could be to identify the formulas that could run into such sort of memory issues and fix them.
    Please let me know if this helps.
    Thanks,
    Krishnam

  • Server has not enough memory for operation (Some .rpt files not removing from Temp folder )

    We have web application developed in ASP.NET 4.0 ftramework and published on IIS. And we are using 13_0_8 version of CR.
    I am creating report files and exporting these as pdf. And I am disposing streams and report documents at the end. Initially, there wasn't any problem and temporary files which are created by CrystalReport were deleting all. But, now requests to the web application increeased to about 50.000 in a day and now some .rpt files are staying in Temp folder and I can't delete them. After recycling application pool all files are removed by IIS. Then, after 1 or 2 hours new .rpt files are creating in Temp folder. And after somewhile, application throws Server has not enough memory for operation. And, IMHO the reason is temp files. Here is the code I am using to export report as pdf.
    Questions:
    1. Is the reason of this exception is temp files in Temp folder?
    2. What is wrong in that code?
    ReportDocument report = DownloadPDF.GetReport(id);
       MemoryStream stream = (MemoryStream)report.ExportToStream(CrystalDecisions.Shared.ExportFormatType.PortableDocFormat);
       Response.ContentType = "application/pdf";
       Response.AddHeader("content-disposition", "attachment; filename=" + id+ ".pdf");
      report.Close();
      report.Dispose();
       try
       Response.BinaryWrite(stream.ToArray());
       Response.End();
       catch (Exception)
       finally
      stream.Flush();
      stream.Close();
      stream.Dispose();
    Here is the StackTrace

    Hi Farhad
    At 50,000 requests, you are more than likely running into the CR engine limit. E.g.; you're pushing way too hard... The following will be good reads for you:
    Crystal Reports 2008 Component Engine Scalability | SCN
    (The above doc does apply to current versions of CR - e.g.; no changes.)
    Crystal Reports Maximum Report Processing Jobs ... | SCN
    Scaling Crystal Reports for Visual Studio .NET
    Choosing the Right Business Objects SDK for Your Needs
    Choose the Right SDK for the Right Task
    How Can I Optimize Scalability?
    All of the above apply to your version of CR and thus the next question will be; how to proceed:
    1) Bigger, faster servers will not hurt.
    2) Web farms.
    How Do I Use Crystal Reports in a Web Farm or Web Garden?
    3) Crystal Reports Application Server, or perhaps even SAP BusinessObjects BI Platform 4.1
    Crystal Enterprise Report Application Server - Overview
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • Need help, I have an error message "not enough storage"  for icloud and it will not let me do anything

    Need help... getting an error message "not enough storage" for icloud and it will not let me get passed the message

    See if this helps.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

  • Any fixes for LR5 export error message 'Not enough memory'?

    I have plenty of hard disk space, and the files being exported are only 10MB each. I'm exporting from PEF raw files to jpg's.  Closing and restarting LR5 fixes the issue after two or three goes, but it's getting annoying.  Anyone know of this issue?

    Don't be tempted to just upgrade your RAM, as Windows 7 32 Bit is unable to utilize more than the 4 GB you already have installed.  If costs are an issue upgrade your OS to Windows 7 (or higher) 64 bit first, then upgrade to 8GB of RAM if/when required.
    I have Lightroom 5.4 installed on two Windows 7 64 bit desktops, one with 4GB of RAM installed and the other with 8GB.  I have never experienced a 'not enough memory' error with either, although performance is significantly better on the 8GB system.

  • Lightroom 5.3 Error message: Not enough memory

    I have just installed Lightroom 5.1 and downloaded the 5.3 updates.  When I press Import I instantly get a message: An Internal Error has occurred, not enough memory.  There is nothing in it as yet, it was just installed.

    dj_paige
    Sorry about that, early morning CA time and lack of coffee chagrin and annoyance at systems in general.
    64 bit operating system
    7.89 useable Gigs of RAM
    There are perhaps 600-700 pictures installed on the computer in total, but I suspect the point is that the program does not even get around to asking where I wish to locate the photos but preemptively dismisses the suggestion out of hand.

  • Error Message-Not enough Memory

    All was fine with iTunes 7 update and one day (today) I come back to my computer and dock my iPod and iTunes will not start. Error message reads "not enough memory." I have a gig of ram and 13 gigs of free space on my hard drive. What gives? Has anyone had this issue? Tried restart and activity monitor says that ram is available. Nothing works. Any ideas? Thanks in advance.

    I'm having the exact same thing, you figure this out yet? I still can't use it...

  • Time Machine Error Message Not enough Memory, How to fix?

    I've been using Time Machine, backing up onto a hard drive, since last November. All of a sudden it's giving me an error message saying that it does not have enough space. So the backups fail.
    The error message offers 2 alternatives: Destroy files or use a different back up location. The preferences offer no assistance, though the error message implies that I can make the backup smaller there.
    How can that be? I have saves for the last 30 days, but I can't back up the current files? That seems like flawed software to me.
    Does anyone know a work around?
    Thanks,
    Jemel

    Jeanie Marshall wrote:
    Yes, I have read through this. Seems very unMac like. There really seem to be no preferences while Time machine is active.
    I'm not sure what you mean by that. If there isn't room, there isn't room. As dbsneddon says, we can't help figure out what's happened without some details.
    There are several possibilities:
    Nothing is wrong. You have the +Warn when old backups are deleted+ option checked in TM Preferences, and that's what it did. That's why I referred you to #C4 in Time Machine - Troubleshooting. See the tan box there for a detailed explanation and simple solution.
    Your Time Machine drive isn't well over twice the size of the data it's backing-up, and Time Machine has to do a new, full backup. #D3 in Troubleshooting lists some common reasons for that.
    For some reason, Time Machine may have started a new set of backups. A common reason is having the Logic board in your Mac replaced. See #C8 in Troubleshooting.
    There are others, of course, but start by checking those out.

Maybe you are looking for