Merging two SQLs

Hi Gurus,
I have two SQLs which are;
select bbe
from alu_sdhnm.dwdm_logical_stats dis_1
where bbe <= (select max(bbe) from alu_sdhnm.dwdm_logical_stats ic_1 where ic_1.datetime=dis_1.datetime)
order by bbe desc;
select es
from alu_sdhnm.dwdm_logical_stats dis_2
where es <= (select max(es) from alu_sdhnm.dwdm_logical_stats ic_2 where ic_2.datetime=dis_2.datetime)
order by es desc;
Those are showing top es and bbe values inside dwdm_logical_stats table seperately by using correlated sub-query. My question is, how can i see them inside one single query? In addition, in the same row if bbe has the highest value, es has not the highest.
Thank you,
Ogan

I'm forgetting the little detail of the data ;)
What do each of these give you?
  SELECT
      bbe,
      DENSE_RANK() OVER (ORDER BY BBE DESC) bbe_rank,
      ROW_NUMBER() OVER (ORDER BY BBE DESC) row_num
    FROM alu_sdhnm.dwdm_logical_stats;And:
    SELECT
      es,
      DENSE_RANK() OVER (ORDER BY ES DESC) es_rank,
      ROW_NUMBER() OVER (ORDER BY ES DESC) row_num
    FROM alu_sdhnm.dwdm_logical_stats)And finally:
SELECT bbe,  bbe_rank, es, es_rank
  FROM (
  SELECT
      bbe,
      DENSE_RANK() OVER (ORDER BY BBE DESC) bbe_rank,
      ROW_NUMBER() OVER (ORDER BY BBE DESC) row_num
    FROM alu_sdhnm.dwdm_logical_stats) ilv1
JOIN (
    SELECT
      es,
      DENSE_RANK() OVER (ORDER BY ES DESC) es_rank,
      ROW_NUMBER() OVER (ORDER BY ES DESC) row_num
    FROM alu_sdhnm.dwdm_logical_stats) ilv2
ON (ilv1.row_num = ilv2.row_num)

