Dependencies for speed of new generation gc

I have two applications, doing very similar thing (they are both routing data from one source to another). They have almost the same number of thing to process per second, they are both done with a lot of shared code. Unfortunately, I can observe big difference in new gc times between both these applications. I have attached samples from gc logs below.
I'm using CMS and non-parallel new generation gc. Both applications are running on the machines with exactly the same specs (and we get same results if we switch the applications between the machines, so it is not environment specific). As you can see from the logs,
heap size is very similar, promotion ration is almost the same, both applications are running new generation gc once every 5 seconds on average.
I'm just wondering what can be the reason for so different gc times in both cases. Amount of different pages in old generation touched between collections ? Average size of the object surviving collection ?
In both cases following jvm is used
java version "1.5.0_07"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_07-b03)
Java HotSpot(TM) Server VM (build 1.5.0_07-b03, mixed mode)
Application 1:
8495.565: [GC {Heap before gc invocations=380:
def new generation   total 24576K, used 22521K [0x73000000, 0x74c00000, 0x74c00000)
  eden space 20480K, 100% used [0x73000000, 0x74400000, 0x74400000)
  from space 4096K,  49% used [0x74400000, 0x745fe620, 0x74800000)
  to   space 4096K,   0% used [0x74800000, 0x74800000, 0x74c00000)
concurrent mark-sweep generation total 1019904K, used 471954K [0x74c00000, 0xb3000000, 0xf0000000)
concurrent-mark-sweep perm gen total 131072K, used 14120K [0xf0000000, 0xf8000000, 0xf8000000)
8495.566: [DefNew
Desired survivor size 2097152 bytes, new threshold 6 (max 8)
- age   1:     743624 bytes,     743624 total
- age   2:     509984 bytes,    1253608 total
- age   3:     239488 bytes,    1493096 total
- age   4:     351904 bytes,    1845000 total
- age   5:     229328 bytes,    2074328 total
- age   6:     156096 bytes,    2230424 total
: 22521K->2178K(24576K), 0.1627934 secs] 494476K->474132K(1044480K) icms_dc=5 Heap after gc invocations=381:
def new generation   total 24576K, used 2178K [0x73000000, 0x74c00000, 0x74c00000)
  eden space 20480K,   0% used [0x73000000, 0x73000000, 0x74400000)
  from space 4096K,  53% used [0x74800000, 0x74a20898, 0x74c00000)
  to   space 4096K,   0% used [0x74400000, 0x74400000, 0x74800000)
concurrent mark-sweep generation total 1019904K, used 471954K [0x74c00000, 0xb3000000, 0xf0000000)
concurrent-mark-sweep perm gen total 131072K, used 14120K [0xf0000000, 0xf8000000, 0xf8000000)
, 0.1635298 secs]Application 2:
8297.934: [GC {Heap before gc invocations=303:
def new generation   total 24576K, used 22584K [0x70000000, 0x71c00000, 0x71c00000)
  eden space 20480K, 100% used [0x70000000, 0x71400000, 0x71400000)
  from space 4096K,  51% used [0x71800000, 0x71a0e218, 0x71c00000)
  to   space 4096K,   0% used [0x71400000, 0x71400000, 0x71800000)
concurrent mark-sweep generation total 799016K, used 482200K [0x71c00000, 0xa284a000, 0xf0000000)
concurrent-mark-sweep perm gen total 131072K, used 13206K [0xf0000000, 0xf8000000, 0xf8000000)
8297.935: [DefNew
Desired survivor size 2097152 bytes, new threshold 6 (max 8)
- age   1:     955304 bytes,     955304 total
- age   2:     346240 bytes,    1301544 total
- age   3:      94104 bytes,    1395648 total
- age   4:     347336 bytes,    1742984 total
- age   5:     189976 bytes,    1932960 total
- age   6:     174000 bytes,    2106960 total
- age   7:     110744 bytes,    2217704 total
: 22584K->2165K(24576K), 0.5525575 secs] 504784K->484561K(823592K) icms_dc=5 Heap after gc invocations=304:
def new generation   total 24576K, used 2165K [0x70000000, 0x71c00000, 0x71c00000)
  eden space 20480K,   0% used [0x70000000, 0x70000000, 0x71400000)
  from space 4096K,  52% used [0x71400000, 0x7161d6e8, 0x71800000)
  to   space 4096K,   0% used [0x71800000, 0x71800000, 0x71c00000)
concurrent mark-sweep generation total 799016K, used 482396K [0x71c00000, 0xa284a000, 0xf0000000)
concurrent-mark-sweep perm gen total 131072K, used 13206K [0xf0000000, 0xf8000000, 0xf8000000)
, 0.5533990 secs]

What command-line options do you give the JVM in the
two cases?Almost exactly the same (except for the main class and program arguments of course).
-Xloggc:path/to/gc/file.log -XX:+UseConcMarkSweepGC -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -XX:+CMSClassUnloadingEnabled -XX:+CMSPermGenSweepingEnabled -XX:PermSize=128m -XX:+PrintTenuringDistribution -XX:MaxTenuringThreshold=8 -XX:NewSize=28m -XX:MaxNewSize=28m -XX:SurvivorRatio=5 -XX:+TraceClassUnloading -XX:+PrintHeapAtGC -XX:+CMSIncrementalMode -XX:CMSIncrementalDutyCycleMin=5 -XX:+CMSIncrementalPacing -XX:PrintCMSStatistics=1 -XX:-UseParNewGC -XX:+ParallelRefProcEnabled
for one of the programs I have specified
-Xmx2000m -Xms1024m
for second
-Xmx2048m -Xms256m
I'll try out how the second program behaves with -Xms1024. Sorry for number of gc options, but they are leftovers from my fights with CMS/Weakreference problems.
I see that in the first snippet no promotion
happened
while in the second some small number (196 KB) of
data was promoted. This was the accident, generally number of promoted memory is very similar in both cases.
Secondly, in the second case the
heap occupancy (as a %ge of the committed heap)
was larger; this might have affected the allocation
rate
in the old gen during scavenge.This might be related to -Xms specified to very low number, I'll check how it will behave after increasing the startup size. Anyway, I would expect bigger heaps to be generally slower ?
Can you think of ways in which the applications are
different wrt the object connectivity, and
lifetimes?Not really, they are both adapters for the very same data. We have a source of realtime data in the company, which contributes it to certain distribution environment. From this place, it is read by our applications (application A) and by adapter to reuters (written in C++). There we again read the same data from reuters (application B). Yes, it is a waste, but let's not go into business requirements ;) Anyway, custom protocol used by application A is very similar to reuters and output from both applications is exactly the same - so except for the few internal structures they are doing exactly the same thing. We used to had a problem with big mutable array in one of them, but it was already fixed in _07 (and it was affecting CMS times, not new gen times).
If you can condense the differences into a simple
test
case perhaps we can get closer to the problem.I'll first try out the startup heap sizing options. I don't think I'll be able to reproduce the problem on smaller application so easily.
Also make sure to collect a sufficiently long GC trace
so that you are observing real differences, not just
large fluctations in the GC times over the duration of
the run.I have full traces from 16 hours per day for last few weeks and they show this difference all the time.
Sorry that is not much help, and more questions than
answers.No problem, you have already helped me with pointing to the heap sizes (I was completly sure they are the same). I'll let you know about the results of -Xms test.
Thanks for help.

Similar Messages

  • HT201253 Why is my new generation iPod not syncing my music?

    I was recently bought for Christmas the new generation iPod Touch all the software on both my iTunes and iPod is up to date. The problem is when I go to sync my music across it won't sync with the iPod, the summary screen recognises that the music should be synced ( I am seeing grey dashed circles) but when I look under music on my iPod there isn't any.

    what does the dotted circle mean?
    Dotted circles next to songs, won't sync, red circle with square?
    what does the dotted circle mean?

  • Full automatic Itunes synchronization impossible for a brand new Ipod touch 5th generation

    Hey all,
    I bought a brand new Ipod Touch 5th generation which won't synchronize my whole music library through Itunes (very latest version of the app).
    The ipod runs IOS8 and the mac mini runs Yosemite latest version.
    I already had issue synchronizing music the very 1st day I had the Ipod touch. As a result, went back to the Apple store for changing it for another device, thinking the Ipod was faulty, which Apple accepted and changed my device for a brand new one.
    Since then, still unable to synchronize the full music library through itunes. I performed several full resets both on the mac mini and of the Ipod touch with no success. The synchronization seems to run fully normally with no warning pop up saying it failed or whatsoever and the sync process is very very long. But once done, my Ipod remains empty with no data at all.
    The weird thing is that Photos are fully synchronized with no issue at all.
    I contacted the Apple assistance who argued that my music library might be faulty and have corrupted files in it. So I cleaned it up, suppressing some files I had in double etc.
    BUT still, no success, I had to go through the entire library to sync manually, but even then, I was able to have on the device, only half of the library, i.e. around 25 go. once the ipod display 25 to 30 gb remaining, it won't sync no more files.
    Although I cleaned up the entire library and reset both devices hundreds of times, I have no clue why even manually, I'm completely unable to have my whole library automatically sync.
    I spent hours on the phone with Apple assistance to get some help with no success so far. I even re-installed Itunes completely, still without any result at all.
    I was only able to upload on the Ipod only half of the music library, and there are still 25 to 30 GB space remaining on the ipod and 20GB of music to be uploaded.
    The automatic sync process always fails any time I try to run it, except for the photos, books etc.
    I must say I also have an 160 GB Ipod classic with which I never had any problem so far, and which fully sync my whole library with no issue at all.
    I read on the internet that some other users of IOS8 are accountering the same issue with itunes.
    COULD SOMEBODY PLEASE HELP, I'M DESPERATE, given the price of the Ipod I really do regret I bought something that does not work properly. Quite disappointed

    Yes the system just keep sync as everything is normal, but then no song is actually uploaded to the ipod.
    And the remaining space bar shows the ipod's empty.
    the automated process will just keep sync as if normal and the last step saying 'applying the modifications" just keep going on and never ends.
    I was only able to upload manually half of the albums, all songs comes from different sources; ripped from CD for great part, but also downloaded from the internet from trusted websites.
    All songs play normally through Itunes on the Mac Mini.
    But then when trying to sync the whole library automatically, nothing happens and I only get tags of the different albums, as if there, but actually it won't play none and the Ipod player just keep skipping as if no musical data is there.

  • I've installed bootcamp 4.0 on my iMac 27. Everything works superb, but for playing need for speed run or battlefield 3 I need catalyst driver 11.7 or higher. How can I update my graphics? Is there a possibility except waiting for a new bootcamp version?

    I've installed bootcamp 4.0 on my iMac 27. Everything works superb, but for playing need for speed run or battlefield 3 I need catalyst driver 11.7 or higher. How can I update my graphics? Is there a possibility except waiting for a new bootcamp version?

    But how do you install the drivers if Bootcamp is running interference?
    Bottom line, I'ev tried to install three different versions of updated ATI driver sover the last few momnths and on each and every occassion have ended up with the original Bootcamp driver. A number of current games are unplayable on a Mac running Bootcamp as a result.
    And if I can't run the software I want, then Bootcamp is as useless as boobs on a bull.

  • I didn't receive any news about the replacement program for the Ipod 1st generation. I have already sent the serial number online, but didn't have any progress. What should I do? Thank you

    I didn't receive any news about the replacement program for the Ipod 1st generation. I have already sent the serial number online, but didn't have any progress. What should I do? Thank you

    After you set up your service use your repair ID to track your replacement here:
    https://selfsolve.apple.com/repairstatus/main.do
    Remember: You will receive a replacement unit approximately 6 weeks after Apple gets your current iPod nano
    Hope this helps.
    -Julian

  • Can I trade my iPhone 4 for a newer generation?

    Okay, I have a iPhone 4. I want to trade it in for a newer generation. I was wondering if i can do that.

    You can bring it to an Apple store and trade it in for store credit; you may get more money if you choose to sell it yourself. You may also want to check with your carrier to see what options they offer also.
    You can use the store credit/proceeds from the sale to buy a new phone.
    ~Lyssa

  • When is the new movie " need for speed " coming out in itunes

    When is the new movie need for speed coming out in itunes?

    No idea.
    You would need to ask the makers of the movie when they plan to release it to itunes.

  • Will the new generation 16GB iPad have enough RAM for digital drawing apps?

    I am shopping for iPad.  Will the new generation iPad Air or iPad Mini with retina display 16GB have enough memory to run digital drawing apps with stylus?

    As to the how:
    Use one of these:
    http://store.apple.com/us/product/MD821ZM/A/lightning-to-usb-camera-adapter
    http://store.apple.com/us/product/MD822ZM/A/lightning-to-sd-card-camera-reader?f node=3a
    To do this:
    http://support.apple.com/kb/ht4101
    Now for the storage and why getting the "largest" iPad you can afford. 16GB is not much, especially when it comes to photos and video. Assuming you have a relatively modern camera, each photo will likely be a minimum of 5 MB. Extrapolate that and 5,000 Photos is already significantly more storage than 16GB, not counting iOS, any apps and other data.

  • Something new about for new update for ipod nano 6th generation

    Hello,something new about for new update for ipod nano 6th generation , clock faces and others..

    What on Earth are you talking about???

  • My daughter forgott her password for the ipod is there any way to have it working again? pse help me i am french and completely lost with this new generation tks martine

    my daughter forgott her pass word for the ipodtouch and she cant use it any more
    i am struggeling with the computer to find a solution but with no luck
    took me a long time just to find out the serial number,!! can anybody help me, seems i am pretty bad with
    those new generation things, i am in france but you may answer in english its allright
    tks in advance martine

    Hi,
    Connect to the Computer you usually Sync with and Follow the Steps Here...
    Recovery Mode
    http://support.apple.com/kb/HT1808

  • When the new Nike Sport Armband for iPod nano (5th generation) ?

    When the new Nike Sport Armband for iPod nano (5th generation) ?
    Is the Nike Sport Armband for iPod nano (4th generation)same to use??
    Is Nike Sport Armband or Incase Sports Armband good to use?
    Message was edited by: terry9891

    Not sure about the Nike, but do NOT buy the InCase armband. This product is HORRIBLE for at least 3 reasons. I am tall and of normal build. Tried to wear it while working out (have worn other iPods and MP3 players in armbands/cases while working out with no problems at all).
    1) The strap is barely long enough to fit over my biceps (which is normal sized). The strap is not flexible, so it's loose when your arm is extended, tight when your arm is flexed. When doing a normal arm exercise (not even a biceps exercise), with a normal amount of weight, the very first time I tried to wear this, it popped right off my arm (literally).
    2) This generation Nano is longer than previous ones. The case is even longer (longer than necessary). It barely even fit on my arm, length-wise, between my elbow and my shoulder (and my arms are somewhat longer than average). Also, it was so long that I had to try to wear it in only one position, otherwise I couldn't really even bend my arm (during the 1 minute it stayed on my arm to begin with).
    3) The case has a thin opening at one end but none at the other, and is difficult to get in and out. Thus you can either have access to the earphone plug or the "lock" button, but not both. I actually "solved" this by creating a small hole in the bottom that allowed me to stick the earphone plug through it, allowing me access (sort of) to both ends. (Unfortunately, did this before testing the product out and can't return it now, if I could have to begin with.)
    Do NOT buy this product. I wish I hadn't.

  • Is there anyway to trade in my old ipad for a new generation?

    I have a 1st generation ipad (I know... I bet you alll have 2nd generation ipads )
    Now that the 3rd generation ipad might/could be just around the corner,
    is there any to trade in my old ipad for a new generation?
    Even if apple don't do it, I'm wondering if there are any 3rd party companies doing this.
    Does anyone know of such a company or such a deal?
    Wouldn't it be great if we could keep upgrading by sending in our oldproducts and getting money back towards the new product

    There are plenty of companies that purchase used equipment.  I'm not personally aware of who would take it in trade.  If you sell it outright, you'll get more money for it anyway....
    Google can be your friend.  Here is a link of options I found for you.......http://www.google.com.br/search?sourceid=navclient&aq=0&oq=sell+used+ipa&ie=UTF- 8&rlz=1T4GGLG_enUS348US348&q=sell+used+ipad

  • MSI ti 4200 128 MB and Problems with "Need for Speed: HighStakes"

    Does any one know of a fix for "Need for Speed: HighStakes" with the new 45.32 drivers. When trying to start this game it won't even load, the screen goes dark for a second and then falls back to the desktop. Did the same thing with 43.45, but if I install the drivers that came with the Video card ( I think they were 31.XX) then the game works fine. Haven't come across any other games that won't run except this one, some examples that work fine are UT 2003, C&C: Generals, Warcraft 3, Hot Pursuit 2.
    System:
    XP pro OS (sevice pack 1) DirectX 9
    Athlon 1800
    512 MB RAM
    MSI nforce 2 Main board
    MSI GeForce 4 4200 ti 128 MB 8X AGP
    Thanks for any info.

    well I "bugged" the game makers (EA) and the response is that the game doesn't suport Windows XP. Strange that the older nVidia 31.xx drivers work fine with the game. Also played it on my last machine which had XP and a ATI radeon video card. OH well who ever said Direct X was supposed to be backward compatible.
    Too bad the older drivers don't work so well with the newer games.

  • How to Optimize SCXI 1600 for speed with Thermocouples

    I'm working on a data acquisition system for my engineering firm and I'm trying to find a way to use our new thermocouple system as fast as possible.
    The requirements for the DAQ process are:
    Read 32 voltage channels from a PCI-6071E card
    Read 32 thermocouple channels from a SCXI-1600 with an 1102C accessory
    Complete the entire operation in under 5ms (this is so other parts of the program can respond to the incoming data quickly and trigger safety protocols if necessary)
    Using LabVIEW 7.1 and MAX 4.4, I've got the voltage channels working to my satisfaction (with traditional DAQ VIs) and the rep rates I measure when I run the program are around 1ms (I do this by putting the DAQ code in a loop and reading the millisecond timer every time through that loop, then calculating the average time between loop executions).  I have been trying to get similar performance from the thermocouple channels using DAQ Assistant and DAQmx.  Some of the problems I've encountered are:
    Very slow rep rates with 1-sample and N-sample acquisition modes (300-500ms)
    Good rep rates when I switch to continuous mode, but then I get buffer overflow error -200279.
    When I attempted to correct that error by setting the DAQmx buffer to overwrite unread data and only read the most recent sample, the calculated sample rate went to 20ms.  It was around 8ms when I left the error unhandled and continued acquisition.
    At this point I'm out of ideas and am just looking for something to try and optimize the DAQ process for speed, as much as is possible.
    Thank you for any help.

    I guess I would be interested in checking out your code to see if there is anything I can recommend on changing.  However, I do have a few general Ideas of how to improve your performance.  These recommendations are purely based on what you could be doing to slow down the speed of the program because I am not sure how exactly you have everything set up.  
    -Are you setting up the task and closing the task each time that you read from your daq card?  the way to get around this is to only have the DAQmx read vi in the while loop so you do not have time alloted for opening and closing the task each time.
    -Try using a Producer/Consumer architecture.  This architecture uses queues and splits the aquisition with the post processing.  Here is a link to how to set up this architecture and some information on when to use it.
    Application Design Patterns: Producer/Consumer
    http://zone.ni.com/devzone/cda/tut/p/id/3023 
    Message Edited by Jordan F on 02-06-2009 04:35 PM
    Regards,
    Jordan F
    National Instruments

  • What algorithm does Excel 2010 use for Pseudo Random Number Generation (MT19937?)

    Does Excel 2010+ use the Mersenne Twister (MT19937) algorithm for Pseudo Random Number Generation (PRNG), implemented by the RAND() function?
    This has been a nagging question for some time now, with "hints" that it indeed does.  However, a relatively thorough search turns up no definitive documentation.  The most direct indication is perhaps given by Guy Melard [Ref 9] where
    he tests Excel 2010's RAND() function using the Crush battery of tests in TestU01 by L'Ecuyer & Simard.  Melard references a "semi-official" indication that Microsoft did indeed implement MT19937 for the RAND() function in
    Excel 2010, but this reference no longer seems to be available. http://office.microsoft.com/enus/excel-help/about-solver-HP005198368.aspx?pid=CH010004571033.
    The other references below [Ref 1-10] document the history of the statistical suitability of the PRNG and probability distributions in various versions of Excel.  This includes the Wichmann-Hill PRNG implementations supposedly (arguably) used in
    Excel 2003 & 2007 for random number generation.  But still, we have no answer as to which PRNG algorithm is used in
    Excel 2010 (and 2013 for that matter).
    Microsoft indicates that RAND() has been improved in Excel 2010; Microsoft states, "...and the RAND function now uses a new random number algorithm." (see https://support.office.com/en-ca/article/Whats-New-Changes-made-to-Excel-functions-355d08c8-8358-4ecb-b6eb-e2e443e98aac). 
    But no details are given on the actual algorithm.  This is critical for Monte Carlo methods and many other applications.
    Any help would be much appreciated. Thanks.
    [Ref 1] B. McCullough, B. Wilson.  On the Accuracy of Statistical Procedures in Microsoft Excel 97. 
    Computational Statistics & Data Analysis. Vol. 31 No. 1, pp 27-37. July 1999.
    http://users.df.uba.ar/cobelli/LaboratoriosBasicos/excel97.pdf
    [Ref 2]L. Knüsel.  On the accuracy of the statistical distributions in Microsoft Excel 97. Computational Statistics & Data Analysis. Vol. 26 No. 3, pp 375-377. January 1998.
    http://www.sciencedirect.com/science/article/pii/S0167947397817562
    [Ref 3]B. McCullough, B. Wilson.  On the Accuracy of Statistical Procedures in Microsoft Excel 2000 and Excel XP. 
    Computational Statistics & Data Analysis. Vol.40 No. 4, pp 713-721. October 2002.
    https://www.researchgate.net/publication/222672996_On_the_accuracy_of_statistical_procedures_in_Microsoft_Excel_2000_and_Excel_XP/links/00b4951c314aac4702000000.pdf
    [Ref 4] B. McCullough, B. Wilson.  On the Accuracy of Statistical Procedures in Microsoft Excel 2003. 
    Computational Statistics & Data Analysis. Vol.49. No. 4, pp 1244-1252. June 2005.
    http://www.pucrs.br/famat/viali/tic_literatura/artigos/planilhas/msexcel.pdf
    [Ref 5] L. Knüsel. On the accuracy of statistical distributions in Microsoft Excel 2003. Computational Statistics & Data Analysis, Vol. 48, No. 3, pp 445-449. March 2005.
    http://www.sciencedirect.com/science/article/pii/S0167947304000337
    [Ref 6]B. McCullough, D.Heiser.  On the Accuracy of Statistical Procedures in Microsoft Excel 2007. 
    Computational Statistics & Data Analysis. Vol.52. No. 10, pp 4570-4578. June 2008.
    http://users.df.uba.ar/mricci/F1ByG2013/excel2007.pdf
    [Ref 7] A. Yalta. The Accuracy of Statistical Distributions in Microsoft<sup>®</sup> Excel 2007. Computational Statistics & Data Anlaysis. Vol. 52 No. 10, pp 4579 – 4586. June 2008.
    http://www.sciencedirect.com/science/article/pii/S0167947308001618
    [Ref 8] B. McCullough.  Microsoft Excel’s ‘Not The Wichmann-Hill’ Random Number Generators. Computational Statistics and Data Analysis. Vol.52. No. 10, pp 4587-4593. June 2008.
    http://www.sciencedirect.com/science/article/pii/S016794730800162X
    [Ref 9] G. Melard.  On the Accuracy of Statistical Procedures in Microsoft Excel 2010. Computational Statistics. Vol.29 No. 5, pp 1095-1128. October 2014.
    http://homepages.ulb.ac.be/~gmelard/rech/gmelard_csda23.pdf
    [Ref 10] L. Knüsel.  On the Accuracy of Statistical Distributions in Microsoft Excel 2010. Department of Statistics - University of Munich, Germany.
    http://www.csdassn.org/software_reports/excel2011.pdf

    I found the same KB article:
    https://support.microsoft.com/en-us/kb/828795
    This was introduced (according to the article) in Excel 2003. Perhaps the references in notes 2 and 3 might help.
    The article describes combining the results of 3 generators, each similar to a Multiply With Carry (MWC) generator, but with zero carry. MWC generators do very well on the Diehard battery of randomness tests (mentioned in your references), and have
    very long periods. But using zero carry makes no sense to me.
    Combining the three generators only helps if the periods of the 3 are relatively prime (despite what the article implies). Then the period of the result will be the product of the 3 periods. But without knowing the theory behind these generators, I have
    no idea what the periods would be. The formulas for MWC generators fail here.
    Richard Mueller - MVP Directory Services

Maybe you are looking for

  • IPod Nano Disk Drive Size

    I'd like to buy an iPod Nano or mini with speakers for everyday use and riding on a horse. What's the largest size hard drive available on the Nano? Also, how well will it work on my horse. What am I getting into here? He's being taught Classical Dre

  • Newbie flash question

    I was thinking about a way to create a opening page for our club website. I would like to have some images fade in, and out, with sounds, etc, and give visitors a way to bypass that (if they want) and head right to the main page with info. So, based

  • Urgent - Service Entry Sheet

    Dear All, Is there any internal assignments for PO & service entry sheets??? because when I create a PO automatically a service entry sheet is also getting generated automatic. So please provide me inputs on the same. Thanks & Regards, SAP FC

  • Sorting displaying issue

    I am trying to display a list sorted by year, then title and then subtitle. if there are no subtitles, titles should appear by itself. if there are subtitles then they should appear under titles, all in alph order. Here is a pic of what i am trying t

  • MX won't open some .fla files

    I have two HDs in my XP system. Drive 0 was partitioned as C: and D: Drive 1 was E: All my .fla files were on E: Then I repartitioned Drive 0 as C: and reinstalled XP, Flash MX and all software. Thus drive E: (where all the .fla files are) is now D: