Report saving is very slow

hi all
its discoverer report when i want to save the report in html format it hangs and takes lot of time to save
can anybody help
kanchan

Hi,
Thanks for such a beautiful and informative answers I really appriciated it.
I catch the problem and now want to share with U. As u know my prompt is on Date Column but I dont want to show this coloumn in my report.I only want that a user give a date and two columns are shown in report 1) asset_desc 2) total sum (which is sum of 2 columns as i discussed in this thread).
Now before...after creating the prompt on Date field I edit the report view and delete this coloumn (Date) because I only want above 2 colomns and not Date column in my report. But all sorting is performed on date bec it is in prompt (where clause). When I add Date column in my report (to show date col) the speed of the report is like sql and data fetching speed same like sql. Now tell me is there any way that I delete this col from my report but it exist in answer criteria table ??????
I have 19 Asset Desc which return by sql and answers request.
Regards

Similar Messages

  • My all reports are running very slow now, I am using Reports 6i?

    Dear Friends,
    My all reports are running very slow now, I am using Reports 6i. A few months ago there speed is better. Please suggest me the solution of this problem.
    Best regards,
    Shahzad

    Get statspack/AWR running against your database and analyze the reports. 15 minutes interval between snaps should be enough.
    That should give you a clue as to what is going wrong in your database.
    Since you are saying that the reports speed was better a few months ago, it is possible that you are suffering from "data growth".

  • Report Viewer is very slow at first time

    Hi,
    We are facing very slow when loading the reports.For any search it is taking more time to load the reports.We are thinking issue is due to report viewer control and we are using report viewer control version 10.0.0.0.Could you please let us know how to resolve
    this issue.
    Thanks,
    Vijay

    How big id the query?  How much memory does the server have? It is possible that an execution plan/data pages of the query was thrown from the cache and SQL Server needs to compile/read the data from disk again.
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • Report region runs very slow, but its sql runs fast

    We have a page with a report region Type :SQL Query (plsq function body returning sql query) which runs very slow, pegging the tach on our db box for almost a minute before returning report rows. However, if we run the generated sql from sql plus, it returns all the rows in under 10 seconds with nary a blip on the box. Any idas how what could be causing this or how to debug?
    Thanks,
    Steve

    OK, here is the bad boy, shortly after our code that returns the data.
    declare
    rc__ number;
    simple_list__ owa_util.vc_arr;
    complex_list__ owa_util.vc_arr;
    begin
    owa.init_cgi_env(:n__,:nm__,:v__);
    htp.HTBUF_LEN := 63;
    null;
    null;
    simple_list__(1) := 'sys.%';
    simple_list__(2) := 'dbms\_%';
    simple_list__(3) := 'utl\_%';
    simple_list__(4) := 'owa\_%';
    simple_list__(5) := 'owa.%';
    simple_list__(6) := 'htp.%';
    simple_list__(7) := 'htf.%';
    simple_list__(8) := 'wpg_docload.%';
    if ((owa_match.match_pattern(p_string =>
    'f'
    /* */,p_simple_pattern =>
    simple_list__
    ,p_complex_pattern =>
    complex_list__
    ,p_use_special_chars =>
    false)))
    then
    rc__ := 2;
    else
    null;
    null;
    f(p=>:p);
    if (wpg_docload.is_file_download) then
    rc__ := 1;
    wpg_docload.get_download_file(:doc_info);
    null;
    null;
    null;
    commit;
    else
    rc__ := 0;
    null;
    null;
    null;
    commit;
    owa.get_page(:data__,:ndata__);
    end if;
    end if;
    :rc__ := rc__;
    end;
    call count cpu elapsed disk query current rows
    Parse 0 0.00 0.00 0 0 0 0
    Execute 1 25.53 26.59 4492 20992 60 1
    Fetch 0 0.00 0.00 0 0 0 0
    total 1 25.53 26.59 4492 20992 60 1

  • Crystal Report 10.5 very slow (30 minutes) to display

    crystal report 10.5 in vs 2008 display at extremely very slow speed in development server and production server. i have loaded a dataset as the datasource for the report. i also checked the code in debugging mode to know where the delay is but found out it is not from the code as the code executes to the end in less than a minute but the browser keeps loading for several minute before display.
    please kindly help to resolve this issue.

    With CR 2008:
    For OLE DB then use:
    MS SQL 2005 - OLE DB Provider
    MS SQL 2008 - SQL Native 10
    For ODBC then use:
    MS SQL 2005 - SQL Native
    MS SQL 2008 - SQL Native 10
    Once you have a report created, you can use the following code at runtime:
    Public Sub New()
            'This call is required by the Windows Form Designer.
            InitializeComponent()
            'Add any initialization after the InitializeComponent() call
            'Create an instance of the strongly-typed report object
            crReportDocument = New CrystalReport1()
            'Setup the connection information structure to be used
            'to log onto the datasource for the report.
            crConnectionInfo = New ConnectionInfo()
            With crConnectionInfo
                .ServerName = "escalade"    'physical server name
                .DatabaseName = "Pubs"
                .UserID = "sa"
                .Password = "admin"
            End With
            'Get the table information from the report
            crDatabase = crReportDocument.Database
            crTables = crDatabase.Tables
            'Loop through all tables in the report and apply the connection
            'information for each table.
            For Each crTable In crTables
                crTableLogOnInfo = crTable.LogOnInfo
                crTableLogOnInfo.ConnectionInfo = crConnectionInfo
                crTable.ApplyLogOnInfo(crTableLogOnInfo)
            Next
            'Set the viewer to the report object to be previewed.
            CrystalReportViewer1.ReportSource = crReportDocument
    End Sub
    And be careful with subreports. If you use the same connection type as for the main report the subreport should piggy back on the main connection. If you use a different connection, you'll have to use code to connect the subreports:
    //loop through all the sections to find all the report objects
    foreach (CrystalDecisions.CrystalReports.Engine.Section crSection in crSections)
        crReportObjects = crSection.ReportObjects;
        //loop through all the report objects to find all the subreports
        foreach (CrystalDecisions.CrystalReports.Engine.ReportObject crReportObject in crReportObjects)
            if (crReportObject.Kind == ReportObjectKind.SubreportObject)
                //you will need to typecast the reportobject to a subreport
                //object once you find it
                crSubreportObject = (CrystalDecisions.CrystalReports.Engine.SubreportObject)crReportObject;
                string mysubname = crSubreportObject.SubreportName.ToString();
                //open the subreport object
                crSubreportDocument = crSubreportObject.OpenSubreport(crSubreportObject.SubreportName);
                //set the database and tables objects to work with the subreport
                crDatabase = crSubreportDocument.Database;
                crTables = crDatabase.Tables;
                tableIndex = 0;
                bool SecureDB;
                //loop through all the tables in the subreport and
                //set up the connection info and apply it to the tables
                foreach (CrystalDecisions.CrystalReports.Engine.Table crTable in crTables)
                {   // check if integrated security is enabled
                    SecureDB = crSubreportDocument.Database.Tables[tableIndex].LogOnInfo.ConnectionInfo.IntegratedSecurity;
                    string TableName = crTable.Name.ToString();
                    tableIndex++;
                    crConnectioninfo.ServerName = "VMW2K8CRSE2K8";
                    //if (!SecureDB)
                        crConnectioninfo.UserID = "sa";
                        crConnectioninfo.Password = "PW";
                        crConnectioninfo.DatabaseName = "QTYLTD";
                        crTableLogOnInfo = crTable.LogOnInfo;
                        crTableLogOnInfo.ConnectionInfo = crConnectioninfo;
                        crTable.ApplyLogOnInfo(crTableLogOnInfo);
    rpt.VerifyDatabase();
    For more info:
    SAP Crystal Reports .NET SDK Developer Guide
    SAP Crystal Reports .NET API Guide
    http://scn.sap.com/docs/DOC-21967
    http://scn.sap.com/docs/DOC-21953
    (Not sure if I gave you the last two links already.
    - Ludek

  • Report with Subreport very slow from SharePoint

    HI,
     I have a report with a sub-report that runs in about 9 seconds from my PC using the Report Designer with SQL Server 2008R2.
    When I run the deployed report from SharePoint it takes 4 minutes. If I remove the sub-report it again runs fine from SharePoint.
    The sub-report is pretty simple and links to the main report using 3 parameters.
    What would cause this?
    Any ideas would be appreciated.
    Thanks,
    Trish
    Trish Leppa

    Hello Trish,
    I have found similar thread with some good suggestion for optimizing the report in sharepoint.
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/c140d26e-1c02-4f8d-bc61-f6ac75706556/reporting-services-very-slow-in-sharepoint?forum=sqlreportingservices
    Hope it could help
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • Report performance is very slow

    Hi all,
    I have a table with 25 million rows. I create a report on this table in which i need to use the following expression
    ifnull(abc_accr_int_val,0)+ifnull(xyz_mar_val_lcy,0)
    and this experession is group by asset description but the report output time is very high.Further there is no index on these columns in the database.
    Please guide me that did my approach is right ??? if no what is the right approach
    Regards

    Hi,
    Thanks for such a beautiful and informative answers I really appriciated it.
    I catch the problem and now want to share with U. As u know my prompt is on Date Column but I dont want to show this coloumn in my report.I only want that a user give a date and two columns are shown in report 1) asset_desc 2) total sum (which is sum of 2 columns as i discussed in this thread).
    Now before...after creating the prompt on Date field I edit the report view and delete this coloumn (Date) because I only want above 2 colomns and not Date column in my report. But all sorting is performed on date bec it is in prompt (where clause). When I add Date column in my report (to show date col) the speed of the report is like sql and data fetching speed same like sql. Now tell me is there any way that I delete this col from my report but it exist in answer criteria table ??????
    I have 19 Asset Desc which return by sql and answers request.
    Regards

  • Reports running is very slow

    Hi All,
    I have developed an application in oracle application express 3.2.My data size is very huge and reports are taking too much time in displaying contents.
    I have 30 million records in the table which has 4 years of data.
    Filters on the user interface are company,month,year,work location,employee name and category.Since this is my first application.Also first time i am working in Oracle database and APEX.So i don't have any idea in which way i can make it faster.
    I guess this can be done by some modification in tables like generating indexes or something else.
    Please guide me on this it will be highly appreciated.
    Also i am not using any images,graphical thing which is causing any delay in report generation.I am just creating a simple report and showing values sum,group by.
    Since my application is ready and already in production So it will be difficult to do changes in the report level.If by doing any changes in the tables can make it faster that would be really great.
    Regards,
    Oracle Rookie

    Hi
    Oracle SQL perfomance tuning is an entire art in it's own right! The most likely issue is that your SQL for the report needs tuning (and part of that may involve indexing, gathering table statistics etc.).
    This is probably best addressed in the PL/SQL & SQL forum here...
    PL/SQL
    However, beware that they will want a properly written question with all the relative information in. There are guidelines here...
    SQL and PL/SQL FAQ
    And specifically for tuning requests here...
    SQL and PL/SQL FAQ
    Although the amount of information required will look a little daunting, it really is worth doing properly - you will just be asked the info if you don't provide it, wasting yours and others time.
    Good Luck
    Cheers
    Ben

  • Saving files very slow, and sometimes crashes.

    When saving files, it is extremely sluggish, regardless of what the file contains (tons of images, or a few shapes with text). When the "Progress" window pops up, the program will grey out, and display the Not Responding in the header, and appear completely unresponsive. Though it does eventually save the file. This is a work computer, so I don't do anything besides Photoshop and Illustrator. The system specs are:
    Windows 7 64
    12GB RAM
    Intel Core i7 860 @ 2.80HZ
    I don't see it as being a hardware issue, as I mentioned this delay happens regardless of the type I am working with. I experience this when saving files locally, and saving them on our network, both yield the same results.
    EDIT: Forgot to mention that this hasn't always been like this. Few weeks ago it was all working flawlessly (even just saving to the network directly instead of copying), it's just been slowly getting worse.

    Check your printers. this error is related to the default printer and print service. If you have an offline or unconnected printer, this is most likely your issue.
    Remove any offline or old/duplicate references to networked printers. If the printer is timing out, you will experience lag in Photoshop and Illustrator even on fast systems.
    If you did not have any old printers, then recreate and update your print driver, as you may have a corrupt .ppd file.

  • My report is running very slow

    I have a pretty complex spreadsheet that runs correctly in the dashboard and produces a chart in the report. In the report, I allow the user to change about 20 inputs that impact the chart. When the user changes an input, however, it takes at least five seconds for the chart to update. I built the same chart in excel, and excel take less than a second to update. Is there a way to speed up my report?
    Thanks,
    Dan

    Dan,
    This is a Dashboard only.
    Now, as you have about 20 inputs that manipulates your data or changing it dynamically , it will surely take some time.Please go through the below link
    http://wiki.scn.sap.com/wiki/display/BOBJ/Dashboards+(Xcelsius)+General+Best+Practices
    In that check "Keep The Data And Logic To a Minimum Or Use Hard-Coded Values" section.
    Regards,
    JC

  • Reporting studio client very slow

    We are having significant performance issues using the Reports Studio Client on local computer. When we develop or edit new reports and use System Variables to make reports dynamic it freezes the computer. Even loading a report or making a single change takes 30-60 seconds. Not being able to use system variables forces us to hard code report selections which is leading to other problems.(client and server are in different locations)
    Has anybody experienced this?we use epm 11.1.2.

    Same here. Performance is really bad when we use the studio on our own machines. Good thing is we have only couple of developers here and all of us have access to the report server. I know it is not ideal, but if we need to develop a new report or modify it, we simply login to the report server using remote desktop connection.
    Cheers,
    Mehmet

  • Why reports created in 8.5 and saved in XI.5 are very slow?

    Hello,
    Here is my problem :
    I worked with Crystal Report 8.5 and my reports were speedy.
    I saved a report in a new version (Crystal XI.5) and the report generation is very slow.
    If i saved the same report (saved in 8.5) in the version XI (not the XI.5) the report is speedy.
    If i saved the report from XI.5 to XI there is no change (report slow).
    Have you ever seen this problem?
    The database used is Advantage Database Server 8.1.0.26
    Thanks for the help.
    Mickael

    Hi Mariusz,
    It is expected that the reports will run a bit slow in the newer version as the entire report engine has undergone chnage after version 8.5.
    With the new version, the database security has been enforced a lot more as compared to version 8.5. Along with this, the SQL generation process has also undergone change and the SQL which is now generated is much more optimized.
    Also, there are a lot of new features in terms of formatting the report, which can cause the delay in showing you the first page of the report. It may not just be the database access that is taking time.
    As suggested earlier, if you find the query generated in 8.5 was fetching records faster, you can surely create a command object in XI R2 to check if you get the same speed of data retrival.
    Regards,
    Abhishek Jain.

  • Obiee Report is very slow

    Hi,
    The report is looking very slow ,where should i tune it?
    Thanks-Bhaskar

    Hi User,
    Please refer the below links for performance tuning
    Performance of Report
    performance tuning
    Award points if Helps
    Thanks,
    Raj

  • How to track the flow of Sharepoint SSRS report requests to troubleshoot slowness

    How to track the flow of requests of Integrated SSRS report links in Sharepoint.
    We are using SSRS with Sharepoint for reporting purpose. The issue is some of the reports get generated fast and some other reports generation is very slow. When the sql query of these reports RDL file is executed, the records are shown fast.
    Also even on clicking the "Add Subscription" link of "Manage Subscriptions" of a report is very slow for some reports, while it is fast for other reports.
    I tried enabling SQL profiler to track the requests.  I have checked profiler log for the SQL statements with exec sp_executesql. But they are not helpful.
    Pls advice on how to track the request of flow of SSRS report request in sharepoint and how to troubleshoot the slowness in  "Add Subscription" link, response of some reports.

    Hi Pradeesh,
    According to your description, my understanding is that you want to track SharePoint SSRS report requests to troubleshoot the performance.
    Developer dashboard is very help full while troubleshooting the issues related to performance in SharePoint 2013.  You can have a try.
    About Developer dashboard, you can refer to the links:
    http://www.sharepoint-journey.com/developer-dashboard-in-sharepoint-2013.html
    http://msdn.microsoft.com/en-us/library/office/ff512745(v=office.14).aspx
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • Same select max is very slow in one program but fast in another

    Hi,
    I have a report that becomes very slow these few months. I used SQL trace for the report and found out its these codes that slow down the report:
    SELECT MAX( mkpf~budat )
                  FROM mkpf
        INNER JOIN mseg
                       ON mseg~mblnr = mkpf~mblnr AND mseg~mjahr = mkpf~mjahr
                    INTO posting_date
               WHERE mseg~werks  = w_matl-batch_reservations-werks
                     AND mseg~charg  = w_matl-batch_reservations-charg
                     AND mseg~bwart  IN ('261', 'Z61').
    The thing is these codes have been used in different system, DEV, QAS, and PRD. But only in PRD it is very slow, other systems are pretty fast.
    I even created a local copy of that report in PRD, with the same code. The local file runs fast and perfectly. But the original code is just slow.
    Just wondering if anybody met this problem too? any ideas??

    Hi Liu,
    Index creation is not a advisable solution.Please follow the existing indexes by adding Mandt field.
    Try like this
    SELECT MAX( mkpf~budat )
                  FROM mkpf
        INNER JOIN mseg
                       ON mseg~mblnr = mkpf~mblnr AND mseg~mjahr = mkpf~mjahr
                    INTO posting_date
               WHERE mseg~mandt = sy-mandt
                      AND mkpf~mandt = sy-mandt
                      AND mseg~werks  = w_matl-batch_reservations-werks
                     AND mseg~charg  = w_matl-batch_reservations-charg
                     AND mseg~bwart  IN ('261', 'Z61').
    Hope it will be helpful.
    Regards,
    Kannan

Maybe you are looking for

  • Mid 2009 13" Macbook Pro battery

    just found i've got a " service battery" notice in the drop menu from the battery icon. Looked around and its likley due to my high use/cycle count currently at 430. checked the store and im guessing the fact they have none for the alum unibody and s

  • HT201317 My Photo Stream is on my Windows 7 PC has not been updated

    My Photo Stream is updating regularly from my iPhone 4 to my iPad, but My Photo Stream on my Windows 7 PC has not been updated for the last four months. Any suggestions?

  • How to print photos on MG2120?

    I have windows vista and every time i try to print photos from paint/easy photo ex/windows photo viewer nothing happens, I mean the paper goes in and it says its printing but it always comes out blank. I have no trouble printing documents, but no luc

  • Locating email message in the message viewer list

    When I create a link to the email message and I activate it, it opens up the emall message in a separate window.  So far so good.  However, I want to locate that same email message in the email list in the message viewer, but I havne't found a way to

  • Not to belabor the issue, as I know this has been asked befo

    Is there an aftermarket charger that people agree works with the Zen V? I had looked at the Gomadic and Boxwave models, but still cannot seem to find a consensus as to whether they actually work. I have an old USB charger from RIO Carbon I had. It's