AE CC preformance

Hello.  This is my first time asking a questions here on the forums. You usually cover all the questions I would ever want, but thought I would ask since i have a question specific to my machine specs. I have general question about AE performance.  At work, I just got a new machine that is very fast, yet AE struggles previewing a single frame on quarter resolution.
Here are the system specs:
Windows 7 Pro 64bit on a SSD harddrive
32 GB of Ram
NVIDIA GeForce GTX 650 with 4GB of ram on it
Separate WD terabyte harddrive for disk cache
Intel Core i7 @ 3.4 GHZ
I have loaded AE CC and it starts within 2 seconds. I load my local aep file, and it takes another few seconds. However, Ram previewing takes forever, around 20 seconds per frame.  The footage is under 100mb, so I am dumbfounded. The only effect I am using is a luma map created by a fractal. I tried resetting the preferences by holding Ctrl+Alt+Shift, but AE loads too fast, I can't get the dialog box to appear. (Any way to reset without using that method?)
Any suggestions for preferences that would capitalize on the ram and system power of this machine?
Thanks.

Thank you Rick. I tried the following in response to your's and Szalam's replies:
I examined if the PSD footage was the culprit, by replacing with a simple JPG. It seemed to help a bit, as the file size is much smaller.  Still I wanted to see if it could be quicker as I need the PSD layers for the project.
As for the Cores being used, I see the processes being used, however when looking at the performance of the computer, only 1% of the total available processing power is even being used, including all other system processes.
I did mean Luma Matte, I must have swapped the terms in my brain as I was typing, sorry for the confusion.
As for fractal, I specifically used a fractal noise on a solid, and tinted it from black to white to achieve a fade that had some randomness in transition. 
I have tried the keyboard mash suggested. If I press before double clicking, I do not get the image you posted, instead I get another windows dialog box asking me about modifying the shortcut. If I press the keys right after I doubeclick, nothing happens and AE loads normally.  I have also tried to delete the text file that holds my preferences, but a new one is made with the same prefs when I start AE again.
As for comment 2, even if I tell AE to use 6 cores and 24gb of ram, is there some other limiting factor causing it to use hardly anything as seen in the task manager? I would like to take full advantage of this machine, if there is anything else I can do. 
Thank you again for your comments, much appreciated.

