I have to re-install itunes, how can I get all my songs, apps etc back, with no access to my old itunes??

Itines was deleted from my computer and I need to re-install it but dont want to lose all my songs, apps etc. How can I get all this back onto itunes with no access to my old itunes??

Itunes was deleted?  Or your itunes library was deleted?
If it was just itunes, then your music should still be there.  Just reinstall itunes.
Otherwise just use your backup copy of your comuter to put everything back.

Similar Messages

  • I have downloaded my new itunes how can i get all my music back

    i have downloaded my new itunes how can i get all my music back

    Itunes was deleted?  Or your itunes library was deleted?
    If it was just itunes, then your music should still be there.  Just reinstall itunes.
    Otherwise just use your backup copy of your comuter to put everything back.

  • How can i get all these values in single row with comma separated?

    I have a table "abxx" with column "absg" Number(3)
    which is having following rows
    absg
    1
    3
    56
    232
    43
    436
    23
    677
    545
    367
    xxxxxx No of rows
    How can i get all these values in single row with comma separated?
    Like
    output_absg
    1,3,56,232,43,436,23,677,545,367,..,..,...............
    Can you send the query Plz!

    These all will do the same
    create or replace type string_agg_type as object
    2 (
    3 total varchar2(4000),
    4
    5 static function
    6 ODCIAggregateInitialize(sctx IN OUT string_agg_type )
    7 return number,
    8
    9 member function
    10 ODCIAggregateIterate(self IN OUT string_agg_type ,
    11 value IN varchar2 )
    12 return number,
    13
    14 member function
    15 ODCIAggregateTerminate(self IN string_agg_type,
    16 returnValue OUT varchar2,
    17 flags IN number)
    18 return number,
    19
    20 member function
    21 ODCIAggregateMerge(self IN OUT string_agg_type,
    22 ctx2 IN string_agg_type)
    23 return number
    24 );
    25 /
    create or replace type body string_agg_type
    2 is
    3
    4 static function ODCIAggregateInitialize(sctx IN OUT string_agg_type)
    5 return number
    6 is
    7 begin
    8 sctx := string_agg_type( null );
    9 return ODCIConst.Success;
    10 end;
    11
    12 member function ODCIAggregateIterate(self IN OUT string_agg_type,
    13 value IN varchar2 )
    14 return number
    15 is
    16 begin
    17 self.total := self.total || ',' || value;
    18 return ODCIConst.Success;
    19 end;
    20
    21 member function ODCIAggregateTerminate(self IN string_agg_type,
    22 returnValue OUT varchar2,
    23 flags IN number)
    24 return number
    25 is
    26 begin
    27 returnValue := ltrim(self.total,',');
    28 return ODCIConst.Success;
    29 end;
    30
    31 member function ODCIAggregateMerge(self IN OUT string_agg_type,
    32 ctx2 IN string_agg_type)
    33 return number
    34 is
    35 begin
    36 self.total := self.total || ctx2.total;
    37 return ODCIConst.Success;
    38 end;
    39
    40
    41 end;
    42 /
    Type body created.
    [email protected]>
    [email protected]> CREATE or replace
    2 FUNCTION stragg(input varchar2 )
    3 RETURN varchar2
    4 PARALLEL_ENABLE AGGREGATE USING string_agg_type;
    5 /
    CREATE OR REPLACE FUNCTION get_employees (p_deptno in emp.deptno%TYPE)
    RETURN VARCHAR2
    IS
    l_text VARCHAR2(32767) := NULL;
    BEGIN
    FOR cur_rec IN (SELECT ename FROM emp WHERE deptno = p_deptno) LOOP
    l_text := l_text || ',' || cur_rec.ename;
    END LOOP;
    RETURN LTRIM(l_text, ',');
    END;
    SHOW ERRORS
    The function can then be incorporated into a query as follows.
    COLUMN employees FORMAT A50
    SELECT deptno,
    get_employees(deptno) AS employees
    FROM emp
    GROUP by deptno;
    ###########################################3
    SELECT SUBSTR(STR,2) FROM
    (SELECT SYS_CONNECT_BY_PATH(n,',')
    STR ,LENGTH(SYS_CONNECT_BY_PATH(n,',')) LN
    FROM
    SELECT N,rownum rn from t )
    CONNECT BY rn = PRIOR RN+1
    ORDER BY LN desc )
    WHERE ROWNUM=1
    declare
    str varchar2(32767);
    begin
    for i in (select sal from emp) loop
    str:= str || i.sal ||',' ;
    end loop;
    dbms_output.put_line(str);
    end;
    COLUMN employees FORMAT A50
    SELECT e.deptno,
    get_employees(e.deptno) AS employees
    FROM (SELECT DISTINCT deptno
    FROM emp) e;
    DEPTNO EMPLOYEES
    10 CLARK,KING,MILLER
    20 SMITH,JONES,SCOTT,ADAMS,FORD
    30 ALLEN,WARD,MARTIN,BLAKE,TURNER,JAMES
    CREATE OR REPLACE FUNCTION concatenate_list (p_cursor IN SYS_REFCURSOR)
    RETURN VARCHAR2
    IS
    l_return VARCHAR2(32767);
    l_temp VARCHAR2(32767);
    BEGIN
    LOOP
    FETCH p_cursor
    INTO l_temp;
    EXIT WHEN p_cursor%NOTFOUND;
    l_return := l_return || ',' || l_temp;
    END LOOP;
    RETURN LTRIM(l_return, ',');
    END;
    COLUMN employees FORMAT A50
    SELECT e1.deptno,
    concatenate_list(CURSOR(SELECT e2.ename FROM emp e2 WHERE e2.deptno = e1.deptno)) employees
    FROM emp e1
    GROUP BY e1.deptno;
    DEPTNO EMPLOYEES
    10 CLARK,KING,MILLER
    20 SMITH,JONES,SCOTT,ADAMS,FORD
    30 ALLEN,WARD,MARTIN,BLAKE,TURNER,JAMES
    CREATE OR REPLACE TYPE t_string_agg AS OBJECT
    g_string VARCHAR2(32767),
    STATIC FUNCTION ODCIAggregateInitialize(sctx IN OUT t_string_agg)
    RETURN NUMBER,
    MEMBER FUNCTION ODCIAggregateIterate(self IN OUT t_string_agg,
    value IN VARCHAR2 )
    RETURN NUMBER,
    MEMBER FUNCTION ODCIAggregateTerminate(self IN t_string_agg,
    returnValue OUT VARCHAR2,
    flags IN NUMBER)
    RETURN NUMBER,
    MEMBER FUNCTION ODCIAggregateMerge(self IN OUT t_string_agg,
    ctx2 IN t_string_agg)
    RETURN NUMBER
    SHOW ERRORS
    CREATE OR REPLACE TYPE BODY t_string_agg IS
    STATIC FUNCTION ODCIAggregateInitialize(sctx IN OUT t_string_agg)
    RETURN NUMBER IS
    BEGIN
    sctx := t_string_agg(NULL);
    RETURN ODCIConst.Success;
    END;
    MEMBER FUNCTION ODCIAggregateIterate(self IN OUT t_string_agg,
    value IN VARCHAR2 )
    RETURN NUMBER IS
    BEGIN
    SELF.g_string := self.g_string || ',' || value;
    RETURN ODCIConst.Success;
    END;
    MEMBER FUNCTION ODCIAggregateTerminate(self IN t_string_agg,
    returnValue OUT VARCHAR2,
    flags IN NUMBER)
    RETURN NUMBER IS
    BEGIN
    returnValue := RTRIM(LTRIM(SELF.g_string, ','), ',');
    RETURN ODCIConst.Success;
    END;
    MEMBER FUNCTION ODCIAggregateMerge(self IN OUT t_string_agg,
    ctx2 IN t_string_agg)
    RETURN NUMBER IS
    BEGIN
    SELF.g_string := SELF.g_string || ',' || ctx2.g_string;
    RETURN ODCIConst.Success;
    END;
    END;
    SHOW ERRORS
    CREATE OR REPLACE FUNCTION string_agg (p_input VARCHAR2)
    RETURN VARCHAR2
    PARALLEL_ENABLE AGGREGATE USING t_string_agg;
    /

  • Apple Senior tech lady deleted all my external drive data while sorting out other problem. How can I restore all my photos , music etc back to my Mac Pro?(I am so scared, I haven't connected to sync! Please help)

    Apple Senior tech lady deleted all my external drive data while sorting out other problem. How can I restore all my photos , music etc back to my Mac Pro?(I am so scared, I haven't connected iPhone to sync! Please help)

    It was tele tech. I couldn't open my Page Numbers etc. Frist tech chat idiot - following dumping few things in bin, asked me yo upgrade to Yosemite. But the problem still persists. This morning I was asked to do it via telephone and like yesterday, after wasting 20 min, I was put to this apparent Tech Queen ( my foot!). She eventually decided to reinstall  Yosemite asked me to connect my external drive while I connected to her. She was moving cursor asking me to move files and delete and I followed her like a dummy. It took 3/4 hours and she called me 3 times once the lengthy process was completed. I suspected from the beginng for the fact that why should be asking me to click all my backup from the very beginning! Eventually she said I deleted... Or someone else or may be my children ! It was a blatant lie. I run my small business from home and I was simply staying in front of the Mac whole day! Children were at school. Then she said I must have used another computer! I only have laptop and the iPad. I will talk to their manager first thing in the morning. In the mean time please let me know as to how can I transfer photos, music etc back to my laptop from my Iphone and IPad .? I am will connect to laptop as I am worried the new BLANK iPhoto may supersede iphone/iPad stuff? Will it? Please let me know. I am not a very tech savvy person. My son who could help me, is in Manchester Uni and Inam in London.

  • I am picking up my new ipad this morning and turning over my ipa 2 to my wife. how do i get all my info apps, etc to my new ipad and wipe pout all on my existing and then how does she log in register with my old ipad?

    i am picking up my new ipad this morning and turning over my ipa 2 to my wife. how do i get all my info apps, etc to my new ipad and wipe pout all on my existing and then how does she log in register with my old ipad?

    Restore your new iPad from your most recent backup of your iPad2 in iTunes when you set it up, and then set up your wife's iPad2 as new device in iTunes by clicking on 'restore' on the main summary screen.
    Alternatively, you can just go to 'Settings>Reset>Erase all Contents and Settings'.

  • I had to redownlowd ituned to my new computer but even sining in to itunes i cant get my library how can i get all my songs back?

    i have a new computer and now my itunes library how can i get my library back?

    wendylynn20 wrote:
    i have a new computer and now my itunes library how can i get my library back?
    Installing iTunes and signing in does not make your media magically appear on the computer.
    The media is only where you put it.
    To move the media from your old computer to your new computer, you need to copy the iTunes folder form your old computer (or the backup of your old computer) to the new computer.

  • I had to re-install firefox, how can I get all my addons etc

    I had to get my PC repaired so I just re-installed Firefox. How can I get my add-ons etc. I thought that when I logged in all my stuff would show up.

    If you were using Firefox Sync, then you can sign into Firefox Sync again to get everything back: [[How do I set up Firefox Sync?|How do I set up Firefox Sync?]]
    If you were not using Firefox Sync, but you have a backup of your user profile, then you can restore from a backup: [[Back up and restore information in Firefox profiles|Back up and restore information in Firefox profiles]]

  • When copying (importing) a CD with multiple artists to itunes, how can I get all of the tracks to be on one album?

    Wen copying (importing) a CD into itunes that has multiple artists or duets with a primary artist, how can I get the tracks to all appear on one album?

    Generally all you need to do is fill in an appropriate Album Artist. For more details see my article on Grouping Tracks Into Albums, in particular the topic One album, too many covers.
    tt2

  • I lost my laptop I didn't back up and I just bought a new one .How can I get all the songs I bought in itunes store back to my new laptop??

    can someone help me please?
    I lost my laptop on Monday and I didn't back up. I just bought a new macbook air so I know I have to install all my applications and softwares again but I was told I could get my old itunes library I mean all the music I bought back in my new laptop. can someone tell me how to do it or if I can?

    Sorry, but officially Apple does not allow redownloads of purchased items other than iPhone/iPod touch applications and iBooks. It's your responsibility to make backup copies (as iTunes itself advises) in case something goes wrong with your system, as unfortunately it apparently did in your case, and you lose all the information on your hard drive. The official statement of their policy can be found here, among other places.
    For apps, look here for instructions on redownloading.  For songs, movies, and videos, if you don't have a backup of your purchased items, either on external media or another computer and don't have them on an iOS device (iPhone, iPod touch, iPad), you're probably out of luck and will need to repurchase your content.
    If you have your content on an iOS device, post back and someone here can help you get them restored. Otherwise you can try contacting iTunes Store Customer Service (select the "Music Purchases" or "Video Purchases" category, as appropriate, then "Lost or Missing Items". You'll find either an "Express Lane" button - just follow the instructions to get to the contact form - or an "Email Us" button) ") and explaining what happened. Reportedly in some cases Apple has allowed redownloading on a one-time basis. But don't count on it. 
    Regards.

  • I have an ipod touch, and recently I recieved an iphone: how can I get all of my apps that I bought on to my iphone?

    please help i bought alot of apps and i would like to know how to transfer the purchases so i dont have to buy all of my apps twice.

    Your apps should be on your computer in itunes.  Just sync them to the iphone.

  • HT201272 I was cleaning my computer and after hours I erased by mistake all my itunes library. I need to know how can I get all AUDIOBOOKs that I purchased back into my computer. I don't see any label for audiobook purchased.I am getting my apps, books an

    I have all this podcasts that I choosen over the years in my ipod 2nd. generation and now  I have my newest ipod and trying to find podcasts in itunes , casuse I also have a new computer.some podcasts doesn;'t show ..how do i transfer all the information from my ipod to my computer?

    Restore the content from the backup of your computer.
    Audiobooks are not available for redownload.

  • I used all my home sharing, how can i get all my songs on a new computer

    ok..so you can only have a certain number of computers you have like sharing the same account or whatever.. well ive used all of those and all of the computers have like crashed or something has happened to them..so i cant disconnect iTunes from those computers..so ive got a new computer..so how do i put all of the songs i have on this computer if all my home sharing things are used?.. and also, my iPhone has all of the songs on it.. so is there a way i could download them to the computer off my iPhone?.. and ive tried syncing my iPhone to iTunes, but it doesnt put the songs on the computer.
    thanks!

    iTunes menu STORE, SIGN IN, then STORE, Authorize this computer.

  • How can I get ALL my songs from my ext.HD into my new Mac?

    They are ALL backed up from my old computer onto an external HD. But they stay there. The only ones I can get are those that I purchased from the iTunes store. How can I transfer the others? Any suggestions?

    greetings ecojoan !
    you mean you intend to add those files from the external drive to the iTunes library on your startup disk, you e.g. choose +add to library+ from the file menu, and iTunes won't add the files ?
    if so, you could try this:
    check if you have read & write permissions for your iTunes music folder. in finder, right-click on it and +get info+. unlock the little padlock (you may have to enter your admin password) and change the permission settings. next, click on the little gear-shaped icon and +apply to enclosed items+ like so
    you may also give everyone read & write access. if this doesn't help, try the same on your iTunes folder (not just the iTunes music folder).
    try adding one of the problem files.
    what happens ?

  • HT1386 How can i get all my songs transfered onto the computer from Ipod classic so that my new ipod and my spouse can get the songs??

    Hello
    How can I transfer my songs off my old Ipod classic to the computer so that I can pick them up with my new Ipod 4.  Also I want to transfere some songs to my spouses Ipod 5.  Please let me know what I can do...
    Thank you..
    Alexandra

    You can try the steps in that support article, but I doubt they'll help: you're trying to copy from an iPod Classic, to an iPod Touch.  As far as I know, that can't be done using backup and restore.  (But you can try—it wouldn't hurt.)
    The question I have is, do you have the songs on your computer also?  Or do you only have the songs on your iPod Classic?  (Maybe from an old computer that crashed or something?)
    If you have your songs on the computer, all you have to do is just set up your new iPod through iTunes on your computer and sync the songs from iTunes to your new iPod.  You don't have to do anything with the old iPod Classic.
    (Does that help?)

  • HT201269 how can i get all my iphone apps music photos etc. onto my new computer?

    My computer crashed and I now have a new one. I have downloaded itunes. When I connect my phone I don't have the sync option. Why? How do I get my music, apps, photos, etc onto itunes? Why is it not already there?

    Hugosharley wrote:
    My computer crashed
    Do you have a backup of that computer?
    Easiest way is to restore that backup to your new computer.
    When I connect my phone I don't have the sync option. Why?
    Because it is sync'd with the library on your old computer.
    See this -> Recover your iTunes library from your iPod or iOS device

Maybe you are looking for

  • Does anyone actually read contracts with Verizon or do you trust your rep will help?

    This is my "verizon" experience.  I've sent the following letter to various people with no response as of yet.  I'm wondering if i'm the only person in the world that does not understand why it's perfectly acceptable to charge someone for service the

  • BSP Problem in EP

    Hi All, I am facing the BSP problem in the EP my problem is ... Business Server Page (BSP) error What happened? Calling the BSP page was terminated due to an error. SAP Note The following error text was processed in the system: BSP Exception: Das Obj

  • Distiller 8 Server issue on a Virtual Server

    We had distiller Server V8 running on a windows 2003 3 server and had no known problems.  We had that server virtualized and we are beginning to see an issue and wonder if it is related.  We have multiple watched folders receiving .ps files from two

  • Windows Server 2008 R2 clock stops

    I have a server where the clock stops running. It just locks up in place. I can login and it will be stopped at a time and date 3 days ago. I have tried setting it to the time of another server but receive "System Error 5 has occurred, access is deni

  • FONTS on OSX 10.4 And Under Classic (System 9 )

    Okay - Ya' all be gentle. Remember - there are no STUPID questions. I'm running a new G5 but have lots of earlier stuff and a very large file of FONTS on my old - very old - G3 - system 9.2. Classic seems to be running fine but the fonts available in