Dynamic form taking a long time to generate

Hi all, I have a <cfoutput query="blah"> wrapped around a <cfform> which can retireve anything upto 200 rows from the datatbase... My problem is if I retrieve anything more than 30ish rows then my page takes ages to compile and will hang.  Can you guys take a look at my code and see if it can be improved or if I am doing anything wrong please ?  I inherited this code from the previous developer...
Many Thanks,
G
<!--- update previous address --->
<cfif isdefined("btnUpdAddr")>
<cfmodule name="updPrevAddr" address1="#form["address1#addrCount#"]#" address2="#form["address2#addrCount#"]#"
  town="#form["town#addrCount#"]#" county="#form["county#addrCount#"]#" postcode="#form["postcode#addrCount#"]#"
  residentfrom="#form["ataddrsince#addrCount#"]#" residentto="#form["ataddrto#addrCount#"]#"
  country="#form["country#addrCount#"]#" previousaddrid="#form.addrid#" applicationid="#form.appid#">
</cfif>
<!--- loop round and get addressess --->
<cfoutput query="getPreviousAddresses">
   <cfform name="fmAddr#addrCount#" action="previousaddresses.cfm" class="css_fm1" onSubmit="return FormAddrValidate('#addrCount#')">
    <fieldset>
    <legend>Address #addrCount#</legend>
    <p><label for="address1#addrCount#" class="txtlabel"><span class="reqd">*</span> Address line 1</label>
    <cfinput id="address1#addrCount#" name="address1#addrCount#" type="text" class="txt" title="Previous address" value="#address1#" required="Yes" validate="regex" pattern="(^[A-Z0-9\(\)\-/'&]+$)|(^[A-Z0-9\(\)\-/'&][A-Z 0-9\(\)\-/'&]*[A-Z0-9\(\)\-/'&]$)" message="Please enter a valid Address line 1." maxlength="60" onChange="javascript:this.value=this.value.toUpperCase();trim(this);" /></p>
    <p><label for="address2#addrCount#" class="txtlabel">Address line 2</label>
    <cfinput id="address2#addrCount#" name="address2#addrCount#" type="text" class="txt" title="Previous address" value="#address2#" validate="regex" pattern="(^[A-Z0-9\(\)\-/'&]+$)|(^[A-Z0-9\(\)\-/'&][A-Z 0-9\(\)\-/'&]*[A-Z0-9\(\)\-/'&]$)" message="Please enter a valid Address line 2." maxlength="60" onChange="javascript:this.value=this.value.toUpperCase();trim(this);" /></p>
    <p><label for="town#addrCount#" class="txtlabel"><span class="reqd">*</span> Town</label>
    <cfinput id="town#addrCount#" name="town#addrCount#" type="text" class="txt" title="Previous town" value="#town#" required="Yes" validate="regex" pattern="(^[A-Z0-9\(\)\-/'&]+$)|(^[A-Z0-9\(\)\-/'&][A-Z 0-9\(\)\-/'&]*[A-Z0-9\(\)\-/'&]$)" message="Please enter a valid Town." maxlength="30" onChange="javascript:this.value=this.value.toUpperCase();trim(this);" /></p>
    <p><label for="county#addrCount#" class="txtlabel">County</label>
    <cfinput id="county#addrCount#" name="county#addrCount#" type="text" class="txt" title="Previous county" value="#county#" required="No" validate="regex" pattern="(^[A-Z0-9\(\)\-/'&]+$)|(^[A-Z0-9\(\)\-/'&][A-Z 0-9\(\)\-/'&]*[A-Z0-9\(\)\-/'&]$)" message="Please enter a valid County." maxlength="30" onChange="javascript:this.value=this.value.toUpperCase();trim(this);" /></p>
    <!--- COUNTRY --->    
    <p><label for="country#addrCount#" class="txtlabel"><span class="reqd">*</span> Country</label>
    <cfmodule name="hccpass.getISOCountries" queryname="getISOCountries">
    <cfselect id="country#addrCount#" name="country#addrCount#" title="Previous country" query="getISOCountries" display="country" value="code" size="1" selected="#countryiso#" message="Please select a Country." required="Yes">
     <cfif countryiso eq "">
      <option value="0" selected></option>
     </cfif>
    </cfselect></p>
    <p><label for="postcode#addrCount#" class="txtlabel">Postcode</label>
    <cfinput id="postcode#addrCount#" name="postcode#addrCount#" type="text" title="Previous postcode" value="#postcode#" maxlength="30" size="30" message="Please enter a valid Postcode." onChange="javascript:this.value=this.value.toUpperCase();trim(this);" /></p>
    <p><label for="ataddrsince#addrCount#" class="txtlabel"><span class="reqd">*</span> At address from</label>
    <cfinput id="ataddrsince#addrCount#" name="ataddrsince#addrCount#" type="text" title="At address from date mm/yyyy" value="#residentfrom#" maxlength="7" size="7" mask="99/9999" required="Yes" validate="regex" pattern="^(0[1-9]|1[012])\/(19|20)\d\d$" message="Please enter a valid At address from (mm/yyyy)." />
    <div class="checkbox_label">  <span class="reqd">*</span> to  </div>
    <cfinput id="ataddrto#addrCount#" name="ataddrto#addrCount#" type="text" title="At address to date mm/yyyy" value="#residentto#" maxlength="7" size="7" mask="99/9999" required="Yes" validate="regex" pattern="^(0[1-9]|1[012])\/(19|20)\d\d$" message="Please enter a valid At address to (mm/yyyy)." /></p>
    <!--- hidden values for update --->
    <input type="hidden" name="addrCount" value="#addrCount#">
    <input type="hidden" name="appid" value="#appid#">
    <input type="hidden" name="applicantid" value="#applicantid#">
    <input type="hidden" name="addrid" value="#previousaddressesid#">
    <!--- no update option for read only user --->
    <cfif session.roleID neq 3 and tAllowAmend neq "N">
     <p><input type="submit" name="btnUpdAddr" class="fmbutton" title="Save this address" value="Save address" />
     <input type="button" name="btnDeleteAddr" class="fmbutton" title="Delete address" value="Delete" onclick="javascript: if (confirm('You are about delete a previous address. Click OK to continue.')) location='previousaddresses.cfm?appid=#appid#&applicantid=#applicantid#&prevaddrid=#previ ousaddressesid#'"/>
     <input type="reset" name="btnreset" class="fmbutton" title="Reset" /></p>
    </cfif>
    </fieldset>
    <cfset addrCount = addrCount+1> 
   </cfform>
