How to make download spped fast?

Having problem with download speed. We rented a movie and itunes estimates over 1000 min. We had 100mb/sec connection. How we can make the download faster?

Its an on going process. Couple of steps you will have to follow: Did you perform any SQL trace ..?
        Did you perform any ABAP trace...?
        How much business data these reports are processing.Is there a possibility you can do some changes.
SQL Trace ( SAP in built tool) will give you a fair idea about each and every SQL statements in your report. And you can anlyze bad ones. And also propse optimized SQL or
index if needed.
ABAP Trace(SAP in bulit tool), you can find out amount of ABAP run time thats being elapsed by each and individual abap module.
Also the amount of business data is every  important. While designing the report alogorithm this is very important factor.

Similar Messages

  • How to make downloadable links in Adobe Muse

    I am new to website design and am trying to figure out how to make downloadable links for some PDF flyers, PSD templates I am creating.   Not sure if "downloadable links" is the correct term for what I'm trying to say but in a nutshell I am creating Business Flyer's in PDF form and Photoshop PSD template files that I would like to be able to have my users click a link that allows them to download them right to their desktop.  Any help would really be appreciated!

    Hi caybar10gaming,
    I had the same question as you and was searching online for how to add "downloadable links" as well so your not alone in that lol. Anyways, I found this video that explains how to do this. I hope this helps you, as it did me. Good Luck  
    http://tv.adobe.com/watch/muse-feature-tour/add-and-link-to-any-type-of-file/
    -Caitlin

  • How to make slow reports fast?

    Hi all,
    How to make slow reports fast? What could be the various reasons and optimizations/solutions?
    Thanks,
    Charles.
    ++++++++++++++++++++++++++++++

    Its an on going process. Couple of steps you will have to follow: Did you perform any SQL trace ..?
            Did you perform any ABAP trace...?
            How much business data these reports are processing.Is there a possibility you can do some changes.
    SQL Trace ( SAP in built tool) will give you a fair idea about each and every SQL statements in your report. And you can anlyze bad ones. And also propse optimized SQL or
    index if needed.
    ABAP Trace(SAP in bulit tool), you can find out amount of ABAP run time thats being elapsed by each and individual abap module.
    Also the amount of business data is every  important. While designing the report alogorithm this is very important factor.

  • How to make materialized view fast refresh parallel

    We have Oracle 11.2.0.1 on Redhat 5.2. We use a dozen of fast refresh materialized views in our application.
    From time to time MV refresh takes longer time than the refresh interval.
    One of way to improve performance of MV refresh is to make the refresh parallel, e.g. http://www.dba-oracle.com/t_materialized_views_refreshing_performance.htm
    - Use parallel DML - Oracle author Michael Armstrong Smith notes "I've done parallel materialized view refreshing
    on tables recently and improved the load times considerably. Rather than having one load which took 2 hours,
    I run 4 parallel loads, one for each partition. The length of time for the whole process is now determined by
    how long the biggest partition takes to load. In my case, this is 40 minutes, with two 30 minute loads and one
    20 minute load.  Overall I am saving 1 hour 20 minutes. I can now add further partitions and do the same thing.
    My only limitation is the parallel loads because I don't have unlimited processing power.
    {code} My master tables are not partitioned, but think parallel will still better than non-parallel.
    Now the question, how to make refresh parallel. According to the paragraph cited above, Use parallel DML appears doing the job. Can someone  confirm that.
    We use {code}
    alter materialied view MV_OFFENSE parallel REFRESH FAST start with sysdate next sysdate+ 1/24;
    {code}to schedule refresh. Does the parallel clause here parallels query the MV or refresh the MV?
    Any other way to make MV refresh parallel?
    Thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Doc http://download.oracle.com/docs/cd/E11882_01/server.112/e16579/refresh.htm#i1006319 says:
    >
    In a data warehousing environment, assuming that the materialized view has a parallel clause, the following sequence of steps is recommended:
    1.
    Bulk load into the fact table
    2.
    Enable parallel DML
    3.
    An ALTER SESSION ENABLE PARALLEL DML statement
    4.
    Refresh the materialized view

  • How to make the search faster  in a table ?

    hi ,
    i have got a table wich has one field as a primary key , and this table got 500000 records in it
    wich i try to pop up the (LOV)  it takes about one minute to be retreived
    i dodnt know how to make it faster ?
    could anyone help me how to make faster ?
    and what index should i put on this table ?

    thanks for your help
    and here is the the
    CREATE TABLE MOBWORKSHOP.MOBWSH_GUARANTY
      GRNTY_NO          VARCHAR2(10 BYTE),
      I_CODE            VARCHAR2(30 BYTE),
      SERIAL_NO         VARCHAR2(30 BYTE)           NOT NULL,
      GRNTY_START_DATE  DATE,
      GRNTY_EXPIR_DATE  DATE,
      GRNTY_VALIDTY     NUMBER(1),
      CAUSE_ID          VARCHAR2(10 BYTE),
      NOTE              VARCHAR2(60 BYTE),
      AD_U_ID           NUMBER(5)                   NOT NULL,
      AD_DATE           DATE                        NOT NULL,
      UP_U_ID           NUMBER(5),
      UP_DATE           DATE,
      BRN_NO            NUMBER(6)                   NOT NULL,
      BRN_YEAR          NUMBER(4)
    TABLESPACE MOBWRKSHPTRANS
    PCTUSED    0
    PCTFREE    10
    INITRANS   1
    MAXTRANS   255
    STORAGE    (
                INITIAL          64K
                MINEXTENTS       1
                MAXEXTENTS       UNLIMITED
                PCTINCREASE      0
                BUFFER_POOL      DEFAULT
    LOGGING
    NOCOMPRESS
    NOCACHE
    NOPARALLEL
    MONITORING;
    CREATE UNIQUE INDEX MOBWORKSHOP.MOBWSH_GUARANTY_PK ON MOBWORKSHOP.MOBWSH_GUARANTY
    (GRNTY_NO)
    LOGGING
    TABLESPACE INDX_TRANS_MOBWRKSHP
    PCTFREE    10
    INITRANS   2
    MAXTRANS   255
    STORAGE    (
                INITIAL          64K
                MINEXTENTS       1
                MAXEXTENTS       UNLIMITED
                PCTINCREASE      0
                BUFFER_POOL      DEFAULT
    NOPARALLEL;
    ALTER TABLE MOBWORKSHOP.MOBWSH_GUARANTY ADD (
      CONSTRAINT MOBWSH_GUARANTY_PK
    PRIMARY KEY
    (GRNTY_NO)
        USING INDEX
        TABLESPACE INDX_TRANS_MOBWRKSHP
        PCTFREE    10
        INITRANS   2
        MAXTRANS   255
        STORAGE    (
                    INITIAL          64K
                    MINEXTENTS       1
                    MAXEXTENTS       UNLIMITED
                    PCTINCREASE      0
    ALTER TABLE MOBWORKSHOP.MOBWSH_GUARANTY ADD (
      CONSTRAINT MOBWSH_QRNTY_I_CODE_FK
    FOREIGN KEY (I_CODE)
    REFERENCES MOBWORKSHOP.ITEM_DETAILS (I_CODE),
      CONSTRAINT MOBWSH_CANCEL_CAUS_FK
    FOREIGN KEY (CAUSE_ID)
    REFERENCES MOBWORKSHOP.GUARANTY_CANCEL_CAUSES (CAUSE_ID));
    i made  a button to show  (LOV) and when i press the putton it take about one minute to view the LOV

  • How to make my program faster?

    I have a program which produces two elements array. In normally the program ends in microseconds, however when I organize my program to send the array as a data to DAQ.mx write and the array will be the voltage output from my NI USB-6012 DAQ, my program ens in 40 seconds. How can I make my program faster? Is there any solution?
    I have attached the normal program and with DAQ.vis.
    Attachments:
    step step 1.vi ‏15 KB
    step step 2.vi ‏34 KB

    Program 1 runs 5 times and program 2 runs 41 times per loop. the total number of inner iterations is 25 vs. 1681 for a 67x difference.
    Program 1 and program 2 have no timing information, thus spin at a undefined rate.
    Program 2 does single point hardware IO and also has no timing information. The speed will depend on the hardware.
    Running at a hardware dependent rate is not a good idea in general, because the speed will vary with every change in hardware and is not deterministic. You don't even know what occurs first at each iteration: the input or the output.
    If speed is important, what you should do is use an improved variation (Yes, use FOR loops and ramps!) of program 1 to generate the final data array, then do a single "Nchan,Nsamp" IO, running input and output synchronized hardware timed off the same clock. This way you can select any acquisition speed up the the maximum supported by your DAQ hardware. It will be fast and at an exactly defined rate as it should be!
    Try it!
    I am not familiar with your hardware: USB-6012. can you give a link to the product page?
    LabVIEW Champion . Do more with less code and in less time .

  • Does Anybody Know how to make Safari 3 Faster?

    Does Anybody Know how to make Safari 3 a little bit faster for WIndows?

    Come on does anybody know plzz?

  • How to make Snow Leopard fast again?

    When I upgraded from Leopard to Snow Leopard about a year ago, I was amazed at how much faster Snow Leopard was. Everything was so fast and responsive.
    A year later and my iMac is running slow. What I'd like to know is, why? What is it that makes Snow Leopard run slower over time? How do you get that responsiveness back?

    See:
    Mac Maintenance Quick Assist,
    Mac OS X speed FAQ,
    Speeding up Macs,
    Macintosh OS X Routine Maintenance
    Essential Mac Maintenance: Get set up,
    Essential Mac Maintenance: Rev up your routines,
    Maintaining OS X, and
    Myths of required versus not required maintenance for Mac OS X .

  • How to make xmlType query faster..

    Hello,
    How do I make queries with extract in where clause faster. I do have a function based index on my xml_data column but even then the query takes a long time to
    execute.
    CREATE INDEX merch_id_idx ON xmltest
    (xml_data.extract('//MERCHANT_ID/text()').getStringVal());
    select *
    from xmltest e
    where e.xml_data.extract('//MERCHANT_ID/text()').getStringVal()= 'G000000002680'
    Thanks,
    Anna

    Hi Anna,
    Can you produce an explain plan for the query and show whether it is using the index or not? How many rows of data are you dealing with and how long is it taking to execute?

  • How to make download window open to front

    When I download a file, how can I make the download window automatically come to the front?

    THANK YOU! I don't know which idiot thought of removing the downloads window in favor of that ridiculous menu but I've been tearing my hair out trying to fix it. The old window has everything you need in one easy window while the menu requires multiple steps to check EACH download. I was ready to drop release 20 and go back to 19.

  • How to make JScrollPane scroll faster?

    Hi,
    I have tried to develop on a program to zoom in or zoom out the image�a graph which is plotted using the method draw from Graphics2D. In the program, I am given about 1000 points, which are supposed to be plotted one by one suing the draw method, which later form a graph.
    I have put the JPanel, where the output of the graph is displayed, into a JscrollPane to enable scrolling of large image. However, when I am trying to scroll the image, it happen to me that the scrolling is extremely slow. When I click at the scrolling bar to scroll down the image, it take some time before the image is scrolled down.
    My doubt will be is there any method to make the scrolling on the JscrollPane to become faster?does this involve double buffering?
    Thank you.

    This may not be the answer to your problem, but I thought I would throw it out there. One reason it might scroll slowly is because by default the JScrollPane only moves 1 pixel for every click of the scroll bar. You can adjust this by having your JPanel implement the Scrollable interface.
    Here is a code sample -
    // implement Scrollable interface
    public Dimension getPreferredScrollableViewportSize()
    return getPreferredSize();
    public int getScrollableBlockIncrement( Rectangle r, int orientation, int direction )
    return 10;
    public boolean getScrollableTracksViewportHeight()
    return false;
    public boolean getScrollableTracksViewportWidth()
    return false;
    public int getScrollableUnitIncrement( Rectangle r, int orientation, int direction )
    return 10;
    Whatever number you have your getScrollableUnitIncrement and getScrollableBlockIncrement methods return is how many pixels your component will scroll for each click of the scroll bar.
    Give this a try.

  • How to make cube retrieval faster

    Hello,
    I have an ASO cube with 12 dimensions. Only one of these dimensions is large (60K members) but there is a fair amount of data being loaded (5M). All of the dimensions are stored, with "scenario" being label-only.
    When using the Spreadsheet add in, it takes at around 10 seconds to drill down on dimensions.
    Any tips to make it faster? I've tried changing the pending cache limit but it still is slow.
    Thanks

    the best thing I can say would be to increase the aggregation .
    depending on how the dimensions look adding interm levels could speed up if they are large flat dimensions

  • How to make clips play faster/slower?

    Hi, I recorded a road while driving on it. I want to use it for the beginning of a video but I don't want it to play at real-time speed. I want it to move faster than real time. How can I make this happen on imovie? how do I compress the clip (about 10 minutes) into something more like 5 minutes? I don't want to cut the clip, I want to play the whole thing but I want it to just move faster. It would also be cool because this way I could also learn to make things go in slow motion.

    How can I make this happen on imovie?
    If you want to do this from within iMovie, use the previous version. Basically, playback speed can be modified by adding your video to an audio clip having a duration or selected segment duration for which you want the video to play and scaling it to the duration of the audio using the QT Pro "Add to Selection & Scale" Edit menu option. You can also reset the playback using the fee JES Deinterlacer utility. (Search the forum for URL to Karsten Schlüter's site area where he has documented many common "Tips and Tricks" for use with iMovie '08.)

  • How to make photoshop go faster, faster!?

    Right now I'm using a Mac G5 dual 1.8hz PowerPC with 2GB RAM, PS 7.0. My typical files are 400 - 500mb and can have as many as 500-600 layers. Pixel dimension is 5400 x 3150 pixels and after opening my lower left shows 64.9m/1.42 G. It takes a long time to open one of these files- about 3-4 minutes and even longer to save, about 4-5 minutes. Also while the file is open zooming and panning can be choppy and slow, with the monitor lagging behind with the refresh. I can even hear the hard drive going when zooming sometimes. Question is how can I speed up the opening, zooming, saving? I have on order a new Mac Pro 2.93 quad core with 16gb RAM, PS CS4. What else should I put into this to speed everything up? Thanks!

    this is very helpful thank you.
    I'm putting in the maximum ram possible for this machine- 16GB. I don't know how to improve that.
    I see it is also important to have a dedicated scratch disc, with nothing else on it. Adobe even recommends using a RAID array for this, so you are really talking about at least 2 drives just for the scratch disc. I was wondering if you could use an SSD for the scratch disc, like an Intel X25-M 80GB? These drives have very fast read speeds, although the write speed is not as good.

  • How to make download/documents & applications the norm. blue folder look ?

    I want these folders to be the plain blue folder look ( right now it has some covering the folder..PDF covering the download and documents and dictionary over the applications )... what do I change it back to the normal blue look.

    The combo update is supposed to install previous system updates. Well, at least that's how it usually works.
    However, if you look at the page with the standalone combo update to 10.5.5, where is says +System Requirements+, it says "Mac OS X 10.5.1 - Mac OS X 10.5.4". You have 10.5.nothing. So if that's not a typo, I guess you need to install 10.5.1 first. But it's not pointed out anywhere else. You'd think it would state specifically, "If you have the original 10.5 installation, you need to first install 10.5.1 before installing this update."
    If you were using Software Update, it should know this already and take care of installing the required updates in the correct sequence. In other words, it should not try to install 10.5.5 combo if 10.5.1 is required first.
    Also that message you quoted sounds like the update file is corrupted. It does not seem related to what version needs to be installed first.
    Here is the standalone updater for 10.5.1, in case you do need it.
    http://support.apple.com/downloads/MacOS_X_10_5_1Update

Maybe you are looking for

  • Finally upload/download BLOB solution in JSP??

    Hello there, greetings to forum, I am working on JSPs and Oracle 9i with Tomcat 4.1.29. Suppose we have the very simple example of a user who registers through an HTML form by entering his name, surname and his picture via the "Browse" field (input t

  • What is the basic requirement to use SIPServlet

    Hello Friends, I learnt SIPServlet through bea.com API documentation. I would like to develop a small application using SIPServlet, please tell me what is the basic requirements to use SIPServlet. How i can get the library for SIP Servlet. Is there a

  • What software do i need to upgrade my iMac 10.6.8 to in order to use iCloud?

    I recently joined iCloud and I need to make my iMac desktop compatible. I was told my the Apple store associate that I need Snow Leopard software and can purchase it online for $19.95. I did some research and am not sure if he gave me the correct ans

  • Exporting Image Sequence

    Hi, I'm using the oringal FCX and am going to make a slide show, displaying my porfolio of artwork in a jazzed up manner to impress potential art schools. I have 2 questions regarding playback/exporting. 1. when playing back the sequence, the image l

  • Nokia N95 Recorded Soundclips to PC

    Hi Guys, Would anyone know how I can transfer my recorded soudclips from my N95 to my PC? I use it to record guitar riffs & ideas and I'm afraid if I lose my phone, i'll lose all my soundlips! Thanks Simon Solved! Go to Solution.