Similar Messages

  • My 3rd iphone. 3GS I did not buy from an apple store, how do I register this serial number with my apple account? it is already sync to it and will preform every function except email to my home computer. It says apple ID disabled

    My 3rd iphone is a 3GS. I did not buy this one from the apple store, how do I register this serial number with my apple account? it is already sync'd and it and will preform every function except email to my home computer. It says apple ID disabled, also will not update my apps, same promt apple id disabled.
    anyone know where I can go to register this phone? Thanks

    https://register.apple.com

  • How can you make one button preform different actions in Xcode?

    How can you make one button "preform a click" and "orderfront"? Is that possible? Because what I am doing is making a welcome window to my application for Mac OS X 10.6, and I have two buttons in that window, one says "Connect" which connects a a WebView to a url and the other button opens up the main window. So how can I a make a button do multiple things at once??

    Ah - If you are just using bindings between various objects from Interface Builder, you can reduce your application code a bit (sometimes quite a bit), but there is only so far you can go. Typically variables and routines are defined in your application that Interface Builder hooks into, so that your application code (usually Objective-C, but can be others) can use these variables and routines to determine what is happening in the user interface.
    I'm not sure how up-to-date the project code is (or what programming code you are familiar with), but you can take a look at Apple's Cocoa Application Tutorial to see what is (usually) involved in creating an application.

  • Using a existing sting to preform a function on a list of computers

    I know this test works fine
    $computers
    = "S2008C1","S2008C1","S2008C3"
    Get-WmiObject
    -Class win32_bios
    -cn $computers
    |
    Format-table
    __Server,
    Manufacturer,
    Version -AutoSize
    It produces
    __SERVER Manufacturer             Version        
    S2008C1  American Megatrends Inc. VRTUAL - 5001223
    S2008C1  American Megatrends Inc. VRTUAL - 5001223
    S2008C3  American Megatrends Inc. VRTUAL - 5001223
    however when I have the user input the computer names (see screen shot below) it does not pull any of the info for the computers in the list.   I know the variable has the correct list as it print the list to the console but it will not perform any
    functions.  I have tried this using several methods. I am just trying to relay I have done my best to do my homework.
    The part that is not working is the last 3 lines below.  By not working i meant it does nothing.
    Thanks 
    function Read-MultiLineInputBoxDialog([string]$Message, [string]$WindowTitle, [string]$DefaultText)
    <#
    .SYNOPSIS
    Prompts the user with a multi-line input box and returns the text they enter, or null if they cancelled the prompt.
    .DESCRIPTION
    Prompts the user with a multi-line input box and returns the text they enter, or null if they cancelled the prompt.
    .PARAMETER Message
    The message to display to the user explaining what text we are asking them to enter.
    .PARAMETER WindowTitle
    The text to display on the prompt window's title.
    .PARAMETER DefaultText
    The default text to show in the input box.
    .EXAMPLE
    $userText = Read-MultiLineInputDialog "Input some text please:" "Get User's Input"
    Shows how to create a simple prompt to get mutli-line input from a user.
    .EXAMPLE
    # Setup the default multi-line address to fill the input box with.
    $defaultAddress = @'
    John Doe
    123 St.
    Some Town, SK, Canada
    A1B 2C3
    $address = Read-MultiLineInputDialog "Please enter your full address, including name, street, city, and postal code:" "Get User's Address" $defaultAddress
    if ($address -eq $null)
    Write-Error "You pressed the Cancel button on the multi-line input box."
    Prompts the user for their address and stores it in a variable, pre-filling the input box with a default multi-line address.
    If the user pressed the Cancel button an error is written to the console.
    .EXAMPLE
    $inputText = Read-MultiLineInputDialog -Message "If you have a really long message you can break it apart`nover two lines with the powershell newline character:" -WindowTitle "Window Title" -DefaultText "Default text for the input box."
    Shows how to break the second parameter (Message) up onto two lines using the powershell newline character (`n).
    If you break the message up into more than two lines the extra lines will be hidden behind or show ontop of the TextBox.
    .NOTES
    Name: Show-MultiLineInputDialog
    Author: Daniel Schroeder (originally based on the code shown at http://technet.microsoft.com/en-us/library/ff730941.aspx)
    Version: 1.0
    #>
    Add-Type -AssemblyName System.Drawing
    Add-Type -AssemblyName System.Windows.Forms
    # Create the Label.
    $label = New-Object System.Windows.Forms.Label
    $label.Location = New-Object System.Drawing.Size(10,10)
    $label.Size = New-Object System.Drawing.Size(280,20)
    $label.AutoSize = $true
    $label.Text = $Message
    # Create the TextBox used to capture the user's text.
    $textBox = New-Object System.Windows.Forms.TextBox
    $textBox.Location = New-Object System.Drawing.Size(10,40)
    $textBox.Size = New-Object System.Drawing.Size(575,200)
    $textBox.AcceptsReturn = $true
    $textBox.AcceptsTab = $false
    $textBox.Multiline = $true
    $textBox.ScrollBars = 'Both'
    $textBox.Text = $DefaultText
    # Create the OK button.
    $okButton = New-Object System.Windows.Forms.Button
    $okButton.Location = New-Object System.Drawing.Size(415,250)
    $okButton.Size = New-Object System.Drawing.Size(75,25)
    $okButton.Text = "OK"
    $okButton.Add_Click({ $form.Tag = $textBox.Text; $form.Close() })
    # Create the Cancel button.
    $cancelButton = New-Object System.Windows.Forms.Button
    $cancelButton.Location = New-Object System.Drawing.Size(510,250)
    $cancelButton.Size = New-Object System.Drawing.Size(75,25)
    $cancelButton.Text = "Cancel"
    $cancelButton.Add_Click({ $form.Tag = $null; $form.Close() })
    # Create the form.
    $form = New-Object System.Windows.Forms.Form
    $form.Text = $WindowTitle
    $form.Size = New-Object System.Drawing.Size(610,320)
    $form.FormBorderStyle = 'FixedSingle'
    $form.StartPosition = "CenterScreen"
    $form.AutoSizeMode = 'GrowAndShrink'
    $form.Topmost = $True
    $form.AcceptButton = $okButton
    $form.CancelButton = $cancelButton
    $form.ShowInTaskbar = $true
    # Add all of the controls to the form.
    $form.Controls.Add($label)
    $form.Controls.Add($textBox)
    $form.Controls.Add($okButton)
    $form.Controls.Add($cancelButton)
    # Initialize and show the form.
    $form.Add_Shown({$form.Activate()})
    $form.ShowDialog() > $null # Trash the text of the button that was clicked.
    # Return the text that the user entered.
    return $form.Tag
    Clear-Host
    $pcnamelist = Read-MultiLineInputBoxDialog -Message "PC NAME LIST" -WindowTitle "Multi Line Example" -DefaultText "Enter PC name(s) each PC must be on its own line and no spaces"
    if ($pcnamelist -eq $null) { Write-Host "You clicked Cancel" }
    else {
    # $pcnamelist = $pcnamelist -replace '(^\s+|\s+$)','' -replace '\s+',' '
    Write-Host "You entered the following text:
    $pcnamelist"
    $pcnamelist
    Get-WmiObject -Class win32_bios -cn $pcnamelist -EA silentlyContinue |
    Format-table __Server, Manufacturer, Version –AutoSize
    R White

    I entered a couple of lines with . and . for hosts, $PCnamelist is coming back as a string of length 6
    To see what is actually returned check out the ascii codes.
    PS C:\Users\User> For ($I=0;$I -LT $PCNameLIst.Length;$I++){$C=$PCNameList.Chars($I);$C -as [int]}
    46
    13
    10
    46
    13
    10
    There is cr-lf for each line, problem is Get-WMIObject is expecting an array, ie, String[]
    The extra cr-lf at the end needs to be stripped off if present otherwise an extra empty element is present
    PS C:\Users\User> $PCNames = $PCNameList.Split("`r`n")
    $PCNames.Count
    3
    Something like this at the end of the function is needed
    $PCNameList
    # Check for extra CR-LF and remove it
    While ($PCNameList.Chars($PCNameList.Length-1) -eq "`n")
    {$PCNameList=$PCNameList.Substring(0,$PCNameList.Length-2)}
    # Split string on CR-LF
    $PCNames = $PCNameList.Split("`r`n")
    # Return PCNames
    Return $PCNames
    First thanks for this great replay.   I have been trying to alter small sections of it to get a better idea of what it is doing.      
    I have had no luck getting it to work.   It still acts like there is no list of PC's no mater how i alter it or wither i use $PCName or $PCNamelist
    Below is the section i have focused on.  Again thanks for any help.  
    ### https://social.technet.microsoft.com/Forums/en-US/30078df4-aeca-45f6-bd7f-7106fd0d264c/using-a-existing-sting-to-preform-a-function-on-a-list-of-computers?forum=winserverpowershell
    # The below code will show the ascii code of what is stored in the pcnamelist variable
    For ($I=0;$I -LT $PCNameLIst.Length;$I++)
    {$C=$PCNameList.Chars($I);$C -as [int]}
    # The above code will show the ascii code of what is stored in the pcnamelist variable
    # The below code will format the user input
    $PCNameList
    # Check for extra CR-LF and remove it
    While ($PCNameList.Chars($PCNameList.Length-1) -eq "`n")
    {$PCNameList=$PCNameList.Substring(0,$PCNameList.Length-2)}
    # Split string on CR-LF
    $PCNames = $PCNameList.Split("`r`n")
    Return PCNames
    Return $PCNames
    Write-Host below is '$PCNames'
    $PCNames
    Write-Host below is '$PCNamelist'
    $PCNamelist
    Get-WmiObject -Class win32_bios -cn $PCNames -EA silentlyContinue |
    Format-table __Server, Manufacturer, Version –AutoSize
    R White

  • I am trying to install itunes for my mobile, and I keep getting the message "You do not have administrator rights, please contact the system administrator to preform an update."  I have it set as adminstrator as the user.

    I am trying to install itunes for my mobile, and I keep getting the message "You do not have administrator rights, please contact the system administrator to preform an update."  I have it set as adminstrator as the user. I am running Windows 7 Ultimate. Help please?

    Thanks, but I've done that several times & it still says I need administraive privileges. I had itunes installed with no problems until I did the latest update. After that it just disappeared, so I tried reinstalling. Now I can't sync my phone. This is so frustrating!

  • How do I add a table to a preformed template that I got ?

    how do I add a table to a preformed template that I got ? I
    have tried inserting a table but it always ends up inside another
    table already created. But I want a brand new fresh table but
    cannot seem to be able to get the cursor in the empty area.

    This page is not a DW Template. It's just an ordinary HTML
    page. And if
    you *paid* for it, I'd ask for my money back -
    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.martynbird.co.uk%2Fradiocontr olcarsites%2F
    Anyhow, to place a table in the location you desire, click
    within the words
    "Sites to buy your Radio control vehicles and spares" in
    Design view, then
    look at the Tag Selector bar at the bottom of the document
    pane, and click
    on the first <p> tag from the right. That will select
    the entire <p> tag
    and its contents. Since you cannot insert a table within a
    <p> tag, you
    would want the insertion point to be just to the right of
    that paragraph, so
    press the right arrow once. In Design view, you will see the
    insertion
    point to the right of the 'spares'. Now you can insert a
    table.
    WARNING: Using DW without a basic understanding of HTML and
    CSS will cause
    you to encounter mystery after mystery just like this, and
    will ultimately
    make your hair fall out and your teeth rot. Just don't take
    that chance.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "mb007inc" <[email protected]> wrote in
    message
    news:gh8ekt$2sa$[email protected]..
    > The page is located at
    http://www.martynbird.co.uk/radiocontrolcarsites/
    > The place I want the brand new table is to the right of
    where the text is
    > that is as follows "Sites to buy your Radio control
    vehicles and spares"
    > When I try to use the code view it just puts it into a
    pre existing table
    > ....I cannot place the cursor outside of the other
    tables as it just wont
    > let
    > me. I click outside the tables and the flashing cursor
    just stays where it
    > is.
    >

  • Preformance in mapping

    can you give me the order for graphical,java,abap and xslt mappings in preformance point of view?

    There  are some unfortunate things about XI compared to other ESB EAI framework.
    XI just use JAVA, J2EE and Web service technology for design and configuration phase. In run time ABAP engine is the main player which use J2EE engine as RFC destination to handle supporting work.
    However other ESB EAI Engine such as Aqualogic, Websphere, Mule, TIBCO etc depend on JAVA as a core engine.
    Regarding the view of a programmer who do not have a clue on the powe of JAVA and XSLT and at the same time have to depend on the burdon of some architectural flops in XI , it is nice to say that for the sake of goodness use ABAP mapping as much as possible for complicated mapping.
    However provided that XI will one day use JAVA as a core engine and use JAVA technology as a main stream then XSLT and JAVA mapping can rock with even a 2 CPU production machine.
    For example, I have a SAP Integration with 45 different plant system for a Telecom supply chain in USA where 2 instance of weblogic server with J2EE and JAVA can handle 35,000 master data changes (IDOCS) from SAP to all plants in 4 hours without breaking a single one. It took more than 3 days to load into the same SAP master data system using ABAP technologies and may be 60 CPU machines too.
    If you know what is the power of XSLT, JAVA caching, power of JAVA POJOS, HEAP tuning and provided you have a right infrastructure supported by ESB EAI features such as transformation, translation, routing, then JAVA is the solution.
    But if you are from a back ground of customization project, not much clue of software programming and dragged to certain believe then JAVA is not a solution.
    I hope to see one day SAP platform use JAVA and J2EE technologies with its full power and keep the right steps SAP took with Netweaver platform.
    Thanks

  • My Palm TX won't preform a HotSync without crashing

    I recently went a couple of week without HotSyncing and then finally did yesterday.  After finishing the HotSync my TX crashed and was stuck in a reset loop. I first performed a warm reset which pulled it out of the loop until it shut off and when I brought it back up it was in a loop again.  So I preformed a Hard reset and HotSynced to get my data back on the TX, this once again through it into the same loop. So I thought it might be something on my pc so I backed up my data and used my cd to remove and reinstall Palm Desktop and repeated the Hard reset.  But this didn't fix it, same problem on HotSync.  As of now I hav a working wiped TX with no way to get my old data on it.  Is there some way to get my calandar, contact, and memo data back on it with HotSyncing, like maybe thought the SD card.
    Post relates to: Palm TX

    When you delete Palm Desktop, it does not delete user data unless you manually Delete the folder tree.
    You need to find the directory and rename the /Backup section of it to anything else - "/BackupOLD" works just fine (no quotes).
    This will give you your PIM data back, but it will not install any of the programs causing the problem.
    The directory (on a windows machine) looks like this:
    C:/Program Files/Palm/ Hotsync user name truncated /Backup.
    In short:
    - hard reset
    - locate backup folder under palm desktop folder tree
    - rename to backup_old
    - sync, select old id. This will bring back PIMs (Calendar, Contacts, Tasks and Memos) but no settings nor programs
    - reinstall applications one by one AFTER making sure they are compatible with the target device.
    WyreNut
    Post relates to: Centro (AT&T)
    I am a Volunteer here, not employed by HP.
    You too can become an HP Expert! Details HERE!
    If my post has helped you, click the Kudos Thumbs up!
    If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

  • Simple and reliable method to preform an OCR on a pdf? [SOLVED]

    I have Acrobat at work which does a wonderful job preforming an OCR (optical character recognition) on scanned pdf files so that one can do keyword searching within the pdf.  I have spent the past hour following-up various guides on the 'net at large which do not work for me.  Can someone recommend a simple and reliable method to accomplish this?
    Last edited by graysky (2014-03-30 13:50:34)

    I can second OCRFeeder. It can use different OCR engines, and the application doesn't hide the complexity of the options that these engines accept, so with a little fine tuning you should get reasonable results. For Latin text, that is. For non-Latin or mixed scripts, all  FOSS engines are essentially useless (I've tried long and hard to get Japanese OCR to work).
    To be honest, I myself only use Acrobat now because it's the only thing that produces consistently excellent results. For example, text selection will often not work smoothly  because the FOSS tools don't group the text objects properly into lines or paragraphs.

  • Looking for new laptop what are the differences between pro and air? Besides size. Does the air preform like the pro?

    Looking for new laptop what are the differences between pro and air? Besides size. Does the air preform like the pro?

    The NEW macbook Pro and Air are EXTREMELY close in form factor
    The newest macbook Pro is essentially a larger macbook Air with Retina display and options for speed in increasing prices up to an independent graphics and quad core processor.
    both Air and new Pro now have PCIe SSD and permanent RAM.
    The Air is the lightweight portable form factor, fast to boot and shut down, but with longer battery life than any of the macbook pro in 13"
    Now the new macbook Pro and macbook Air are extremely close in form factor and nature.
    both have 802ac wifi
    both have permanent RAM, no superdrive
    both are slim profiles and SSD
    The only real differences now are (in the most expensive Pros) faster processors and quadcore processors and top end model autonomous graphics.
    ....and of course the retina display
    both are now "very good for travel"
    Other than features the form factor of the Air and Pro are VERY close now,....so now its merely a matter of features and price more than anything.
    You need an external HD regardless of what you get for backups etc.   Drop into an Apple store and handle both and make your choice based on features, such as Retina or non-retina, .... both at a distance now look like the same computer.
    The Pro weighs more, ....but nowhere near what it used to just a month ago on the older macbook Pros
    The NEW macbook Pro is a different creature entirely than the older macbook Pro, .....the new Pro is thicker than the Air, but id frankly call the NEWEST Pro a "macbook Air with Retina display" , or
    Maybe a “macbook Air PRO with Retina display” 
    Instead of Air VS Pro now,.....its really a smooth transition from Air to pro without comparing say, 2 different creatures, now its like contrasting a horse from a race horse.
    Either one in 8gig of RAM (preferably)... the 4gig upgrade costs very little,  the I7 you will notice only 15% faster on heavy applications over the I5, and NOTHING on most APPS.....I5 has longer battery life.
    As you see below, the non-Retina 13" AIR is 82% of the Macbook with Retina display in resolution
    there is no magical number of pixels per inch that automatically equates to Retina quality.
    http://www.cultofmac.com/168509/why-you-might-be-disappointed-by-the-resolution- of-those-new-retina-display-macs-feature/
    A huge internal SSD isnt a game changer for anything, you need an external HD anyway
    what you WONT READ on Apple.com etc. is that the larger SSD  are MUCH FASTER due to SSD density
    "The 512GB Samsung SSD found in our 13-inch model offers roughly a 400MB/s increase in write speeds over the 128GB SanDisk/Marvell SSD"
    http://blog.macsales.com/19008-performance-testing-not-all-2013-macbook-air-ssds -are-the-same
    Here is an excellent video comparison between the 11” I5 vs. I7 2013 Macbook Air.
    http://www.youtube.com/watch?v=oDqJ-on03z4
    http://www.anandtech.com/show/7113/2013-macbook-air-core-i5-4250u-vs-core-i7-465 0u/2
    I5 vs. I7 performance 13” Macbook Air 2013
    Boot performance
    11.7 I5 ……11.4 I7
      Cinebench 
    1.1 I5….1.41 I7
    IMovie Import and Opt.
    6.69 I5….5.35 I7
      IMovie Export 
    10.33 I5…8.20 I7
    Final Cut Pro X
    21.47 I5…17.71 I7
      Adobe Lightroom 3 Export 
    25.8 I5….31.8 I7
    Adobe Photoshop CS5 Performance
    27.3 I5…22.6 I7
    Reviews of the newest Retina 2013 Macbook Pro
    13”
    Digital Trends (13") - http://www.digitaltrends.com/laptop-...h-2013-review/
    LaptopMag (13") - http://www.laptopmag.com/reviews/lap...play-2013.aspx
    Engadget (13") - http://www.engadget.com/2013/10/29/m...-13-inch-2013/
    The Verge (13") - http://www.theverge.com/2013/10/30/5...ay-review-2013
    CNet (13") - http://www.cnet.com/laptops/apple-ma...-35831098.html
    15”
    The Verge (15") - http://www.theverge.com/2013/10/24/5...w-15-inch-2013
    LaptopMag (15") - http://www.laptopmag.com/reviews/lap...inch-2013.aspx
    TechCrunch (15") - http://techcrunch.com/2013/10/25/lat...ok-pro-review/
    CNet (15") - http://www.cnet.com/apple-macbook-pro-with-retina-2013/
    PC Mag (15") - http://www.pcmag.com/article2/0,2817,2426359,00.asp
    Arstechnica (15") - http://arstechnica.com/apple/2013/10...-pro-reviewed/
    Slashgear (15") - http://www.slashgear.com/macbook-pro...2013-26303163/

  • While in Indesign CC 2014 i am unable to preform a color separtion to Acrobat DC 2014

    While in Indesign CC 2014 i am unable to preform a color separtion to Acrobat DC 2014. Is there a fix to this.

    The answer was posted here:
    Indesign CC 2014 color separation to Acrobat DC 2014

  • I have OS X Lion.  I tried to burn photos to a cd.  When it is at the finishing stage it ejects the disc and gives a a message saying the operation couldn't be completed and the drive preform importly. It gives no error code only a box to click ok.  Help.

    I have OS X Lion. I tried to burn photos to a cd. When it is in the finishing phase it says that the drive preformed an error and it cannot retry or correct.(no error code is given that I can see) I tried to slow the burn speed and do not know what else to do.  Help please.

    Hi Janine943,
    Thanks for visiting Apple Support Communities.
    See this article for some troubleshooting steps that can help:
    OS X Lion: If an error message appears while you burn a CD or DVD
    http://support.apple.com/kb/PH3999
    Regards,
    Jeremy

  • Preformance Tuning assistance

    Greeting all,
    Using: Oracle 10.1.0.5.0
    I seem to be having a bit of a problem wiht the length of time my queries take to run.
    I'm reading the Preformance and Tuning manual, but am not having much luck ( making next to no since)
    I ran the Hit/Miss ratio queries I found that were off linked in another post and they seem to be fine, but over the past month or two, queries that used to take 2 - 3 minutes to run are now taking 15 - 20 minutes. I've tried playing around with some hints, but they dont seem to do anything to help speed up the process. Any thoughts or idea would be muchly appericated.
    -Joseph

    Did you do a sql trace on the queries and used tkprof to analyze what is taking so long?
    http://download-east.oracle.com/docs/cd/B10501_01/server.920/a96533/sqltrace.htm#1018

  • My iPhone 4S is not preforming any network related operations after 5.0.1 update - please help!

    My iPhone 4S is not preforming any network related (Calls, Messages) operations after 5.0.1 update - please help!

    5.0.2 has not been released, thus you can not upgrade.
    Stedman

  • Requesting Advice for Better Multimedia Production Preformance

    As you can see, I have the low-end Northwood Pentium 4C 2.4GHz processor in my 865PE.  I'm doing a lot of digital video conversions and need advice on how to speed up some of the process.  I am only a hobbiest, not a professional, and don't have big bucks for the latest and greatest.  I was considering the following choices:
    1.  Upgrade the CPU to a Prescott 3.4GHz (maybe the biggest bang for the buck?)
    2.  Add another gig of dual channel memory (or going for more preformance type memory)
    3.  Setting up a RAID 0 Array with two of my hard drives (makes me nervous, when one drive goes down, all data is lost)
    4.  Save my upgrade dollars and look at 925X/915 Boards
    5.  Look at AMD alternatives
    Thank you in advance for your thoughts...
    Marshall

    Danny,
    Thanks for the information.  The future does sound exciting!!  I'm certain over time the pricing on this stuff will go down but right now I would be looking at the following expenses for this solution:
    New 955X Board                $219(ASUS) $299(MSI)
    Pentium D 820 (2.8GHz)     $241
    New DDRII Memory            $200
    PCI Express 9600xt AIW     $182
    Estimate of Upgrade Costs:  $842   to   $922
    Being able to encode and transcode digital video a lot faster,  priceless....
    Ok, I know I would be giving up a much faster dual core processor, SATA II, DDR2 (faster?) and PCI Express (faster?), but wouldn't I get some gradification with just a CPU upgrade which is 1/4 the cost of the upgrade?
    Pentium® 4 Prescott 3.2GHz 800MHzFSB Socket 478 about $200.
    Which do you feel gives the best price/performance ratio.

  • JAVA unsteady preformance...

    I have a quite complex GA Java Application.
    Due to the problem i need to make a lot of copies of objects and thier attributes. So to find out where i lose preformance i added a time output to the methods used.
    Unfortunately this preformance measure is very unstable.
    I don't use threads right now and the duration for certain methods range from 2ms up to 40ms. This is quite a difference for the very same method used.
    Can i improve preformance by using high priority threads !?
    Any clue why the preformance is so unsteady?

    Hi,
    Please refer this URL.
    http://www.JavaPerformanceTuning.com/tips.shtml
    It will give you a good idea.
    Thanks
    Bakrudeen

Maybe you are looking for