</cfoutput>

Well the first thing that jumps out at me is that you're making a new form for every row in the query -- and since you're using cfform you're generating a whole heck of a lot of script (generated by using cfform) so I can see that slowing things down.
I think this is something better suited for a table which displays the records and links to an 'edit' page for an individual record instead of creating 200+ forms on one page.

Similar Messages

  • Dynamic streaming taking too long time to switch video using NetStreamPlayOptions in AS3

    Hi,
         Can any one tell me why dynamic streaming taking too much time to switch video from lower bit rate to higher bit rate and vice versa.
    I am doing dynamic streaming in following ways -
    var param:NetStreamPlayOptions = new NetStreamPlayOptions();
    param.oldStreamName=oldStream();
    param.streamName=newStream()
    param.transition=NetStreamPlayTransitions.SWITCH;
    ns.play2(param);
    ns.addEventListener(NetStatusEvent.NET_STATUS, switchMode);
    I am using duel buffering and that is 3 seconds when video starts and 10 seconds when "NetStream.Buffer.Full". Video taking approximately 30-50 seconds to switch video and when I am calling the above code.
    Thanks & regards
    Sunil Kumar

    Hi Sunil,
    Was my link useful to you? If you have not gone through the link which I suggested just go through the below lines it may help you:
    For a faster switch with optimal keyframe interval and client-side buffer, when Flash Media Server (FMS) receives a "switch" command, the server waits for a keyframe to switch to the new stream. FMS looks for the keyframes in the new stream in chunks equal to the client's buffer size(NetStream.bufferTime), so having a client buffer larger than the keyframe interval of the stream would help with a fast switch response time from the server—in other words, a shorter delay between a "switch" call to the server and the client receiving bits from the new stream in response.
    Following values are considered most optimal:
    Keyframe interval: 5 sec.
    Client-side buffer: 6–10 sec.
    So to maintain optimal keyframe interval you can go for fresh encoding of your videos which will give you a chance to set keyframe interval or if you dont want to do this then I would suggest you to increase the client-side buffer.
    Regards,
    Amit

  • Forms taking very long time to Open

    Hello Everyone,
    can i know the reasons why forms are opening very late. Its taking very very long time to open.
    Regards
    Rajesh

    Hi,
    Have a look at this post :- Very large Input form-how to handle
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Explain plan generating it self taking very long time !!! What to do ?

    Hi,
    I am trying to generate explain plan for a query which is running more than 2 hours. I am trying to generate explain plan for query by "explin plan for select ..." but it self is taking very long time.
    Kindly suggest me how to reduce time for explain plan ? Secondly why explain plan itself taking very long time ?
    thanks & regards
    PKP

    Just guessing here, but I've experienced this behaviour when I did two explain's within a second. This is because a plan is identified by a statement_id or, if you don't provide a statement_id, by the timestamp (of DATE datatype). So if you execute two explain plans within the second (using a script), it has two sets of data with the same primary key. The hierarchical query that needs to be executed to provide you the nicely indented text, will exponentially expand in this case.
    Maybe time to clean up your plan_table ?
    Hope this helps.
    Regards,
    Rob.

  • My external library 100 GB on a 2TB drive is taking a long time to open.

    Hey there,
    I recently moved my library to an external drive.  When I tried to load the external drive, it said it needed to repair and I let it happen overnight because it was taking a long time.
    Now it seems to just freeze when I try to load the external library.  Can someone let me know if there is something I can do to make this process speed up?  Should I move some of my projects to another library and keep it off-line?
    Thanks,
    Austin

    Could it possibly be due to videos stored in the aperture library?  I think one of the folders has multiple GB of video...  Just a thought.
    If Aperture is freezing on opening, this can be caused by corrupted or incompatible media, but it would not explain the original error message your reported - "permissions".
    When the repair finishes, try to launch Aperture with the Shift-key held down. This will defer the generation of previews. If media cannot beprocessed, Aperture will hang, when it tries to generate the previews for those images or videos. If you can get Aperture to launch after deferring the preview generation, you could open the Activity window (Window > Show Activity) and then selectively try to generate previews for your last imported images and videos  (Photos > update preview). The Activity window will show, what is currently processed, and perhaps you can spot, which of the files is causing the hang.

  • Computer still taking a long time to boot

    I have a late 2013 21.5” iMac (Model: ME087LL/A) with a 1TB hard drive (5400 rpm).  I just switch from Windows to Mac, so I tried to keep everything as simple as possible on the transfer of files.  I had only added Kaspersky Antivirus and Western Digital Tools. 
    Boot times and operation seemed normal so I transferred my music, pictures, and some files.  My computer started running slow with just one user and started taking a long time to boot.  I found that since I added about 24,000 pictures to iPhoto, the Mac was trying to send all these pictures to iCloud in the background.  I stopped using iCloud for iPhoto and that seemed to speed up the normal operation once the computer is booted. 
    The computer still seemed to take a very long time to boot.  It would now take 3 minutes to get from turning it on to being able to use Safari.  I uninstalled Kaspersky Antivirus and Western Digital Tools using each company’s uninstallers so I know they are completely off the computer. 
    Any ideas on how to get back to the fast boot time?  I am only using about 150 GBs of the 1 T drive so I don’t think that is causing the issue.  What should I expect for a boot time on a brand new Late 2013 iMac?  Or should I try to re-install Maverick and try to get a fresh start?
    Any advice would be appreciated so I don’t feel like I made the wrong choice going to Mac.  I'm kicking myself because the computer was so fast when I just got it.

    Seventy one thanks for trying to help me out.  I really appreciate it.  Log is below.  You are absolutely right. Kaspersky and WD look like they still have something (as well as google??).  Is there anything else that stands out?  How would I go about getting rid of them?  Re-Install?  Clean Re-Install?
    EtreCheck version: 1.9.12 (48)
    Report generated June 16, 2014 at 6:19:51 PM EDT
    Hardware Information:
              iMac (21.5-inch, Late 2013) (Verified)
              iMac - model: iMac14,3
              1 2.9 GHz Intel Core i5 CPU: 4 cores
              8 GB RAM
    Video Information:
              NVIDIA GeForce GT 750M - VRAM: 1024 MB
                        iMac 1920 x 1080
    System Software:
              OS X 10.9.3 (13D65) - Uptime: 0 days 0:8:41
    Disk Information:
              APPLE HDD HTS541010A9E662 disk0 : (1 TB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) / [Startup]: 999.35 GB (847.45 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
    USB Information:
              Apple Inc. BRCM20702 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Inc. FaceTime HD Camera (Built-in)
    Thunderbolt Information:
              Apple Inc. thunderbolt_bus
    Gatekeeper:
              Mac App Store and identified developers
    Kernel Extensions:
              [loaded] com.kaspersky.kext.klif (3.0.3a40) Support
              [loaded] com.kaspersky.nke (1.6.3a13) Support
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist Support
              [loaded] com.microsoft.office.licensing.helper.plist Support
              [loaded] com.westerndigital.ErasePrivilegedHelper.plist Support
    User Launch Agents:
              [loaded] com.google.keystone.agent.plist Support
    User Login Items:
              None
    Internet Plug-ins:
              SharePointBrowserPlugin: Version: 14.4.2 - SDK 10.6 Support
              FlashPlayer-10.6: Version: 14.0.0.125 - SDK 10.6 Support
              Flash Player: Version: 14.0.0.125 - SDK 10.6 Support
              QuickTime Plugin: Version: 7.7.3
              Default Browser: Version: 537 - SDK 10.9
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 2.0 - SDK 10.9
              AppleAVBAudio: Version: 203.2 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins:
              Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    3rd Party Preference Panes:
              Flash Player  Support
    Time Machine:
              Skip System Files: NO
              Mobile backups: OFF
              Auto backup: YES
              Volumes being backed up:
                        Macintosh HD: Disk size: 930.71 GB Disk used: 141.47 GB
              Destinations:
                        Mac Backup [Local] (Last used)
                        Total size: 2 
                        Total number of backups: 5
                        Oldest backup: 2014-06-08 00:03:53 +0000
                        Last backup: 2014-06-16 03:07:06 +0000
                        Size of backup disk: Adequate
                                  Backup size 2  > (Disk used 141.47 GB X 3)
              Time Machine details may not be accurate.
              All volumes being backed up may not be listed.
    Top Processes by CPU:
                   2%          WindowServer
                   1%          fontd
                   0%          hidd
                   0%          dpd
    Top Processes by Memory:
              98 MB          Finder
              74 MB          WindowServer
              66 MB          ocspd
              66 MB          mds_stores
              66 MB          Dock
    Virtual Memory Information:
              5.37 GB          Free RAM
              1.69 GB          Active RAM
              233 MB          Inactive RAM
              731 MB          Wired RAM
              233 MB          Page-ins
              0 B          Page-outs

  • Taking very long time to pick the file from internal deliviery channel fold

    Hi B2B gurus,
    For one of our trading partner we are testing an AS2 connectivity, so we are sending a 850 po's through internal deliviery channel(create a folder in-house), but while placing the 850 in a internal folder, its taking very long time to pick the file form internal folder
    Could you please help me to resolve this issue?
    regards

    Hi Suni,
    Have you specified the polling interval in Transport Server configuration? By default polling interval is 60 seconds.
    What is the size of the file being picked?
    Regards,
    Anuj

  • Discoverer report taking too long time to open.

    HI,
    Discovere reports are taking too long time to open. Please help to resolve this.
    Regards,
    Bhatia

    What is the Dicoverer and the Application release?
    Please refer to the following links (For both Discoverer 4i and 10g). Please note that some Discoverer 4i notes also apply to Discoverer 10g.
    Note: 362851.1 - Guidelines to setup the JVM in Apps Ebusiness Suite 11i and R12
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=362851.1
    Note: 68100.1 - Discoverer Performance When Running On Oracle Applications
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=68100.1
    Note: 465234.1 - Recommended Client Java Plug-in (JVM/JRE) For Discoverer Plus 10g (10.1.2)
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=465234.1
    Note: 329674.1 - Slow Performance When Opening Plus Workbooks from Oracle 11.5.10 Applications Home Page
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=329674.1
    Note: 190326.1 - Ideas for Improving Discoverer 4i Performance in an Applications 11i Environment
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=190326.1
    Note: 331435.1 - Slow Perfomance Using Disco 4.1 Admin/Desktop in Oracle Applications Mode EUL
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=331435.1
    Note: 217669.1 - Refreshing Folders and opening workbooks is slow in Apps 11i environment
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=217669.1

  • Taking too long time to get LOV

    HI,
    I have created a customer folder in which the query retuns 0.5 million records.
    I have created a item class in airline_name column which is being used in the worksheet as parameter.
    The problem is it is taking too long time near about 2 min to get LOV when the user wants to search the exact name.
    Thanks,
    Himanshu Tiwari

    Hi,
    Usually, you should not use the folder that the report is based on to define the LOV. You should use a separate folder to define the LOV that is optimised to return the content of the LOV.
    Rod West

  • Discoverer reports taking a long time!!!

    Hi all,
    One of our clients is complaining that the discoverer reports are taking a long time to run for the last few days, the report used to take 30 minutes before but now is running for hours!!
    I have checked the SGA and I have killed the idle sessions but still there was no improvement in the performance.
    The version of BI discoverer is 10 and database also is 10g and the platform is win server 2003.
    I have checked the forums and they talk about explain plan and tkprof and other commands, but my problem is that i am unable to find the query that discoverer is running i mean once the report is clicked the query runs and gives the estimate time it would take. can some one tell me where this query is stored so that i can check this query,
    Also there were no changes made in the query or to the database.
    The temp space fills up 100%, i increased the size of temp space but still it goes to 100% also i noticed that the CPU utilisation goes to 100%
    i also increased the SGA but still no go.
    can someone kindly help me as to what could be causing this problem
    also kindly guide me to some good documents for tuning the discoverer.
    thanks in advance,
    regards,
    Edited by: user10243788 on Jan 4, 2010 12:47 AM

    Hi,
    The fact that the report used to work fast and now not can be related to many things but my guess is that the database statistics were changed and so the explain plan has changed.
    This can be done due to change in the volume of the data that crossed a level were oracle optimizer change the behavior but it can be other things as well.
    Anyway it is not relevant since it will be easier to tune the SQL than to find what have changed.
    In order to find whether the problem is with the discoverer or in the SQL extract the SQL as described above and run it in SQL tool (SQL Plus, TOAD, SQL Developer and so on).
    The best way to get to the problem is run a trace on your session and then use the TKPROF command to translate it to a text file you can analyze - you can assist your DBA team they should have no problem doing that.
    By doing that you will get the problematic statements/ functions/ procedures that the report uses.
    From there you can start working on improving the performance.
    Performance is expertise for itself so i'm sorry i don't know to tell you where to start from, I guess the start will be from understanding the meaning of the explain plan.
    Hope I helped a little although I wish Ii had a magic answer for you
    BTW, until you resolve that problem you can use the discoverer scheduler to run the reports in the background and so the users will get the data.
    Tamir

  • Time Machine Taking a Long Time to Index / Back Up

    Hi everyone.
    I noticed this on the latest backup to my Time Capsule device.  I'm backing up over a WiFi connection to a time capsule device.  It is taking a long time to index the backup.  Here's the code from the latest backup.
    10/17/12 9:43:03.799 PM com.apple.backupd: Starting standard backup
    10/17/12 9:43:04.091 PM com.apple.backupd: Attempting to mount network destination URL: afp://Michael%20Payne@Extreme%20Pleasantville._afpovertcp._tcp.local/Time%20Mac hine%20Backups
    10/17/12 9:43:12.657 PM com.apple.backupd: Mounted network destination at mountpoint: /Volumes/Time Machine Backups using URL: afp://Michael%20Payne@Extreme%20Pleasantville._afpovertcp._tcp.local/Time%20Mac hine%20Backups
    10/17/12 9:43:34.015 PM com.apple.backupd: QUICKCHECK ONLY; FILESYSTEM CLEAN
    10/17/12 9:43:37.440 PM com.apple.backupd: Disk image /Volumes/Time Machine Backups/Michael’s MacBook Pro.sparsebundle mounted at: /Volumes/Time Machine Backups 1
    10/17/12 9:43:37.459 PM com.apple.backupd: Backing up to: /Volumes/Time Machine Backups 1/Backups.backupdb
    10/17/12 9:45:23.296 PM com.apple.backupd: 500.1 MB required (including padding), 3.27 GB available
    10/17/12 9:46:48.844 PM com.apple.backupd: Copied 1436 files (3.4 MB) from volume Macintosh HD.
    10/17/12 9:46:51.897 PM com.apple.backupd: 448.1 MB required (including padding), 3.27 GB available
    10/17/12 9:46:51.898 PM com.apple.backupd: Waiting for index to be ready (100)
    10/17/12 9:47:53.681 PM com.apple.backupd: Waiting for index to be ready (100)
    10/17/12 9:48:55.642 PM com.apple.backupd: Waiting for index to be ready (100)
    10/17/12 9:49:56.511 PM com.apple.backupd: Waiting for index to be ready (100)
    10/17/12 9:50:56.564 PM com.apple.backupd: Waiting for index to be ready (100)
    10/17/12 9:51:57.643 PM com.apple.backupd: Waiting for index to be ready (100)
    10/17/12 9:52:57.903 PM com.apple.backupd: Waiting for index to be ready (100)
    10/17/12 9:53:59.341 PM com.apple.backupd: Waiting for index to be ready (100)
    10/17/12 9:55:01.281 PM com.apple.backupd: Waiting for index to be ready (100)
    10/17/12 9:56:03.171 PM com.apple.backupd: Waiting for index to be ready (100)
    10/17/12 9:57:03.966 PM com.apple.backupd: Waiting for index to be ready (100)
    10/17/12 9:58:33.083 PM com.apple.backupd: Copied 824 files (1.2 MB) from volume Macintosh HD.
    10/17/12 9:58:40.359 PM com.apple.backupd: Starting post-backup thinning
    10/17/12 9:59:51.851 PM com.apple.backupd: Deleted /Volumes/Time Machine Backups 1/Backups.backupdb/Michael’s MacBook Pro/2012-10-16-213620 (5.6 MB)
    10/17/12 10:00:17.440 PM com.apple.backupd: Deleted /Volumes/Time Machine Backups 1/Backups.backupdb/Michael’s MacBook Pro/2012-10-16-113505 (1.6 MB)
    10/17/12 10:00:30.046 PM com.apple.backupd: Deleted /Volumes/Time Machine Backups 1/Backups.backupdb/Michael’s MacBook Pro/2012-10-16-103509 (1.6 MB)
    10/17/12 10:00:43.781 PM com.apple.backupd: Deleted /Volumes/Time Machine Backups 1/Backups.backupdb/Michael’s MacBook Pro/2012-10-16-093513 (1.3 MB)
    10/17/12 10:00:43.781 PM com.apple.backupd: Post-back up thinning complete: 4 expired backups removed
    10/17/12 10:00:45.207 PM com.apple.backupd: Backup completed successfully.
    10/17/12 10:00:56.988 PM com.apple.backupd: Ejected Time Machine disk image.
    10/17/12 10:00:57.550 PM com.apple.backupd: Ejected Time Machine network volume.
    I am just curious as to why this is, and what I might do to fix it.  I did see one suggestion in another website suggesting diabling spolight indexing of the backup image with sudo mdutil -i off /Volumes/Time Machine Backups, but don't know where to type that in.  It then states to reenable it, but don't know where to type that in, either.  Any advice would be helpful.  I did run a verification not too long ago, and here's that code.
    10/14/12 3:44:14.289 PM com.apple.backupd: Backup verification requested by user.
    10/14/12 3:44:41.503 PM com.apple.backupd: Running backup verification
    10/14/12 4:04:31.602 PM com.apple.backupd: Backup verification passed!
    If any of you have or had a similar problem, I'd appreciate your help.  For the time being, I may just disable time machine during the evening, and only have it run during the day when I'm at work.

    Is your sig still current (10.7.3)? Or did you update to 10.7.5? Because 10.7.5 had a Spotlight/Time Machine bug that slowed down a lot of backups. If that's what it is, there's now a 10.7.5 Supplemental Update that fixes the slow Time Machine problem.
    If it isn't 10.7.5, I don't know what the problem might be.

  • Report script taking very long time to export in ASO

    Hi All,
    My report script is taking very long time to execute and finally a message appears as timed out.
    I'm working on ASO Cubes and there are 14 dimensions for which i need to export all data for all the dimensions for only one version.
    The data is very huge and the member count in each dimension is also huge, so which is making me difficult to export the data.
    Any suggestions??
    Thanks

    Here is a link that addresses several ways to optimize your report script. I utilize report scripts for Level 0 exports in an ASO environment as well, however the majority of our dimemsions are attribute dimensions.
    These are the most effective solutions we have implemented to improve our exports via report scripts:
    1. Make sure your report script is written in the order of how the Report Extractor retrieves data.
    2. Supressing Zero and Missing Data
    3. We use the LINK command within reports for some dimensions that are really big and pull at Level 0
    4. Using Symmetric reports.
    5. Breakout the exports in multiple reports.
    However, you may also consider some additional solutions outlined in this link:
    1. The MDX optimizing commands
    2. Back end system settings
    http://download.oracle.com/docs/cd/E12825_01/epm.111/esb_dbag/drpoptim.htm
    I hope this helps. Maybe posting your report script would also help users to provide feedback.
    Thanks
    Edited by: ronnie on Jul 14, 2011 9:25 AM
    Edited by: ronnie on Jul 14, 2011 9:53 AM

  • My email all of sudden is taking a long time to open

    Since last week my msn.com email is taking a long time to open I haven't changed a thing and I have had this email since 1998

    How large is your hard drive and how much hard drive space do you have left?
    Which Macbook Pro do you have?
    Which os & version are you using?

  • My mac pro is taking a long time to open files

    When I rey and open applications like Finder, it is taking a long time to open or it hangs how can I fix this
    I have OS10.7.2 and 300GB left out of 500GB.
    Mac book peo 17
    Message was edited by: waldoamt

    How large is your hard drive and how much hard drive space do you have left?
    Which Macbook Pro do you have?
    Which os & version are you using?

  • Hyperion Report taking a long time to process local query

    Hi All,
    I am trying to run a report on Hyperion IR 9.3.1. I am facing a performance issue with this report. I am joining 13 tables using full outer join. Each table is having data about 900 rows and the final output i am getting from the local query is about 11000 rows. This local query is taking a long time to get process about 3 - 5 minutes. I suppose it should run with in 30 sec as number of rows are very few. Can anyone tell me what is the problem with this local query and how the performance of the report can be increased?
    Thanks in advance.
    Regards
    Ujjawal

    Be aware that XP takes approx 1gb of your RAM leaving you with 1gb for whatever else is running. MS Outlook is also a memory hog.
    To check Virtual Memory Settings:
    Control Panel -> System
    System Properties -> Advanced Tab -> Performance Settings
    Performance Options -> Adavanced Tab - Virtual Memory section
    Virtual Memory -
    what are
    * Initial Size
    * Maximum Size
    In a presentation at one of the Hyperion conferences years ago, Mark Ostroff suggested that the initial be set to the same as Max. (Max is typically 2x physical RAM)
    These changes may provide some improvement.

Maybe you are looking for

  • Itunes doesn't work, can't uninstall, or reinstall, or sync OR ANYTHING!!

    I have been battling this problem for MONTHS and as hard as I try to find information or support, NOTHING CAN FIX THIS. I just want to be able to sync things to my ipod AND ACTUALLY USE IT AGAIN. When I go to file sync, it's grey, and I can't select

  • When I try to download a e-book I get a error message

    When I click the open button when trying to download a e-book, the message says, Adobe reader could not open 'name of book [1].acsm' because it is either not a supportrd file type oe because the file has been damaged(for exapmle it was an e-mailattac

  • Generate dynamic objects in Flash

    I'd like to use a conditional loop to generate objects dinamically and i'd like to know if it is possible to do this in Flash. I try to explain better what i want to do; i have to let users to choose a number of balls to display on the stage, somethi

  • Strange thing in division - star symbol instead of number

    Hi, here is a piece of code: data zkbetr like KONV-KBETR. zkbetr = konv-kbetr / 10. "value of konv-kbetr is 210.00 at this step, I see it in debugger result value of zkbetr is * instead of 21 any ideas why I have this star symbol? Regards, Mindaugas

  • My photoshop elements 9 has suddenly stopped working

    ive been using photoshop elements 9 for some time now all ok, but after my pc crashed i cant open it anymore?? it comes up with a box saying " unable to continue because of a hardware or system error, sorry but this error is unrecoverable". ive tried