Which one is better Between RX800PRO-TD256E and NX6800-TD256E ?

 Hello i have a dude... I need to know which one is more powerfull and better! please...i need a help! because ill buy one. I saw the specs but they have diferent technologies. which one i should choose???.write me please!!!. THANKS!!!... see ya!   

Why don't you go, and get this one? it was released yesterday: 
XFX  Geforce 7800GT 256MB 256-bit GDDR3 VIVO PCI Express x16
Or I would recommend you these too:
MSI RX800XL-VT2D256E Radeon X800XL 256MB 256-bit GDDR3 VIVO PCI Express x16
(The memory runs a little faster than RX800PRO, and also have 16 Pixel Pipelines instead of the PRO version with only 12)
MSI NX6800-TD256E (Riddick) Geforce 6800 256MB 256-bit DDR PCI Express x16
Both cards are great.

Similar Messages

  • Which one to chose between Netwevae XI and Portal as a career option.

    Hi,
    I have just taken up the training in NS XI and in a dilema to chose between XI & Portal as a career option.
    I have sufficient amount of experience in ABAP and wish to proceed further in any of the two.
    Can any one please advice which one would be better in terms of the long career goal especially considering the Intl Market.
    Regards,
    Deepak.

    Hi Deepak,
    It is better if u go for XI since you have ABAP knowledge. Go throught the following things.
    Hi,
    SAP Exchange Infrastructure (SAP XI) enables you to implement cross-system processes. It enables you to connect systems from different vendors (non-SAP and SAP) in different versions and implemented in different programming languages (Java, ABAP, and so on) to each other. SAP Exchange Infrastructure is based on an open architecture, uses open standards (in particular those from the XML and Java environments) and offers those services that are essential in a heterogeneous and complex system landscape
    http://help.sap.com/saphelp_nw04/helpdata/en/14/80243b4a66ae0ce10000000a11402f/frameset.htm
    SAP NetWeaver is SAP's integrated technology platform and is the technical foundation for all SAP applications since the SAP Business Suite. SAP NetWeaver is marketed as a service-oriented application and integration platform. SAP NetWeaver provides the development and runtime environment for SAP applications and can be used for custom development and integration with other applications and systems. SAP NetWeaver is built using open standards and industry de facto standards and can be extended with, and interoperate with, technologies such as Microsoft .NET, Sun Java EE, and IBM WebSphere.
    The core products that make up SAP NetWeaver include:
    SAP NetWeaver Application Server
    SAP NetWeaver Process Integration (PI)
    SAP NetWeaver Enterprise Portal (EP)
    SAP NetWeaver Master Data Management (MDM)
    SAP NetWeaver Mobile
    SAP NetWeaver Business Intelligence
    SPRO stands for SAP Project Reference Object. It is used to configure the setting as per your client requirement by using the standard setting present in the system. This where you can do all the SAP configuration work.
    Want to add some more good links-
    https://www.sdn.sap.com/irj/sdn/developerareas/xi
    https://www.sdn.sap.com/irj/sdn/search?searchvisible=false&selectedcustomprops=sdn_product(value=Exchange%20Infrastructure),sdn_product_release(value=3.0)&SearchPluginName=sdn_
    http://help.sap.com/saphelp_nw04/helpdata/en/14/80243b4a66ae0ce10000000a11402f/frameset.htm
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/xi/sap%20xi%20-%20where%20to%20find%20information.pdf
    Thanks & Regards,
    Suresh
    Edited by: Suresh Mandalapu on Aug 18, 2008 11:04 AM

  • If i have two option to select between XI or BW which one in better and why

    if i have two option to select between XI or BW which one in better and why
    both in terms of money and in terms of my career growth.......

    Sheetika,
    XI if you  are good in JAVA.The rest is same for both XI and BW.
    K.Kiran.

  • I am going to buy a macbook pro for grade 12, and I need to know wheather I should get a macbook pro or a macbook pro retina. If someone could tell me (in a very simple way) which one is,better for me and why, I would be ever so apprreciative.

    I am going to buy a macbook pro for grade 12, and I need to know wheather I should get a macbook pro or a macbook pro retina. If someone could tell me (in a very simple way) which one is,better for me and why, I would be ever so apprreciative.

    Why do you need a expensive MacBook Pro?
    Your attending high school and unless everyone else is rich also your likely going to be a target by the more poorer students for theft or damage to the machine.
    You could keep it home, but if you need it for class then your exposed again.
    Also at that age your not very careful yet, a MacBook Pro is a expensive and easily damaged machine.
    Unless your made of money and so are others at your school, I would recommned a low profile, just does the job cheap Windows PC.
    If it dies, gets lost, stolen or damaged because of your inexperince handling senstivie electronics then it's no big deal.
    You can buy a Mac later on when your sure you have a need for it, currently there isn't much advantage of owning a Mac compared to a PC, they do just about the same things now, one just looks prettier than the other.
    Since 95% of the world uses Windows PC's your going to have to install Windows on the Mac in order to keep your skills up there or be unemployed, so it's a extra headache and expense.
    good luck

  • I am looking for macbookpro mid 2010 HDD exact specs so that i can upgrade it to 1TB. PLEASE HELP ME  about OEM apple brand or which one is better.Thanks

    I am looking for macbookpro mid 2010 HDD exact specs so that i can upgrade it to 1TB. PLEASE HELP ME  about OEM apple brand or which one is better?.Thanks

    clintonfrombirmingham Your information is not correct.
    http://kb.sandisk.com/app/answers/detail/a_id/8142/~/difference-between-sata-i,- sata-ii-and-sata-iii
    I have a sata II samsung 5400 rpm and i am only able to transfer at 85 read right speed.
    On my main drive sata III ocz agility 3 ssd i get 120 mb read and 180 write.
    Neither of these come close to the 300 mb promised. So it wont matter if he got sata II or III
    The speed came from Blackmagic Disk Speed Test

  • Which one is better null == object or object == null

    I am just surffing on a google and i found one new thing which is new concept to me, but that concept is not cleared
    Concept is, i found one place a class object is compaired with the null in following way
    if( null == object)
    Usually i used
    if(object == null)
    Problem :- What is the diffrance between these two condition and which one is better?

    yawmark wrote:
    corlettk wrote:
    So... Just use the first way (by default) because that's how people are it reading accustomed to.Agreed. Just to point out, the reason commonly given for preferring (null == object) is that it prevents semantic errors such as (object = null), which is only a problem in Java in a minuscule number of cases.And the practice started in C (or maybe even an earlier language) where it's an issue in many cases. For example,
    int i = 0;
    if (i = 1) { ... }The "if" line is illegal in Java, but it's legal in C. If the programmer forgets the second = sign, then you get the above. Variable i gets a value of 1, and the expression i = 1 has a value of 1, which corresponds to true (whereas in Java, you can't use an int where a boolean is expected). So the if comes out true, when it should have been false (had we properly used if (i == 1)), and in addition, the value of i has changed when we didn't want it to.
    In Java, this would be a compile-time error, whereas in C, it's a runtime error. Compile-time errors are easier to fix, and they don't get the opportunity to cause a problem after the software has been released.
    In C, to turn this back into a compile time error, you could get in the habit of writing if (1 == i) Then if you forget the second = sign, you get if (1 = i) which is a compile-time error.
    Because Java doesn't equate numerical zero with false and non-zero with true, this issue is, as yawmark demonstrates, much less of a problem in Java.

  • I would like to buy am Ipad for my nephew. Which one is better to play games, ipad or ipad mini

    I would like to buy an ipad for my nephew. Which one is better, ipad or ipad mini? He wants to play games, and put lots of app.

    Probably the full iPad, because it has a better graphics card. The larger screen helps too.

  • Which one is better to manage sprites??

    hello,
    i have a class that manage all my sprites, from updating to rendering
    and because there will be many sprites iterated every game loop
    i want to know which one is faster between these :
    1. i put ALL sprites (active and not active) in the sprite manager and update the sprite based on whenever it's active or not
    OR
    2. i put only active sprite and the sprite that not active is removed from the list, in this case in every loop i must add new active sprite to the list and remove nonactive sprite from the list
    the code will be like this :
    for number 1
    ArrayList spritelist; // list of the sprites
    public void update(Graphics g) {
         for (int i=0;i < spritelist.size();i++) {
              Sprite s = (Sprite) spritelist.get(i);
              if (s.active()) {
                   s.update();
                   s.render(g);
    ......and for number 2
    ArrayList spritelist; // list of the sprites
    public void update(Graphics g) {
         for (int i=0;i < spritelist.size();i++) {
              Sprite s = (Sprite) spritelist.get(i);
              if (s.active()) {
                   s.update();
                   s.render(g);
              } else { spritelist.remove(i); i--; }
    ......in code 1, there will be many sprites to iterate, and in code 2, there will be many adding and removing sprite from the list
    so my question is:
    is iterating on many sprites and get it's active status is faster or
    iterate on few sprites and use ArrayList.add() and ArrayList.remove()
    Thanks in advance........

    Rules about optimizing:
    1)     Dont do it.
    2)     (experts only) Dont do it yet.
    Do you have less than 10000 sprites? Do you add or remove more than 1000 sprites for each iteration in the game loop?
    The answer is likely to be no.
    Is the time it takes to do the painting of one single sprite plus the time it takes to do calculation regarding the movement of one single sprite grater than the time it takes to iterate over an array of 1000 sprites?
    The answer is likely to be yes.
    So, in what part of your code should you twist your head to do some optimizing?
    Not here!
    And where should you concentrate about maintainability?

  • Shutdown or Sleep, which one is better??

    I usually use my Mac Mini about 3 hours a day. At the end of the day, should I shutdown the machine or simply put it in sleep mode? Which one is better? What is the difference?
    Mac Mini   Mac OS X (10.4.6)  

    791/3237
    Hi Snawman,
    I agree with the others. In your case, better shut it down for saving energy.
    "Which one is better? What is the difference?":
    - Sleep allows to very quickly resume any task that was running. Leave all applications, documents etc open, they'll just be here at the same place, in the same state, as when you left your computer.
    It's just a matter of quickly going back to work, not having to retype some websites login passwords for example, etc.
    - On the wear and tear point of view, the difference is so small, your Mini will be obsolete and replaced with a newer Mac, far before something breaks down just because of to many cold boots!
    Yes, the most demanding task for a computer's hardware (and probably OS too), is a cold boot.
    Sleep, instead of Shutdown, keeps your computer components from a lot of temperature fluctuations, and the hard disk too just spins down, instead of completely setting itself down, then up again from scratch (and cold).
    Again,
    these differences exist, but they are not so important that you would take them into account and change your energy saving habits.
    - Macs are well designed to cope with many different kinds of users/usages.
    "About running yourself the nightly automatic maintenance":
    In case you didn't know already about this: yes, just open Terminal and paste this command
    sudo periodic daily weekly monthly
    once or twice a month.
    In order to make sure all three maintenance tasks run until the end, after you entered your admin password and hit Return, just leave Terminal open like 15 minutes or so (until you see its prompt again).
    There is no hurry to quit it, as the maintenance runs in the background: Just use your computer in the meanwhile.
    Enjoy your Mac!
    Axl

  • For developer's point of view which one is better- 10g or 11g

    guys please help me out.
    let me konw from developer's point of view which one is better 11g or 10g.
    i want to apply for oracle.

    user9342767 wrote:
    guys please help me out.
    let me konw from developer's point of view which one is better 11g or 10g.
    i want to apply for oracle.Assuming you are talking about Oracle Database 10g and Oracle Database 11g, and not any of the other products that use the brands 10g and 11g (and assuming you want to discuss that here instead of the appropriate product forum where it belongs), here are some of my thoughts:
    - if you are not using any 11g features, nor any new-in-10g features that have been fixed in 11g, it does not matter;
    - if you are using 11g features, then 11g is the way to go;
    - if you want (or want your customers to have) regular support past July of this year, go 11g;
    - if you want the latest fixes in the optimizer, go 11g;
    - if you want to save yourself code by using database features, look at the docs and see whether they will help.

  • Which one is better EP with ABAP or EP with Java

    Hi Experts,
    Please tell me Which one is better EP with ABAP or EP with Java for learning and useful in USA?
    Regards
    Jana

    What programming background do you already have?  You should match up the flavor of Web Dynpro that matches the skill sets you already have?  Do you have ERP or other Business Suite experience already?  If so you will find that WDA is often used in conjunction with the Business Suite and WDJ used for composites.  So consider where your business domain experience and knowledge lies and support that as well.

  • Business Delegate- JSP or JSP- JavaBean, which one is better?

    My current approach is to use a struts action to call a business delegate(pojo) which will go to the session facade and get database info then the JSP simply becames a FETCHER(which helps on reusablity since I can use them for many tables), but I also know I could use struts action to just simply forward to a JSP then retrive the info via JavaBean->EjbSessionFacade
    I'm confused which one is better for performance, scalability, maintainability, etc

    Whatever flow you are following is generally used flow and its correct aslo. Dont think its a bad design. One more think you have to look into is, minimize the remote calls as much as possible. Instead of doing many remote calls you can use EJB local object to process all your business logic and finally you can come out using single Remote call for a process. Look after this.. it will improve performance.

  • Create custom forms using code or SAP B1 Studio, which one is better?

    Hello Professionals,
    I'm new to SAP B1 9.0 SDK, i'm currently creating forms using code, but i noticed that it can be mad using SAP Business Studio,
    from your experience, which one is better for performance and quality wise?.
    Your help would be greatly appreciated
    Thanks in advance

    Hi Karem,
    http://www.mepa.ch/images/documentation/B1_90_WorkWithStudioSuite.pdf
    Please Refer The Link and Start Working with Studio..
    All the best
    Regards,
    Mayank Shah   

  • Macbook pro retina samsung panel, lg panel, which one is better?

    macbook pro retina samsung panel, lg panel, which one is better?

    grim992 wrote:
    So are the macbook pro retina early 2013 version with LG panel having IR issue?
    Mine hasn't yet but time may tell. At the same time I asked a question on the endless IR thread and never got an answer: to what extent is how the rMBP being used driving image retention?
    I'm sure there are other variables but the one that comes to mind first is how bright is the screen run? I would imagine that a monitor set to full brightness (as one user who complained about IR did) would accelerate any tendency toward IR and the closer to "full-on" it's set, the sooner that would happen. I have mine set to "5" of the available range and for the first week, I ran the Image Retention Test in all its variations repeatedly without a hint of IR. We also don't know whether the LG at full brightness can illuminate an auditorium while the Samsung can only light up a room or vice-versa.
    Other variables could be: is the screen saver used; how long before it kicks in; is the rMBP the only computer so it's used constantly; is it ever powered off or is the monitor just allowed to sleep?
    Based on those thousands of posts, the original LG's appear to be more prone to IR than the Samsung, but there hasn't been the same flood of complaints with the LG SJA2's, at least not yet. At the same time, there hasn't been any attention I could find about contributing factors either.
    And notably,  way back when the Samsung started to be the Holy Grail, I don't remember complaints about color problems; that seems to have cropped up recently.

  • Hi. I am preparing for CA Bar Exam. I am considering buying MacBook Pro for exam writing. One is 13 inch 1499 dollar 2.5 GHz 8GB, the other is 15 inch MacBook Pro 2.7 GHz 2799 dollar 16 GB. Both are retina. Which one is better for me?

    Hi. I am preparing for CA Bar Exam. I am considering buying MacBook Pro for exam writing. One is 13 inch 1499 dollar 2.5 GHz 8GB, the other is 15 inch MacBook Pro 2.7 GHz 2799 dollar 16 GB. Both are retina. Which one is better for me?
    I will use Barclays Card for 18 month free interest.
    I wil ask Apple clerk to avoid LG monitor.
    I will buy those in Apple store.
    Which one will you recommend?

    Tha's something you need to decide for yourself.
    Do you think you need 16GB of memory or 8 will be enough?
    Do you need to carry your macbook around with you more often? if so just get the 13" it's easier to carry.
    Or maybe you enjoy watching media on a bigger screen?
    As for word processing it shouldn't be a problem on both notebooks.
    Also can you afford buying the 15"?
    And what about the hard drive capacity?
    So my advice is to consider these aspects, make a list of pros and cons and see what you come up with

Maybe you are looking for

  • Adobe Reader XI - No pages were selected to print

    Trying to print PDF's in Adobe Reader XI when trying to print the error message "No pages were selected to print" appears. Trying to print from a network printer, the printer itself is a Dell 2135cn MFP PCL6. I'm working on a cloud server and a colle

  • Lumia 822 - bad choice...out of luck i guess

    I bought the Nokia Lumia 822 when I renewed my contract. Early on the phone was randomly turning itself off during the day and at night. I do not have a land line at home and this is also my business phone. Random shut downs are not safe at night nor

  • HD space...

    I am attempting to utilize as much HD space as possible. I run FCE HD which allows me to set scratch discs... I use my external HD's for this... My question is... my library Folder (the one with books on it) is 9.14 GBs... what is in there that takes

  • Aironet 350~~ Help Factory Settings must be RESTORED

    Hello, I am the proud and happy new owner of the Cico Aironet 350 wireless access point. Now the issue (acquired by the company's buyout of another one), needless to say when I get it there is no username/passwords included. Just the cable/power supp

  • Allow stacks in collections

    I have my collection organized by collections, not by folders. However, Lightroom2 only allows me to use the wonderful stack functionality in the folders, not inside of collections. This for all intents and purposes that the stacks function, which sh