Similar Messages

  • Merge Two SQL - need help

    Hi All,
    Need some tips - like i have two different process runing with just only a SQL query on each.
    The both the process SQL Query is 90% similar Rather the Second sql has extra two columns
    and few filterning conditions is different which is Marked in bold. My question is there any way that
    i can write a single SQL statement that works for my both process. The Difference between the
    Query 1 and Query 2 have marked in Bold/underlined.
    Query 1
    SELECT SUBCON.MEME_CK,MEMBER_ID,LINE_NUMBER,RECIPIENT_NUMBER,MEMBER_LAST_NAME,MEMBER_FIRST_NAME,MEMBER_MIDDLE_INIT,MEMBER_SSN,MEMBER_DOB,
           MEMBER_ADDRESS_1,MEMBER_ADDRESS_2,MEMBER_CITY,MEMBER_STATE,MEMBER_ZIP_CODE,MEMBER_COUNTY_CODE,MEMBER_SEX,MEMBER_PHONE_NUMBER,
           HH_LAST_NAME,HH_FIRST_NAME,RELATIONSHIP_CODE,PCP_ID_NUMBER,PCP_NAME,PCP_PHONE_NUMBER,PCP_ADDRESS_1,PCP_ADDRESS_2,PCP_CITY,
           PCP_STATE,PCP_ZIP_CODE,PCP_COUNTY_CODE,PCP_EFFECTIVE_DATE,PCD_ID_NUMBER,PCD_NAME,PCD_PHONE_NUMBER,PCD_ADDRESS_1,
           PCD_ADDRESS_2,PCD_CITY,PCD_STATE,PCD_ZIP_CODE,PCD_COUNTY_CODE,PCD_EFFECTIVE_DATE,GROUP_EFF_DATE,GROUP_TERM_DATE,
           GROUP_NUMBER,PROGRAM_STATUS_CODE,LANGUAGE_INDICATOR,VISION_IMP_IND,HEARING_IMP_IND,SPECIAL_NEEDS_FLAG,ELIG_EFF_DATE,
           ELIG_TERM_DATE,BEN_GROUP_NO,BEN_GROUP_EFF_DT,MEDICARE_IND,TPL_RX_PAYER,TPL_RX_PAYER_EFF_DT,TPL_RX_PAYER_NAME,INSURANCE_CODE,
           POLICY_NUMBER,TYPE_OF_COVERAGE,LOB,COUNTY_STATE_RECORD,STATE_RECORD_NUMBER,GROUP_CODE,REV_CATEGORY_CODE,AQ_IND,MECD_CSCS_ID,
           MECB_EFF_DT,MCRE_ID,MECB_TERM_DT,rtrim(SBAD_PHONE) as "SBAD_PHONE"
    FROM      EXT_MEGD_SBCN_ELG_DLY SUBCON,
              CMC_MECD_MEDICAID MECD,
              CMC_SBAD_ADDR SBAD,
              CMC_MEME_MEMBER MEME
    WHERE     SUBCON.MEME_CK = MECD.MEME_CK
    AND        DATEDIFF(mm,MEMBER_DOB, DATEADD(mm,  1,GETDATE())) < 25_
    AND        Right(MECD_MCTR_AIDC,2) not in ('31', '33')
    AND        MECD_MCTR_AIDC Not in ('PC36','J36')
    AND        SUBCON.MEME_CK = MEME.MEME_CK
    AND        MEME.SBSB_CK *= SBAD.SBSB_CK
    AND        SBAD.SBAD_TYPE = "1"
    AND        SBAD.SBAD_PHONE <> " "
    AND        SBAD.SBAD_PHONE <> "0000000000"
    AND        CHAR_LENGTH(RTRIM(SBAD_PHONE)) < 11Query 2
    SELECT SUBCON.MEME_CK,MEMBER_ID,LINE_NUMBER,RECIPIENT_NUMBER,MEMBER_LAST_NAME,MEMBER_FIRST_NAME, MEMBER_MIDDLE_INIT,MEMBER_SSN,MEMBER_DOB,
           MEMBER_ADDRESS_1,MEMBER_ADDRESS_2,MEMBER_CITY,MEMBER_STATE,MEMBER_ZIP_CODE,MEMBER_COUNTY_CODE,MEMBER_SEX,MEMBER_PHONE_NUMBER,
           HH_LAST_NAME,HH_FIRST_NAME,RELATIONSHIP_CODE,PCP_ID_NUMBER,PCP_NAME,PCP_PHONE_NUMBER,PCP_ADDRESS_1,PCP_ADDRESS_2,PCP_CITY,
           PCP_STATE,PCP_ZIP_CODE,PCP_COUNTY_CODE,PCP_EFFECTIVE_DATE,PCD_ID_NUMBER,PCD_NAME,PCD_PHONE_NUMBER,PCD_ADDRESS_1,PCD_ADDRESS_2,
           PCD_CITY,PCD_STATE,PCD_ZIP_CODE,PCD_COUNTY_CODE,PCD_EFFECTIVE_DATE,GROUP_EFF_DATE,GROUP_TERM_DATE,GROUP_NUMBER,PROGRAM_STATUS_CODE,
           LANGUAGE_INDICATOR,VISION_IMP_IND,HEARING_IMP_IND,SPECIAL_NEEDS_FLAG,ELIG_EFF_DATE,ELIG_TERM_DATE,BEN_GROUP_NO,BEN_GROUP_EFF_DT,
           MEDICARE_IND,TPL_RX_PAYER,TPL_RX_PAYER_EFF_DT,TPL_RX_PAYER_NAME,INSURANCE_CODE,POLICY_NUMBER,TYPE_OF_COVERAGE,LOB,COUNTY_STATE_RECORD,
           STATE_RECORD_NUMBER,GROUP_CODE,REV_CATEGORY_CODE,AQ_IND,MECD_CSCS_ID,MECB_EFF_DT,MCRE_ID,MECB_TERM_DT,RTRIM(SBAD_PHONE) as "SBAD_PHONE",
           PRCF_MCTR_SPEC,PRAD_FAX
    FROM      EXT_MEGD_SBCN_ELG_DLY SUBCON,
              CMC_MECD_MEDICAID MECD,
              CMC_SBAD_ADDR SBAD,
              CMC_MEME_MEMBER MEME,
              CMC_PRPR_PROV    PRPR,_
              CMC_PRAD_ADDRESS PRAD_
    WHERE     SUBCON.MEME_CK = MECD.MEME_CK
    AND        Right(MECD_MCTR_AIDC,2) not in ('31', '33')
    AND        MECD_MCTR_AIDC Not in ('PC36','J36')
    AND        SUBCON.MEME_CK = MEME.MEME_CK
    AND        SUBCON.PCP_ID_NUMBER  = PRPR.PRPR_ID*_
    AND        SUBCON.PCP_ID_NUMBER  = PRAD.PRAD_ID*_
    AND        PRAD.PRAD_TYPE = 'PRI'_
    AND        (CONVERT(CHAR(10),GETDATE(),101))  BETWEEN PRAD.PRAD_EFF_DT AND PRAD.PRAD_TERM_DTAND        MEME.SBSB_CK *= SBAD.SBSB_CK_AND        SBAD_TYPE = "1"
    AND        SBAD_PHONE <> " "
    AND        SBAD_PHONE <> "0000000000"
    AND        CHAR_LENGTH(RTRIM(SBAD_PHONE)) < 11Any suggestions Welcome.
    Edited by: USER_X on May 18, 2009 11:03 AM

    Hi,
    The simplest thing, and perhaps the fastest, is to do a UNION, as Someoneelse suggested.
    See [this thread|http://forums.oracle.com/forums/message.jspa?messageID=3430965#3430965] for an example.
    Depending on your data, you could do an Outer Join of the two tables that are only in Query 2 to the other tables.
    The WHERE clause would look something like this:
    WHERE     SUBCON.MEME_CK = MECD.MEME_CK
    AND        Right(MECD_MCTR_AIDC,2) not in ('31', '33')
    AND        MECD_MCTR_AIDC Not in ('PC36','J36')
    AND        SUBCON.MEME_CK = MEME.MEME_CK
    AND        SBAD_PHONE  " "
    AND        SBAD_PHONE  "0000000000"
    AND        CHAR_LENGTH(RTRIM(SBAD_PHONE)) < 11
    AND        (     DATEDIFF (mm, MEMBER_DOB, DATEADD(mm,  1,GETDATE())) < 25     -- Extra condition from Query 1
            OR  (                                                                    -- Extra conditions from Query 2
                       SUBCON.PCP_ID_NUMBER   = PRPR.PRPR_ID
              AND   SUBCON.PCP_ID_NUMBER   = PRAD.PRAD_ID
              AND   PRAD.PRAD_TYPE          = 'PRI'_
              AND   (CONVERT(CHAR(10),GETDATE(),101))  BETWEEN PRAD.PRAD_EFF_DT
                                              AND      PRAD.PRAD_TERM_DT
              AND   MEME.SBSB_CK           = SBAD.SBSB_CK
              AND   SBAD_TYPE               = 1
            )Since all the tables in the Outer Join are referenced in the conditions from Query 2, this has the effect of making that an Inner Join unless the extra conditions from Query 1 were met.
    iIn the SELECT claue, use a CASE expression for each column that occurs only in Query 2 that repeats all the extra conditions for Query 2:
    ,       CASE
              WHEN  SUBCON.PCP_ID_NUMBER   = PRPR.PRPR_ID
              AND   SUBCON.PCP_ID_NUMBER   = PRAD.PRAD_ID
              AND   PRAD.PRAD_TYPE          = 'PRI'_
              AND   (CONVERT(CHAR(10),GETDATE(),101))  BETWEEN PRAD.PRAD_EFF_DT
                                              AND      PRAD.PRAD_TERM_DT
              AND   MEME.SBSB_CK           = SBAD.SBSB_CK
              AND   SBAD_TYPE               = 1
              THEN  PRCF_MCTR_SPEC
           END     AS PRCF_MCTR_SPECThat column will be NULL if the extra conditions from Query 2 are not met.
    Instead of computing all those extra conditions over and over again, you may want to compute them once for all in a sub-query:
    SELECT  ...
    ,       CASE
              WHEN  SUBCON.PCP_ID_NUMBER   = PRPR.PRPR_ID
              AND   SUBCON.PCP_ID_NUMBER   = PRAD.PRAD_ID
              AND   PRAD.PRAD_TYPE          = 'PRI'_
              AND   (CONVERT(CHAR(10),GETDATE(),101))  BETWEEN PRAD.PRAD_EFF_DT
                                              AND      PRAD.PRAD_TERM_DT
              AND   MEME.SBSB_CK           = SBAD.SBSB_CK
              AND   SBAD_TYPE               = 1
              THEN  1
                                    ELSE  0
           END     AS query_2_extraThen, in the main querry, you can use use that column:
    WHERE     ...
    AND        (     DATEDIFF (mm, MEMBER_DOB, DATEADD(mm,  1,GETDATE())) < 25     -- Extra condition from Query 1
            OR     query_2_extra = 1                                              -- Extra conditions from Query 2
            )

  • Merge two resultsets into one column

    Hi Guys,
    I have two SQL statements. The first returns 12 columns and the second returns 2 columns but both return the same number of rows. I can't seem to merge both the queries into a common query as the WHERE clauses in both are different. I have to dump the output into a table i created. The table has 14 columns. One column in both queries act as primary key and they help form the relationship between the resultsets. The column name is SUBSCR_CODE. Below you will find my SQL queries and the CREATE TABLE statement. Please could someone tell me how to achieve this.
    SELECT o.subscr_code,
    SUM(NVL(m.remain_capital,0)),
    SUM(NVL(m.remain_interest,0)),
    SUM(NVL(m.remain_debtor_fee,0)),
    SUM(NVL(s.remain_debtor_fee,0)),
    SUM(NVL(m.remain_costs_to_client,0)),
    SUM(NVL(m.remain_debtor_outlay,0)),
    SUM(NVL(s.remain_debtor_outlay,0)),
    SUM(NVL(m.debtor_exp_outlay,0)),
    SUM(NVL(s.debtor_exp_outlay,0)),
    SUM(NVL(m.vatbase_debtor_fee,0)),
    SUM(NVL(s.vatbase_debtor_fee,0)),
    NULL
    FROM kkrpt1 o,
    maincase m,
    subcase s
    WHERE o.maincase_id = m.maincase_id
    AND m.maincase_id = s.mc_maincase_id
    AND s.claim_type IN (6,7,8,9,10,11,13)
    AND s.subcase_no = 0
    AND m.closing_date IS NULL
    AND s.closing_date IS NULL
    GROUP BY subscr_code;
    SELECT o.subscr_code,
    SUM(NVL(a.remain_interest,0))
    FROM kkrpt1 o,
    amount a,
    maincase m,
    subcase s
    WHERE o.maincase_id = a.mc_maincase_id
    AND o.maincase_id = m.maincase_id
    AND m.maincase_id = s.mc_maincase_id
    AND s.claim_type IN (6,7,8,9,
    10,11,13)
    AND s.subcase_no = 0
    AND m.closing_date IS NULL
    AND s.closing_date IS NULL
    AND a.amount_type = 41
    GROUP BY subscr_code;
    CREATE TABLE kk_ajot_14 (
    subscr_code VARCHAR2(5),
    remain_capital_sum NUMBER,
    remain_inerest_sum_1 NUMBER,
    remain_debtor_fee_sum_1 NUMBER,
    remain_debtor_fee_sum_2 NUMBER,
    remain_costs_to_client NUMBER,
    remain_debtor_outlay_1 NUMBER,
    remain_debtor_outlay_2 NUMBER,
    remain_debtor_exp_outlay_1 NUMBER,
    remain_debtor_exp_outlay_2 NUMBER,
    vatbase_debtor_fee_1 NUMBER,
    vatbase_debtor_fee_2 NUMBER,
    remain_inerest_sum_2 NUMBER);

    No need to create table
    with
    sql_1 as
    (<first sql here>
    sql_2
    (<second sql here>
    select a.*,b.*
      from sql_1 a,sql_2 b
    where a.subscr_code = b.subscr_codeRegards
    Etbin

  • Merge Two Rows of a table to One row but into two columns

    Hi
    I Am struck in writing a query to merge two rows into two columns of one row.
    Here is the Sample data i am working with,
    Col 1     Col 2     Col3 Col4 Col Col6
    5000     573-3000 2     0     Phone      
    5000     573-3036 1     0          Fax
    5000     893-5703 3     0     WOrk      
    3000     232-5656     1     0     Phone     
    3000     353-5656     2     0          FAx
    Here Col,Col3,Col4 form the Key.
    now wht i am trying to do is to Merge these type of rows put them into Columns P,F,W,E respectively to achive a Structure as below
    Col1      P     F     W
    5000     573-3000      573-3036      893-5703
    3000     232-5656     353-5656     
    Can you please help me how could i do this.
    I am pretty ordinary at writing SQL's.
    Thanks a Lot in Advance
    Message was edited by:
    Sreebhushan

    Search the forum for PIVOT and you'll find plenty of examples.

  • How to CREATE VIEW to merge two tables each of which has CLOB-typed column

    I failed in creating a view to merge two tables that have CLOB-type column each.
    The details are:
    Database: Oracle 9i (9.2.0)
    Two tables "test" and "test_bak", each of which has the following structure:
    ID Number(10, 0)
    DUMMY VARCHAR2(20)
    DUMMYCLOB CLOB
    The following operation fails:
    create view dummyview (id, dummy, dummyclob) as
    select id, dummy, dummyclob from test
    union
    select id, dummy, dummyclob from test_bak;
    I was announced:
    select test.id, test.dummy, test.dummyclob
    ERROR in line 2:
    ORA-00932: inconsistent data type: required - , but CLOB presented.
    But if creating views from only ONE table with CLOB-type columns, or from two tables WITHOUT CLOB-typed columns, the creation will succeed. The following 1) and 2) will succeed, both:
    1) one table, with CLOB-typed column
    create view dummyview (id, dummy, dummyclob) as
    select id, dummy, dummyclob from test;
    2) two tables, without CLOB-typed columns
    create view dummyview (id, dummy) as
    select id, dummy from test
    union
    select id, dummy from test_bak;
    I want to merge the two tables all, with complete columns, how to write the CREATE VIEW SQL statement?
    many thanks in advance

    Dong Wenyu,
    No.
    But you could do this:
    SELECT source.*, nvl (tab1.clob_column, tab2.clob_column)
    FROM your_table1 tab1, your_table2 tab2, (
    SELECT primary_key, ...
    FROM your_table1
    UNION
    SELECT primary_key, ...
    FROM your_table2
    ) source
    WHERE source.primary_key = tab1.id (+)
    AND source.primary_key = tab2.id (+)
    In other words, do the set operation (UNION (ALL)/INTERSECT/MINUS) on just the PK columns before pulling in the LOB columns.
    d.

  • Need help in merging two database

    Dear All,
    Can any one please let me know the methodology/Best practices for merging two databases.
    We are having two oracle Database A and B, the data from
    Database A has to be migrated to Database B using PL/SQL scripting.
    it will be a great help,Thanks in advance!

    Hi,
    Use the DB Links and try to use the "MERGE" that is better.
    you can clone it right, almost you are getting the same data from A to B and then you are going to Update is I am correct. Does the "B" consist the data, If yes then you can't clone on exiting DB, As i said above go for DB links and write custom scripts as per your requirement.
    Refer for DB links
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14231/ds_admin.htm#sthref4108
    - Pavan Kumar N

  • Can i merge two cell in BO Reports?

    Hi!
    I'm new to this BO. I've already posted my problem in some other place in this forum. Now, I think that may be a wrong place to post.
    So, i'm posting this problem once more here.
    I'm giving you that link which i've already posted (Otherwise it will be duplicate thing to post the entire content) ->
    [Can i merge two cell in BO Reports?|Can i merge two cell in BO Reports?;
    Sorry for this initial mess.
    Waiting for your feedback.
    Regards.
    Satyaki De.

    Thanks for your reply.
    But, my requirement is slightly different than what you have shown.
    I've created two reports say report 1 & report 2. And, it should looks like this ->
    Report 1,
    YEAR QT         P1         P2
    2001 Q1                    25
    2002 Q2         13         14
    Report 2,
    YEAR QT         P1         P2
    2001 Q1          7         12
    2002 Q2         10
    And, my required final output should be ->
    YEAR QT         P1         P2
    2001 Q1          7         37
    2002 Q2         23         14
    So, as you can see - i'm merging and adding the values of two reports into one.
    I'm using Oracle 10g as my DB. Is it possible that i can write some SQL query any where in any place of the reports that can do this staff. Then i can go for that kind of solution, too.
    But, in that case i need to know where to write the query. Please reply.
    But, first -> Is it at all possible in BO?
    Thanks again for your valuable time to read this post.
    Regards.
    Satyaki De.

  • Merge two XML

    10g
    xml1 = "
    <item>
    <name>Book</name>
    <price>12</price>
    <detail></detail>
    </item>"
    xml2 = "
    <title>kids book</title>
    <year>2007</year>"
    I'm using a "DBMS_XMLDOM" to merge two XML to one.
    Would you please help me?
    result:
    <item>
    <name>Book</name>
    <price>12</price>
    <detail>
    <title>kids book</title>
    <year>2007</year>
    </detail>
    </item>

    Or maybe this?:
    SQL> SELECT xml1,
           xml2,
           XMLTYPE (REPLACE (xml1, '</item>') || xml2 || '</item>') merged_xml
      FROM (SELECT '<item>
    <name>Book</name>
    <price>12</price>
    <detail></detail>
    </item>' xml1,
                   '<title>kids book</title> <year>2007</year>' xml2
              FROM DUAL)
    XML1                      XML2                      MERGED_XML                                       
    <item>                    <title>kids book</title>  <item>                                           
    <name>Book</name>         <year>2007</year>         <name>Book</name>                                
    <price>12</price>                                   <price>12</price>                                
    <detail></detail>                                   <detail></detail>                                
    </item>                                             <title>kids book</title>
                                                        <year>2007</year>
                                                        </item>
    1 row selected.

  • Merge two text files

    Need your help with merging two text source files into single table.  Each text file is single column containing names.  Let's say that file one is list of members in DEPARTMENT A and second file members of DEPARTMENT B.  Text files look
    something as follows:
    Filename: DEPARTMENT_A
    NAME (header)
    Steve
    Joe
    Mary
    Filename: DEPARTMENT_B
    NAME (header)
    Ron
    Joe
    Susie
    Ultimately, I need the resultant table data to look like this:
    NAME     DEPARTMENTS
    Steve     A
    Joe        A, B
    Mary      A 
    Ron        B
    etc.
    I think the solution involves derived columns, pivot, coalesce, but can't figure out how to put them together.  What do you recommend?  Thanks.

    You need a data flow task
    Inside that have two flat file sources connecting to both files. Following that have a derived column task to add department information (A,B). use a union all transform to merge both the inputs and finally use OLEDB destination to dump the result into table
    with two columns Name and Department.
    Then add a execute sql task to do update as below
    UPDATE t
    SET Department = Department + ', B'
    FROM Table t
    WHERE Department = 'A'
    AND EXISTS (SELECT 1
    FROM Table
    WHERE Name = t.Name
    AND Department = 'B'
    DELETE t
    FROM Table t
    WHERE Department = 'B'
    AND EXISTS (SELECT 1
    FROM Table
    WHERE Name = t.Name
    AND Department = 'A, B'
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Please help me to merge two places.sqlite to get my old and New history at the same time, every time i rename my two places.sqlite to see my old and new history

    every time i rename my new places.sqlite to see my old history and come back rename old places.sqlite to see my new history, i tired and i found No Way to merge two places.sqlite :( but it's must be found this way for The PPL to see their old and new history :(
    Thank You all in Advance

    You can't merge history otherwise then using Sync to store the history and bookmarks of one places.sqlite on the Sync server and then disconnect.<br />
    Copy the second places.sqlite file to your Firefox profile folder with Firefox closed.
    Then setup Sync once again using that account and merge the content on the Sync server with your computer.
    * Merge this device's data with my Sync data

  • TS3988 how do i merge two icloud accounts - on on my computer and ipad, a different icloud id on my iphone?

    How do I merge two iCloud accounts into one?  One account is on my mac and ipad, the other on my iphone.

    Welcome to the Apple community.
    You cannot merge accounts, you will need to choose one and use it.

  • How do I merge two valid, purchased iTunes accounts into one so all my music is in same account?

    I have two valid, purchasd iTunes accounts.  Older iPod has some great music, I just got a new iPad and set up second iTunes account, bought some more iTunes items for that account.  Just discovered iCloud.  Now I want to put all my music from both accounts onto the cloud so I can access it on all my apple devices.   Can't seem to add from one account to the other.  Can sign onto the new account wiht my old iPod, but it will not let me sync without erasing all the music on the device.  How can I merge these two accounts into one?
    PS  Makes you wonder how helpful support is when the usernames "Frustrated," "really frustrated," and "Help!!!!" are all taken...lol

    HeyStupid wrote:
    how do I merge two valid, purchased iTunes accounts into one so all my music is in same account?
    You cannot. iTunes pruchases remian tied to the account they were purchased with.
    I just got a new iPad and set up second iTunes account,
    Why?
    Remove your info from new account, update old account as needed and use that.

  • How can I merge two iPhoto libraries stored on an external drive?

    Today I was in a One-to-One at the Apple Store.  I want to merge two i-Photo libraries into one.  One library is on my Air, the other is on my iMac.  Both libraries have been moved to an external drive.  When I try to move one onto the other, they won't go.  Yet I am certain that while at the store today, the person there started to merge them.  He did not need the library manager software in order to do so.  We stopped the merge in order to move on to another issue.  Now that I am home, I can't get the libraries to merge.  What am I failing to do?  Thanks!

    The only way to merge two libraryies is to use  iPhoto Library Manager which will merge two libraries and keep keywords, titles, faces, places, and other metadata intact.
    If one imports one library into another library every image file in the first library, originals, thumbnails, face files, etc,  get imported as an original photo. You will end up with a total mess.  DO NOT IMPORT ONE LIBRARY INTO ANOTHER LIBRARY!
    If you have backup copies of your libraries get them back and use iPhoto Library Manager to merge them.
    OT

  • Can you merge two user accounts on macbook? my wife has created a user on her new macbook , then inadvertently created a second one when using the migration tool. 1st ac has her office 365 install, yet 2nd has her itunes database, docs and contacts.

    Can you merge two user accounts on a macbook? my wife has created a new user on her new macbook air then, inadvertently, created a second one when using the migration tool. 1st a/c has her office 365 install, while 2nd has her itunes database, docs and contacts. What is the best way forward to get everything into the one account? Not sure if the office 365 will allow another installation into the second account, otherwise would just do that and delete the first, if that is possible?

    There is no merge but you can move data from one account to another via the Shared folder. Data is copied from Shared. Watch your free space when copying. These are large files.  Do one at a time if you are on a small drive. After making copy, delete from other users before you start next copy.
    Office365 installs in the main Applications folder and is available for all users on the computer. Activation is tied to the drive not the User.

  • How do I merge two different libraries, linked to one account? They're on two different computers but I want them to be on one

    How do I merge two different libraries, linked to one account? They're on two different computers but I want them to be on one

    This should do the trick
    Home Sharing Learn More
    http://support.apple.com/kb/HT201976
    Best of Luck

Maybe you are looking for

  • How to set the font of a table header?

    Hi, Is there a way to set the font of a table header? I do not mean how to change the header word but the font. Thanks Stephen

  • CAML query return Two Events that are the same

    Hi, when I run a CAML query for a recurring event in a calendar I get the same event returned twice steps to reproduce create an event in the calendar view as a recurring event set the series of event to all day events set the occurrence to daily  ru

  • Contacts randomly un-link

    Hi, recently contacts on my iphone are unlinking, however only a few are: Doctors Work Rattle and Drum These always unlink their iphone and exchange contacts, every few hours I have to re-link them. All of the information is the same on each linked c

  • Assignment on Multivalued flat lookup Table

    Hi All, I want run assignemnet on multivalued lookup table field on my Main Table ,I am trying to assignment multiple values on this field.I want to know how to select multiple values while writing assignment. Ex : if  Account Grp = "1000", then i ne

  • Lenovo S 580 Manual Guide Download

    Good day to all... i have some question about Lenovo S 580... My wife bought S580 Smartphone in Riyahd. She likes to know how can she diabled or lowering the Camera and Video Sound... And if she download video i Facebook where she can find it...? She