HT3819 I want to send my itunes library from my old macbook (start up disk nearly full) to my new iMac then delete my itunes library from my old macbook.  Is Homesharing my best choice for this?

I want to send my itunes library from my old macbook (start up disk nearly full) to my new iMac.   Then delete my itunes library from my old macbook.  Is Homesharing my best choice for this?
What I don't want to happen is once I delete my itunes library from my old Macbook that the iMac itunes library to delete itself because I am using Homesharing.  Does homesharing sync and make that happen?

Here is some help.
https://discussions.apple.com/thread/3849933
After confirming that all your stuff is on the drive, delete the photos you have copied. You will need to empty the iPhototrash to free up the space.

Similar Messages

  • I set up my new iPad, then deleted the Pages documents on my old iPad, but this had the effect of deleting them on my new iPad too because they are synced. How do I retrieve the deleted documents?

    I set up my new iPad, then deleted the Pages documents on my old iPad, but this had the effect of deleting them on my new iPad too because they are synced. How do I retrieve the deleted documents?

    Sorry no. That's how it works.
    Check if you still have an old backup and do a restore otherwise it's gone.

  • Is RMI best choice for this?

    Hello!
    I have some experience using the .NET Remoting with VB. I have understood that Java RMI is Java equivalent to .NET Remoting?
    I'd like to serialize my objects and transfer them between the server and the client in internet.
    I have red some opinions saying that RMI is good for intranet but does have major latency and scalability issues when it comes to internet.
    Is the Java RMI best solution for this? What are the other techniques available with Java?
    - Jarno Kiviaho

    OK: You want to use RMI to connect an outside-the-firewall web server to a behind-the-firewall business logic server.
    This is probably not too bad.
    There are a couple ways that you can go.
    1. Use RMI with HTTP tunnelling. I've never dealt with this, but you can probably find more about this searching this forum.
    2. If you can get some ports opened for you in the firewall, then you can use the RMI transport and skip the HTTP stuff.
    In the latter case, you
    o Need to talk your firewall folks into opening two ports for you - one for a registry listener, the other for actual remote procedure calls.
    o You need to make sure that your RMI server is designed to operate through one fixed port, rather than using random port numbers. Take a look back through this forum and again, you'll find people who have done this. (I did an implementation by providing my own SocketFactory, but I believe RMI has been improved since then so that the server can simply ask for the socket numer it wants.)

  • My macbook start up disk is full and i have to delete files to make room for updates. how do you make room on start up disk?

    how do you delete files from start up disk on my mac book?

    Freeing Up Space on The Hard Drive
      1. See Lion's Storage Display.
      2. You can remove data from your Home folder except for the /Home/Library/ folder.
      3. Visit The XLab FAQs and read the FAQ on freeing up space on your hard drive.
      4. Also see Freeing space on your Mac OS X startup disk.
      5. See Where did my Disk Space go?
      6. See The Storage Display.
    You must Empty the Trash in order to recover the space they occupied on the hard drive.
    You should consider replacing the drive with a larger one. Check out OWC for drives, tutorials, and toolkits.
    Try using OmniDiskSweeper 1.8 or GrandPerspective to search your drive for large files and where they are located.
    Please read my user tip to learn all about "Other:" What is "Other" and What Can I Do About It?- Apple Support Communities.

  • My iphone storage is full due to my large photo library. As I want to go on taking more photos, if I back up my phone to icloud, can I then delete all my photos from my iphone to make room for new photos?

    My iphone storage is full due to my large photo library. As I want to go on taking more photos, if I back up my phone to icloud, can I then delete all my photos from my iphone to make room for new photos? Or will the next time I back up lose all those previously backed up as it is a 'new' set of data?
    I just want to find the easiest and safest way of not losing all my photos while being able to take more than my iPhones storage worth as it is already full - can someone help me please? I thought icloud was the solution to not uploading my photos to the mac but I'm not sure if the way it's going is working and don't want to delete photos or lose my phone and then find out what I'm doing isn't actually storing my photos permanently. Thanks

    Hey EmilyEliza,
    As you are clearly aware, it is important for you to have backups of your important data, including all of these photos you are currently keeping on your iPhone. While it is possible to use iTunes or iCloud to do backups of your iPhone, the problem becomes how to access those backups if you have deleted the photos from your iPhone. Once you have done the backup and then removed the photos from the iPhone, the only way to access the photos is by restoring the backups to the phone. See this article for information about backups made from the iPhone -
    Back up and restore your iPhone, iPad, or iPod touch using iCloud or iTunes - Apple Support
    If you want to easily access the photos once they are off of the iPhone, another approach to this would be to import your photos from the iPhone into an application on your Mac, such as iPhoto. To learn how to do this, use the steps in this article -
    Import photos and videos from your iPhone, iPad, or iPod touch to your Mac or Windows PC - Apple Support
    Once those photos are on your computer, it is still important to back up those photos to somewhere else, so you can be sure of their safety before removing them from the iPhone. Your Mac’s Time Machine application is one method of doing this -
    Mac Basics: Time Machine backs up your Mac - Apple Support
    Thanks for using Apple Support Communities.
    Happy computing,
    Brett L

  • Best choice for a date column in forms

    Hello,
    I want to know what is the best choice for a date field that the user have to enter manually. I read on a other post that a calender control is not directly implemented in forms 9i. So what is the best choice to be "user friendly" with a date field in a form?
    thanks in advance.

    Hi
    Don't know if this would be much use to you, but I wrote this function 'Check_Date' a while back to check whether the user had typed something which could be interpreted as a date. You'd make your date field into a Text Item, and include a call to this function (which could be in your form, or in a library) in the WHEN-VALIDATE-ITEM trigger on the item, ie:
    IF NOT check_date(:ITEMS.date_item1, NULL, NULL) THEN
        RAISE FORM_TRIGGER_FAILURE;
    END IF;This would mean that the user could type 'T' or '*' for today, '+1' for tomorrow, '-7' for one week ago, or the date in a variety of formats. When they leave the field, the function tries to resolve what they've typed into a date, and sets the field to a date in the correct format.
    ('Display_Alert' is just a function to display a named alert with a message.) It can also be used to check that the date entered doesn't fall outside upper and lower bounds. Code follows:
    FUNCTION Check_Date (text_in        IN OUT VARCHAR2,
                         lower_bound_in IN DATE,
                         upper_bound_in IN DATE)
    RETURN BOOLEAN IS
    first_letter      VARCHAR2(1)  := SUBSTR(text_in, 1, 1);
    date_ok           BOOLEAN;
    this_date         DATE;
    date_diff         NUMBER(8);
    output_format     VARCHAR2(12) := Get_Application_Property(BUILTIN_DATE_FORMAT);
    TYPE date_format_table_type IS TABLE OF VARCHAR2(12)
    INDEX BY BINARY_INTEGER;
    date_format_table    date_format_table_type;
    BEGIN
        --Set up table of date formats in order they'll be tested for
        date_format_table(1)  := 'DD-MON-RRRR';
        date_format_table(2)  := 'DD-MM-RRRR';
        date_format_table(3)  := 'DD-MM';
        date_format_table(4)  := 'DD-MON';
        date_format_table(5)  := 'YYYY-MM-DD';
        date_format_table(6)  := 'YYYY-MON-DD';
        --Use of T, or * for today's date...
        IF UPPER(text_in) IN ('T', '*') THEN
               this_date := SYSDATE;
               date_ok := TRUE;
        --Look for use of +x/-x for number of days different from today
        ELSIF first_letter IN ('+', '-') THEN
               BEGIN
                   date_diff := TO_NUMBER(SUBSTR(text_in, 2));
                   IF first_letter = '+' THEN
                       this_date := SYSDATE + date_diff;
                   ELSE
                          this_date := SYSDATE - date_diff;
                   END IF;
                   date_ok := TRUE;              
               EXCEPTION
                      WHEN VALUE_ERROR THEN
                          --User has entered something like '+X', so not valid
                          date_ok := FALSE;
               END;
        ELSE
            --Go through all the possible formats for date entry,
            --if any give a valid date, then return that.
            FOR ix IN date_format_table.FIRST..date_format_table.LAST LOOP
                   EXIT WHEN date_ok;
                BEGIN
                       --Try creating a date using the format masks in the local
                       --table.  If no good, this will throw an INVALID_DATE exception
                       this_date := TO_DATE(text_in, date_format_table(ix));
                       date_ok := TRUE;
                   EXCEPTION
                       WHEN OTHERS THEN
                           date_ok := FALSE;
                   END;
            END LOOP;
        END IF;
        IF date_ok THEN         
               --Check for violation of lower/upper bounds on date
               IF (lower_bound_in IS NOT NULL AND this_date < lower_bound_in) THEN
                   Display_Alert('info_alert', 'Date cannot be before '||TO_CHAR(lower_bound_in, output_format));
                   date_ok := FALSE;
               ELSIF (upper_bound_in IS NOT NULL AND this_date > upper_bound_in) THEN
                   Display_Alert('info_alert', 'Date cannot be after '||TO_CHAR(upper_bound_in, output_format));
                   date_ok := FALSE;
               ELSE
                      text_in := TO_CHAR(this_date, output_format);
               END IF;
        ELSE
            Display_Alert('INFO_ALERT', text_in||' is not a valid date !!');
        END IF;
        RETURN date_ok;
    END;Hope this is useful.
    regards
    Andrew
    UK

  • Best choice for a proxy server on NT?

    Hi, I'm wondering what the best choice for a proxy server is on NT?
              Currently I'm running a 2 WL server cluster, but this will grow rapidly. If
              all of the pages that I will be handling will be .jsp (with the exception of
              1 or 2 servlets), which is the best configuration (performance wise) to go
              with?
              Should I use a Weblogic Servlet, NSAPI, or ISAPI to do the proxiing. My
              guess was that IIS would perform the best on an NT machine and that it would
              not be as large as a memory hog as Weblogic would be to simply run as a
              proxy. Is there a significant amount of latency produced by the ISAPI
              bridge?
              Any suggestions?
              Thanks,
              Chris
              

    Chris,
              Please do not cross post across the newsgroups. We would very much
              appreciate it.
              There is a response to this message posted on the performance newsgroup if
              you're interested.
              Thank you so much!
              Michael Girdley
              BEA Product Manager
              Chris <[email protected]> wrote in message
              news:851ks4$auk$[email protected]..
              > Hi, I'm wondering what the best choice for a proxy server is on NT?
              >
              > Currently I'm running a 2 WL server cluster, but this will grow rapidly.
              If
              > all of the pages that I will be handling will be .jsp (with the exception
              of
              > 1 or 2 servlets), which is the best configuration (performance wise) to go
              > with?
              >
              > Should I use a Weblogic Servlet, NSAPI, or ISAPI to do the proxiing. My
              > guess was that IIS would perform the best on an NT machine and that it
              would
              > not be as large as a memory hog as Weblogic would be to simply run as a
              > proxy. Is there a significant amount of latency produced by the ISAPI
              > bridge?
              >
              > Any suggestions?
              >
              > Thanks,
              > Chris
              >
              >
              

  • What’s the best practice for this scenario?

    Hi,
    My users want the ability to change the WHERE and/or ORDER BY clause at runtime. They may define user preferences on each screen ( which is bind to a view object). They want to see the same records based on WHERE/ORDER BY defined on the last visit. That is why I keep the users preferences and load the screen based on that, using :
    View.setWhereClause(...);
    View.setOrderByClause(...);
    View.executeQuery();
    This works good when only one user working with the application but faced low performance when more than one user working with the application.
    What are the points to increase the performance and what is the best practice for this scenario?
    Thanks for your help in advance.

    Sung,
    I am talking only about 2 users in my testing. I am sure i missed something but could not recognize that.
    This page is my custom query page including a tag to instantiate app module in stateful mode at the top <jbo:ApplicationModule..> and a tag to instantiate data source <jbo:Datasource...> and release tag at the bottom <jbo:ReleasePageResources..> and some java code in the middle(body). The java code constructed the query statement and then fires the query to set the view object based on the query statement using the above methods.
    So, I am facing very slow performance(speed) when two clients load this page at the same time. Looks like the entire application locks for others when one client load this page and fire the query. i realized the battle neck is where executeQuery() is executing.
    what do you think.
    Thanks in advance for your comments.

  • Best choice for a bluetooth car kit for the 4S?

    I want to add a car kit to my 2004 MINI I have the Aux in jack for the audio HK ans XM radio system that came with the car but the 2004 Nokia bluetooth kit that was installed when the car was new only worked with a 2004 Nokia feature phone and after I replaced that phone with a motorola phone in06 I have had to use a Jabla ear piece for hands free in the car... and with the new 4S I would like to fit a proper working bluetooth car kit I understand there is something new about how bluetooth is implimented in the 4S that is causing some problems with car kits.
    has a concesis as to what should be bought yet? if not if the smart thing to do to wait a few months?

    Chris,
              Please do not cross post across the newsgroups. We would very much
              appreciate it.
              There is a response to this message posted on the performance newsgroup if
              you're interested.
              Thank you so much!
              Michael Girdley
              BEA Product Manager
              Chris <[email protected]> wrote in message
              news:851ks4$auk$[email protected]..
              > Hi, I'm wondering what the best choice for a proxy server is on NT?
              >
              > Currently I'm running a 2 WL server cluster, but this will grow rapidly.
              If
              > all of the pages that I will be handling will be .jsp (with the exception
              of
              > 1 or 2 servlets), which is the best configuration (performance wise) to go
              > with?
              >
              > Should I use a Weblogic Servlet, NSAPI, or ISAPI to do the proxiing. My
              > guess was that IIS would perform the best on an NT machine and that it
              would
              > not be as large as a memory hog as Weblogic would be to simply run as a
              > proxy. Is there a significant amount of latency produced by the ISAPI
              > bridge?
              >
              > Any suggestions?
              >
              > Thanks,
              > Chris
              >
              >
              

  • H.264 What is the best use for this? H.264 Pros & Cons?

    I wanted to know since I am using DV what if any role can H.264 play in my workflow? What are the intended or best uses for this? What are H.264 pros and cons? Will it produce higher quality than DV?
    As always thanks in advance for reading and replying to my post,
    Sebastian

    It will not make DV look better, it is a MPEG4 based compression format for material to be delivered over the web. As such, encoding your material to it it is the last step in the editing process.
    x

  • S260 & the best choice for battery life

    hi,
    with a s260, what's the best choice for the microprocessor for having the best battery life?
    is there tips for increasing the battery life ? (software tuning, adding battery...)
    why the fan run at a low temperature?
    thanks,

    This is what Apple has to say...
    http://www.apple.com/batteries/iphone.html

  • JSF - Tomcat security...what is the best choice for a high activity site

    JSF - Tomcat security...what is the best choice for a high activity site
    The JDBCRealm is not multithreaded so what are options for high activity site??
    I would like to have Apache as front end doing load balancing, Tomcat as server and JSF.
    All ideals and suggestions please.
    Thanks
    Phil

    One more question.
    Since Tomcat has this setup.
    create table users (
    user_name varchar(15) not null primary key,
    user_pass varchar(15) not null
    create table user_roles (
    user_name varchar(15) not null,
    role_name varchar(15) not null,
    primary key (user_name, role_name)
    It seems like a huge pain to keep a user with every role. What happens when you have 500,000 users???
    Also, the authentications on every page....would it be easier to login once and setup a session bean check that on with the page header ??
    Thanks
    Phil

  • What is the best choice for our project? Thanks

    We are a startup company and developing a webiste with two mobile app.
    We use PHP in the server side and write with a private framework.
    We don't want to use any host-specific APIs so that we can move to other cloud server easily.
    In our case, can we use Website option in Azure?
    If the answer is yes. What is the best choice for us, VM or website? We need scalability in the future.
    Thanks!

    hi,
    It depends on your requirement. Base on my experience, VM or website all could meet your requirement. From your description, You could use azure website to host your php website (http://www.windowsazure.com/en-us/documentation/articles/web-sites-php-configure/).
    And you could use website auto scale feature in the future. I suggest you could see their comparison (http://www.windowsazure.com/en-us/documentation/articles/choose-web-site-cloud-service-vm/
    Hope it helps.
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • The best choice for the 2nd exam

    Hi friends,
    I'm going to obtain a certification as Oracle PL/SQL Developer Certified Associate and I need to know, for the second exam, what is the best choice for a newbie:
    Program with PL/SQL 1Z0-147
    OR
    Oracle Database 11g: Program with PL/SQL 1Z0-144
    Thank you,
    Ion

    user5310220 wrote:
    Hello All,
    Next week am going for 1z0-144. Is anybody out there who has already cleared this exams and can help me about the kind of questions asked in it (like more practical or conceptual). Also about any special kind of book he studied apart from steven 4th edition.
    Thanks for your help.
    DG.... Well after seeing other replies .... I think you need a bit of encourgement ... so good luck.
    I have not actually taken this even.
    You MAY glean a little from the JG videos .... (but be aware many will ay it tells them nothing) .... [http://blogs.oracle.com/certification/2009/08/0096.html]
    What follows is a little of what you may expect ...
    The questions are obviously multiple choice .... at OCA level most will probably indicate the number of correct answers required (as opposed to select all correct answers ... expect to see more of those at OCP/OCE). A few may be drag and drop or something similarly fancy. Some will offer exhibits to be viewed. However there should be enough time for the reasonably able candidate to complete the exam hilst reading questions carefully if they do not daydream.
    Most production exams have a set of 10 sample questions (IMHO often not of the highest quality and I am inclined to refer to them as the beta (program) rejects .... questions that didnt make it from the beta exam to the production exam .... and I don't really a justification for that). No such luck with 1z0-144 as far as I can se though.
    This is a modern exam; and the questions will probably tend to reflect that. The questions will be most like 1z0-051 questions than 1z0-007 questions.
    Therefore the sample questions from 1z0-051 may give a simple insight into the variation of question types o expect [http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=303&p_certName=SQ1Z0_051]. (Be aware this is a very small ... and possilby skewed ... sample).
    This is probably not what you are looking for .... but is about as far as I can go.
    Anyone who has taken the exam is bound by non-disclosure agreements and there is very little anyone can sensibly say without possilby getting themselves into trouble.
    Rgds - bigdelboy.

  • Captivate..best choice for Quizzes?

    I am wondering if Captivate is the best choice for quiz development. I am used to the creative possibilities with Flash and find the "templated" nature of Captivate limiting and frustrating. I would like some validation from you Captivate users before I spend too much more time trying to get this lame application to work for me. (maybe it's me that is lame but I am frustrated). Do you all think this is a viable application that is worthy of the learning curve and limitations?
    Thank you
    Rich Gilman

    Hi Rich,
    I happen to be a big fan of Captivate. I've been using it since it's RoboDemo days and it keeps getting better. That having been said, if your primary need is to develop quizzes, there are better options out there.  I tend to use Captivate quizzing only when I want to add a few questions as an integrated part of a course. If I wanted to develop a stand alone quiz, I would turn elsewhere. If you have the Flash skills, there's no reason not to use Flash. There are also programs specifically designed for quiz development.
    One person's opinion!
    ERR229

Maybe you are looking for

  • Exporting to Excel data only using sub reports in Crytal 9

    Post Author: pmstar CA Forum: Exporting I am using Crystal 9 verision. I have .rpt file that used 4 sub reports .In the main report I placed all the sub reports in the(detail section) row  and using the data for some caluculation in the main report t

  • Aperture won't import DNG files with my adjustments from LR

    When I export my images from LR2 as DNG and import them into Aperture3, although they look fine in the import window, when I view them in projects they have lost all the modifications I put into them. I then tried to import them as TIFF 16 which work

  • PO EDI Problem

    Hi, I want to save the file to my local machine when the output is issued. I want to use EDI. Please help me in configuration. I have configured the partner profile in WE20. I have created the File Port and specified the directory path as d drive. I

  • Java 3D Installation Problem... pls it�s URGENT

    Hi, I've tried to install java 3d software but I get the following error message while executing a program. I don't understand where is the problem... Can anybody help me out? I' ve Suse Linux 8.2. I posted in java 3d forum but no response. Thanks. E

  • Could not activate cellular data in iPad

    Could not activate cellular data in iPad