Can I swap out my mechanical HDD for a Solid State?

Can I swap out my mechanical HDD (7200 RPM, 320Gb) for a solid state drive? If so, am I able to purchase such a drive, like the ones that come standard in Macbook Pros on the Apple site? Can I purchase an item like this from Apple?
If not, could someone point me in the right direction?
Also, on the same note, is it possible purchase replacement Mechanical HDD (like the one I already have) from Apple; if so, a link please?
Cheers!

You'll find everything you need here, swapping them is easy just get the right tools and take it slowly.
http://eshop.macsales.com/shop/hard-drives/2.5-Notebook/

Similar Messages

  • Can I swap out my airport card for one that handle 802.11n?

    I have an older MacBook Core Duo and I see the newer MacBook Core 2 Duo can connect using 802.11n?
    Is it possible to swap out the airport card in my MacBook with an updated one to get the faster speeds?
    Thanks

    Yes, there are third-party cards that will work. QuickerTek has one that should work.

  • Can't figure out the correct syntax for this select statement

    Hello,
    The following statement works great and gives the desired results:
    prompt
    prompt Using WITH t
    prompt
    with t as
       select a.proj_id,
              a.proj_start,
              a.proj_end,
              case when (
                         select min(a.proj_start)
                           from v b
                          where (a.proj_start  = b.proj_end)
                            and (a.proj_id    != b.proj_id)
                        is not null then 0 else 1
              end as flag
         from v a
        order by a.proj_start
    select proj_id,
           proj_start,
           proj_end,
           flag,
           -- the following select statement is what I am having a hard time
           -- "duplicating" without using the WITH clause
            select sum(t2.flag)
              from t t2
             where t2.proj_end <= t.proj_end
           ) s
      from t;As an academic exercise I wanted to rewrite the above statement without using the WITH clause, I tried this (among dozens of other tries - I've hit a mental block and can't figure it out):
    prompt
    prompt without with
    prompt
    select c.proj_id,
           c.proj_start,
           c.proj_end,
           c.flag,
           -- This is what I've tried as the equivalent statement but, it is
           -- syntactically incorrect.  What's the correct syntax for what this
           -- statement is intended ?
            select sum(t2.flag)
              from c t2
             where t2.proj_end <= c.proj_end
           ) as proj_grp
      from (
            select a.proj_id,
                   a.proj_start,
                   a.proj_end,
                   case when (
                              select min(a.proj_start)
                                from v b
                               where (a.proj_start  = b.proj_end)
                                 and (a.proj_id    != b.proj_id)
                             is not null then 0 else 1
                   end as flag
              from v a
             order by a.proj_start
           ) c;Thank you for helping, much appreciated.
    John.
    PS: The DDL for the table v used by the above statements is:
    drop table v;
    create table v (
    proj_id         number,
    proj_start      date,
    proj_end        date
    insert into v values
           ( 1, to_date('01-JAN-2005', 'dd-mon-yyyy'),
                to_date('02-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 2, to_date('02-JAN-2005', 'dd-mon-yyyy'),
                to_date('03-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 3, to_date('03-JAN-2005', 'dd-mon-yyyy'),
                to_date('04-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 4, to_date('04-JAN-2005', 'dd-mon-yyyy'),
                to_date('05-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 5, to_date('06-JAN-2005', 'dd-mon-yyyy'),
                to_date('07-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 6, to_date('16-JAN-2005', 'dd-mon-yyyy'),
                to_date('17-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 7, to_date('17-JAN-2005', 'dd-mon-yyyy'),
                to_date('18-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 8, to_date('18-JAN-2005', 'dd-mon-yyyy'),
                to_date('19-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 9, to_date('19-JAN-2005', 'dd-mon-yyyy'),
                to_date('20-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           (10, to_date('21-JAN-2005', 'dd-mon-yyyy'),
                to_date('22-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           (11, to_date('26-JAN-2005', 'dd-mon-yyyy'),
                to_date('27-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           (12, to_date('27-JAN-2005', 'dd-mon-yyyy'),
                to_date('28-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           (13, to_date('28-JAN-2005', 'dd-mon-yyyy'),
                to_date('29-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           (14, to_date('29-JAN-2005', 'dd-mon-yyyy'),
                to_date('30-JAN-2005', 'dd-mon-yyyy'));

    Hi, John,
    Not that you asked, but as you proabably know, analytic functions are much better at doing this kind of thing.
    You may be amazed (as I continually am) by how simple and efficient these queries can be.
    For example:
    WITH     got_grp          AS
         SELECT     proj_id, proj_start, proj_end
         ,     proj_end - SUM (proj_end - proj_start) OVER (ORDER BY  proj_start)     AS grp
         FROM     v
    SELECT       ROW_NUMBER () OVER (ORDER BY grp)     AS proj_grp
    ,       MIN (proj_start)                         AS proj_start
    ,       MAX (proj_end)               AS proj_end
    FROM       got_grp
    GROUP BY  grp
    ORDER BY  proj_start
    ;Produces the results you want:
      PROJ_GRP PROJ_START  PROJ_END
             1 01-Jan-2005 05-Jan-2005
             2 06-Jan-2005 07-Jan-2005
             3 16-Jan-2005 20-Jan-2005
             4 21-Jan-2005 22-Jan-2005
             5 26-Jan-2005 30-Jan-2005This is problem is an example of Neighbor-Defined Groups . You want to GROUP BY something that has 5 distinct values, to get the 5 rows above, but there's nothing in the table itself that tells you to which group each row belongs. The groups are not defined by any column in hte table, but by relationships between rows. In this case, a row is in the same group as its neighbor (the row immediatly before or after it when sorted by proj_start or proj_end) if proj_end of the earlier row is the same as proj_start of the later row. That is, there is nothing about 03-Jan-2005 that says the row with proj_id=2 is in the first group, or even that it is in the same group with its neighbor, the row with proj_id=3. Only the relation between those rows, the fact that the earlier row has end_date=03-Jan-2005 and the later row has start_date=03-Jan-2003, that says these neighbors belong to the same group.
    You're figuring out when a new group starts, and then counting how many groups have already started to see to which group each row belongs. That's a prefectly natural procedural way of approaching the problem. But SQL is not a procedural language, and sometimes another approach is much more efficient. In this case, as in many others, a Constant Difference defines the groups. The difference between proj_end (or proj_start, it doesn't matter in this case) and the total duratiojn of the rows up to that date determines a group. The actual value of that difference means nothing to you or anybody else, so I used ROW_NUMBER in the query above to map those distinct values into consecutive integers 1, 2, 3, ... which are a much simpler way to identify the groups.
    Note that the query above only requires one pass through the table, and only requires one sub-query. It does not need a WITH clause; you could easily make got_grp an in-line view.
    If you used analytic functions (LEAD or LAG) to compute flag, and then to compute proj_grp (COUNT or SUM), you would need two sub-queries, one for each analytic function, but you would still only need one pass through the table. Also, those sub-queries could be in-line views; yiou would not need to use a WITH clause.

  • Can I swap out my Combo drive for a Super drive?

    Hey guys,
    I have 1GHz G4 iMac Dual USB & was wondering if I could replace the Combo Drive with a "Super" Drive.
    Any ideas?

    Ben,
    You can do it, but do you really want to? I think an external is a better option. Having two DVD drives is a huge advantage. It makes copying DVDs a snap.
    Here's the link to how to change the drive. It will give you a look at what your in for if you attempt it.
    http://www.xlr8yourmac.com/systems/iMacg4/imacg4takeapart.html

  • IPhone 5 - Can I swap out the sim card to use in China?

    Can I swap out the US Verizon sim card in my iPhone 5 to use in China with a local Chinese carrier?  What needs to happen?
    Thanks,
    Dxeph

    Nicholas,
    Thank you for the quick response!

  • Can i swap a broken iphone 4 for a new white one?

    can i swap a broken iphone 4 for a new white one?

    No, you cannot. The only option you have is to sell the old phone to someone (i.e. Craig's List, eBay) and purchase the white one. You can either try to purchase subsidized somewhat or purchase outright. Any warranty or out of warranty exchanges at Apple are for the same size, color, model of phone you bring in.

  • Can i swap mt imac 21.5inc for a mac book air 11.6inc

    Can i swap my imac 21.5inc for a mac book air 11.6inc ?

    No. You can return it if you are within the return period and then purchase a MacBook Air separately.

  • Can I swap my black iPhone 4S for a white iPhone 5

    Can I swap my black iPhone 4S for a white iPhone 5

    Not at Apple unless you purchased the 4S within the last 14 days.

  • Can you swap out the logicboard of an older model mac for a newer one?

    So i just bought a mac on ebay, its in good working condition, however i was wondering if i was able to swap out an older model logicboard for a new one.  The mac i currently have is a unibody mac, MB466LL/A, and the logic board i was looking to possible switch it out with would be the (Logic Board 661-6158 820-2936-B.)  Let me know if this is possible.  Work on computers often and have built many pc's so that aspect will not be a problem, im just wondering if this request is feasible.

    Yes, its possible.
    Step one: Buy a second, fully working MacBook of the model you want.
    Step two: Sell the first MacBook you bought.

  • If I have a bootable copy of a disk running 10.4.11, is there any reason I can't swap out the internal drive of a newly purchased Mac Pro and have it boot from the tiger disk? Thanks very much for any insight.

    or is there some sort of built in protection against this.

    In addition, if you are talking about an older machine like a G4 or earlier with PATA drives, the Mac Pro uses SATA drives, so this is not a simple swap out, but if there's room an adapter like this might work in that situation: 
    http://eshop.macsales.com/item/Sonnet%20Technology/TPASA/
    so that you could use the drive in the new computer to copy the data files, not for booting the OS.
    If you need to transfer files from one machine to the other, you could do this over a network, or use FW target drive mode, or get a universal bare drive cable adapter.
    http://eshop.macsales.com/item/Newer%20Technology/U3NVSPATA/

  • Can I swap out Pegasus RAID HDs?

    I'm looking at buying a thunderbolt RAID system and my eye is trained on the Pegasus 4TB RAID system. My plan is two buy it and take out 3 of 4 of the HDs and replace them with my 3 Hitachi 7200rpm 2TB HDs which would give me more capacity. Can I do this? I'm new to RAID and just want to be certain I can swap out the HDs before buying it.

    Will be a miracle if it works with ther certified drives, I cannot imagine what you can see with other drives....
    good luck!
    No support if you change their original drives but you can put back them in case of a unit failure.
    R4 shoud support any up to 4tb hdd.
    My R4 arrived DOA just to tell you how is serious this company....they assemble and ship, the final test will be at your home with your waste of time for tests and waiting new units .
    I will never buy again from Promise specially at this top prices where you can expect at least a basic quality.

  • Will apple swap out my ipo touch for free? I was trying to put it in my wristlet and it slipped out of my hand onto cement. It still works and there is no pieces missing out of te screen.

    Will apple swap out my ipod for free bc I was putting it in my wristlet and it slipped out of my hand and fell on cement. It still works and there is no prices out Iliad the screen. It's only a week old.

    As lllaass said, you'll have to go to the Apple Store and ask. Apple is not obligated to replace your iPod, since user-caused damage is not covered by warranty, but in some cases in the past a technician has made exceptions. Such exceptions, though, are reportedly becoming much harder to grant. But you can ask.
    Regards.

  • HT1688 I have a damaged I-Phone and I need the contents of my calendar off of it. I did not have Mobile me at the time.  Can I swap out the sim card from the broken phone to a new phone and recover this calendar?

    I have an older I-Phone (3G) that for some reason the body of the phone has split in two.  This phone was a business phone and it had a lot of important information on it. I have a second phone that is also a 3G.  On the broken phone there is a lot of important information that I need in my calendar. Im not worried about anything else but the calendar.  I didn't have the Mobile Me account at that time or I would be having this problem. Does anybody know if I can ust switch out the sim cards. I just need to recover the old calendar, so im hoping that the calendar will transfer when I switch the sim card into the good 3G. If that doesn't work does anybody know of anyway that I can retrieve this information off of this phone?

    Nothing is stored on the sim card on an iPhone.  If you backed up to your computer the backup will contain your calendar events.  Otherwise, if your phone isn't functioning there is no way to back up or extract your calendar at this point.

  • Can I swap out a iPhone 4 sim card into a iPhone 5 with the same carrier?

    Here is the situation.  I used to have Sprint as my personal cellphone carrier and just had bought an iPhone 5 when my employer put me on a business cellphone plan that they pay for.  They bought one of the bargain basement original iPhone 4 handsets (not to be confused with the 4S) for employees to use, also on the Sprint network.  The phone is owned by them; the plan is paid for by them.  We just get to use it.  As a result, I decided to just close out my personal cellphone account, even though it was a better phone.  I used my 64GB iPhone 5 as my iPod, it worked great for music, apps, books, etc that I needed, and I just used the 8GB iPhone 4 just for phone calls and text messages. 
    Well recently, with the 5C and 5S being released, I wanted to know if the iPhone 4 could be upgraded by my employer to a new handset, preferably a 32 GB 5C or a 16 GB 5S.  My employer has been slow to respond, because there are so many employee accounts to weed through and most are perfectly fine with an older phone.  I am not, because the new operating system is slower on an iPhone 4 than an iPhone 5.
    I want to ask my employer if its possible to get the SIM card from the iPhone 4 just swapped out into the iPhone 5.  Is that possible?  I understand that there is a size difference in the SIM cards.  Is this something I could do myself, just pop it out and pop it in in the new handset?  Or is this something that will require going to my employer to do, or to a Sprint store and have them do it?  Do I have to be concerned with warranties being voided if I want to do this? (Keep in mind the iPhone 4 is my EMPLOYER's property, and they pay the bill as well.  My inactive iPhone 5 is MY PROPERTY and has no current cellular service.) 

    I want to ask my employer if its possible to get the SIM card from the iPhone 4 just swapped out into the iPhone 5.  Is that possible?
    No, iPhone 4/4S uses micro-sim and iPhone 5/5C/5S uses nano-sim.

  • How can I find out my data usage for the past 3 months?

    Greetings all, I have been a long time Verizon customer, and as such I, along with my husband, was grandfathered into the unlimited data plan. When I last spoke to a representative, they informed me that the only way we were going to be able to keep our unlimited data was by paying the full retail price ($600+) to get a new phone. So we were considering upgrading and changing to one of the newer data plans so we could still get the discounted price on the new phone, but I would like to make sure I choose one with enough data, without paying for a bunch of data that I don't use, however MyVerizon only shows me the amount I have used since the start of the billing cycle. Is there a way to find out the data usage for both my husband and myself for the last 3 months so I can choose the right option?
    Thanks in advance for your help!

        Hello sweetpea1221! How exciting that you're considering upgrading with us. mrhelper is helpful, indeed. You can view your data usage for each line under the View Bill option via your My Verizon account. You can also view your 3 month average  data usage with our Account Analysis feature. Here's a link that will be helpful in doing so http://bit.ly/vnLjqO. I'm confident that we have a great plan to match your data needs. Please let us know if you have further questions.
    TanishaS1_VZW
    Follow us on Twitter @VZWSupport

Maybe you are looking for

  • Mail fails to open after OS X upgrade

    Having recently upgrade to OS X, when I click on the Mail App, it open saying something about "upgrading existing emails...", the box then closes and nothing happens. It does this every time I try to open Mail. I've deleted my gmail account profile t

  • JCO$Exception in business connector

    hi, i am getting the following JCO$exceptions in business connector production server.Also the message said is RFC internal error.I need to know the root cause of these exceptions and how they can be resolved either in business connector side or ABAP

  • Chart/Cross-Tab

    I am fairly new to Crystal, but I am trying to build a graph that will display Jan-Dec on the X-axis, and the cumalative forecast $$ on the Y-Axis. My report fields are Jan-Dec which have $$ forecasted each month. Could anyone provide some help or gu

  • How to view custom performance counter data?

    I have created a new MVC application and have added Application Insights to the project. I modified the ApplicationInsights.config file to start collecting the performance counter for Memory\Page Faults/sec. How can I tell if this data is making it t

  • Last warehouse update time on dashboards

    Hello, I need to get information about table (dimension, cube) or complete warehouse update time. The idea is that client can see synchronization completion date on each dashboard. What is the best way to implement such functionality? Thanks