Identify Different Groups in the Organization (Group the Same data together)

Version : Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
Help me in Identifying the groups(different Sectors) in the Organization
Each Group will have the same Group id if  We_org_id , We_addr_id or We_org_id , Ein Matches
In the below Example Row 1 and 2 Are linked with We_org_id , We_addr_id
and row 2 and 3 are linked with We_org_id , Ein  so all the three rows has the same groupid
Included Output Required.
Example
311    563          72-1500000    2
311    563          72-1500001    2
311    565          72-1500001    2
-- Table and inserts
CREATE TABLE ORG_MISMATCH
  WE_ORG_ID   NUMBER,
  WE_ADDR_ID  NUMBER,
  EIN         VARCHAR2(30 BYTE)
SET DEFINE OFF;
Insert into ORG_MISMATCH
   (WE_ORG_ID, WE_ADDR_ID, EIN)
Values
   (311, 24303142, '31-1700059');
Insert into ORG_MISMATCH
   (WE_ORG_ID, WE_ADDR_ID, EIN)
Values
   (311, 56381251, '39-1675361');
Insert into ORG_MISMATCH
   (WE_ORG_ID, WE_ADDR_ID, EIN)
Values
   (311, 56381251, '31-1700059');
Insert into ORG_MISMATCH
   (WE_ORG_ID, WE_ADDR_ID, EIN)
Values
   (311, 56381251, '26-0060245');
Insert into ORG_MISMATCH
   (WE_ORG_ID, WE_ADDR_ID, EIN)
Values
   (311, 56381251, '72-1284709');
Insert into ORG_MISMATCH
   (WE_ORG_ID, WE_ADDR_ID, EIN)
Values
   (311, 121786868, '31-1700059');
Insert into ORG_MISMATCH
   (WE_ORG_ID, WE_ADDR_ID, EIN)
Values
   (311, 21053495, '72-1355929');
Insert into ORG_MISMATCH
   (WE_ORG_ID, WE_ADDR_ID, EIN)
Values
   (311, 56381251, '73-1317052');
Insert into ORG_MISMATCH
   (WE_ORG_ID, WE_ADDR_ID, EIN)
Values
   (311, 56381251, '56-2525845');
Insert into ORG_MISMATCH
   (WE_ORG_ID, WE_ADDR_ID, EIN)
Values
   (311, 56381251, '72-1355929');
Insert into ORG_MISMATCH
   (WE_ORG_ID, WE_ADDR_ID, EIN)
Values
   (311, 56381251, '84-1535762');
Insert into ORG_MISMATCH
   (WE_ORG_ID, WE_ADDR_ID, EIN)
Values
   (311, 56381251, '91-2031795');
Insert into ORG_MISMATCH
   (WE_ORG_ID, WE_ADDR_ID, EIN)
Values
   (311, 56381251, '84-1487943');
Insert into ORG_MISMATCH
   (WE_ORG_ID, WE_ADDR_ID, EIN)
Values
   (311, 56381251, '91-2035844');
Insert into ORG_MISMATCH
   (WE_ORG_ID, WE_ADDR_ID, EIN)
Values
   (311, 56381251, '84-1535753');
Insert into ORG_MISMATCH
   (WE_ORG_ID, WE_ADDR_ID, EIN)
Values
   (311, 56381251, '72-1501788');
Insert into ORG_MISMATCH
   (WE_ORG_ID, WE_ADDR_ID, EIN)
Values
   (311, 56381251, '30-0137738');
Insert into ORG_MISMATCH
   (WE_ORG_ID, WE_ADDR_ID, EIN)
Values
   (311, 563, '72-1500001');
Insert into ORG_MISMATCH
   (WE_ORG_ID, WE_ADDR_ID, EIN)
Values
   (311, 565, '72-1500001');
Insert into ORG_MISMATCH
   (WE_ORG_ID, WE_ADDR_ID, EIN)
Values
   (999, 56381251, '72-1355929');
Insert into ORG_MISMATCH
   (WE_ORG_ID, WE_ADDR_ID, EIN)
Values
   (999, 24303142, '31-1700059');
Insert into ORG_MISMATCH
   (WE_ORG_ID, WE_ADDR_ID, EIN)
Values
   (999, 56381251, '31-1700059');
Insert into ORG_MISMATCH
   (WE_ORG_ID, WE_ADDR_ID, EIN)
Values
   (999, 121786868, '31-1700059');
Insert into ORG_MISMATCH
   (WE_ORG_ID, WE_ADDR_ID, EIN)
Values
   (999, 56381251, '84-1535762');
Insert into ORG_MISMATCH
   (WE_ORG_ID, WE_ADDR_ID, EIN)
Values
   (999, 56381251, '72-1501788');
Insert into ORG_MISMATCH
   (WE_ORG_ID, WE_ADDR_ID, EIN)
Values
   (999, 56381251, '91-2031795');
Insert into ORG_MISMATCH
   (WE_ORG_ID, WE_ADDR_ID, EIN)
Values
   (999, 56381251, '30-0137738');
Insert into ORG_MISMATCH
   (WE_ORG_ID, WE_ADDR_ID, EIN)
Values
   (999, 56381251, '72-1284709');
Insert into ORG_MISMATCH
   (WE_ORG_ID, WE_ADDR_ID, EIN)
Values
   (999, 56381251, '56-2525845');
Insert into ORG_MISMATCH
   (WE_ORG_ID, WE_ADDR_ID, EIN)
Values
   (999, 56381251, '91-2035844');
Insert into ORG_MISMATCH
   (WE_ORG_ID, WE_ADDR_ID, EIN)
Values
   (999, 21053495, '72-1355929');
Insert into ORG_MISMATCH
   (WE_ORG_ID, WE_ADDR_ID, EIN)
Values
   (999, 56381251, '39-1675361');
Insert into ORG_MISMATCH
   (WE_ORG_ID, WE_ADDR_ID, EIN)
Values
   (999, 56381251, '84-1487943');
Insert into ORG_MISMATCH
   (WE_ORG_ID, WE_ADDR_ID, EIN)
Values
   (999, 56381251, '84-1535753');
Insert into ORG_MISMATCH
   (WE_ORG_ID, WE_ADDR_ID, EIN)
Values
   (999, 56381251, '26-0060245');
Insert into ORG_MISMATCH
   (WE_ORG_ID, WE_ADDR_ID, EIN)
Values
   (999, 56381251, '73-1317052');
Insert into ORG_MISMATCH
   (WE_ORG_ID, WE_ADDR_ID, EIN)
Values
   (311, 563, '72-1500000');
COMMIT;
WE_ORG_ID
WE_ADDR_ID
EIN
GROUPID
OUTPUT REQUIRED    --> Create Groupid Column
311
24303142
31-1700059
1
311
56381251
39-1675361
1
311
56381251
31-1700059
1
311
56381251
26-0060245
1
311
56381251
72-1284709
1
311
121786868
31-1700059
1
311
21053495
72-1355929
1
311
56381251
73-1317052
1
311
56381251
56-2525845
1
311
56381251
72-1355929
1
311
56381251
84-1535762
1
311
56381251
91-2031795
1
311
56381251
84-1487943
1
311
56381251
91-2035844
1
311
56381251
84-1535753
1
311
56381251
72-1501788
1
311
56381251
30-0137738
1
311
563  
72-1500001
2
311
565  
72-1500001
2
311
563  
72-1500000
2

It would be nice to know the roots. I did assume two with
start with we_addr_id in (
select min(we_addr_id)
from org_mismatch group by we_org_id
Otherwise it could taken a while ...
That below doesnt really work ..
select
WE_ORG_ID
,WE_ADDR_ID
,EIN
,dense_rank() over (partition by WE_ORG_ID order by r) grp
from (
select
WE_ORG_ID
,WE_ADDR_ID
,EIN
,connect_by_root WE_ADDR_ID r
from ORG_MISMATCH  
connect by nocycle
prior we_org_id = we_org_id
and (
(prior we_addr_id = we_addr_id and prior ein < ein)
or
(prior ein = ein and prior we_addr_id < we_addr_id)
start with we_addr_id in (
select min(we_addr_id)
from org_mismatch group by we_org_id
group by
WE_ORG_ID
,WE_ADDR_ID
,EIN
,r
order by
WE_ORG_ID
,WE_ADDR_ID
,EIN
,R
WE_ORG_ID
WE_ADDR_ID
EIN
GRP
311
563
72-1500000
1
311
563
72-1500001
1
311
565
72-1500001
1
311
21053495
72-1355929
2
311
56381251
72-1355929
2
311
56381251
72-1501788
2
311
56381251
73-1317052
2
311
56381251
84-1487943
2
311
56381251
84-1535753
2
311
56381251
84-1535762
2
311
56381251
91-2031795
2
311
56381251
91-2035844
2
999
21053495
72-1355929
1
999
56381251
72-1355929
1
999
56381251
72-1501788
1
999
56381251
73-1317052
1
999
56381251
84-1487943
1
999
56381251
84-1535753
1
999
56381251
84-1535762
1
999
56381251
91-2031795
1
999
56381251
91-2035844
1
Message was edited by: chris227 comment

Similar Messages

  • My photos are OK in the organizer, but the portrait photos are cut off from the top or bottom when u

    My photos are OK in the Organizer, but the portrait photos are cut off at the top or bottom when used in a slide show.  I have checked the "Crop to Fit" portrait selection but it makes no difference.  I have Version 9 of Elements.

    Hi,
    I suggest that you try unchecking both of the crop options - landscape & portrait.
    To re-create your situation, I had to check the crop for landscape pictures option.
    I prefer to have control over any cropping so I tend to crop each image first before creating the slide show.
    Brian

  • I have installed Adobe Photoshop Elements 8 onto my computer.  I am able to open the Organizer in the Welcome Window but not the editor. why?

    I have installed Adobe Photoshop Elements 8 onto my computer.  I am able to open the Organizer in the Welcome Window but not the editor. why?

    The serial number will be on the disc case, not the outer box.  Find your serial number quickly

  • I would like to copy pictures stored in Events in iPhoto '11 on my iMac to my MacBook Pro which is running iPhoto '09.  Is this possible without losing the organization of the Events?

    I would like to copy pictures stored in Events in iPhoto '11 on my iMac to my MacBook Pro which is running iPhoto '09.  Is this possible without losing the organization of the Events?

    Only way to do it:
    Export each Event to folders in the Finder from the iPhoto 11 machine, copy those folders to the 09 machine. Import them.
    Apps like iPhoto2Disk or PhotoShare will help you export to a Folder tree matching your Events.

  • My problem is a sudden loss of ability to get to PSE12 Organizer when I tried to load a saved scan. Had been using the Organizer and the Editor with no problems for several hours just before that.     Can not load the Organizer from the icon at the bottom

    My problem is a sudden loss of ability to get to PSE12 Organizer when I tried to load a saved scan. Had been using the Organizer and the Editor with no problems for several hours just before that.  
    Can not load the Organizer from the icon at the bottom of  Editor screen, from the icon on the MacBook Air dock (OS 10.10.2),  nor from the file in applications located with Finder.
    I have tried without success to access Organizer after turning off and on the scanner, turning off and on the computer, loading a fresh copy of PSE12 from the CD, and restoring default preferences.  I have searched on line for other options but not  found any. 
    Can you help me?

    Not Charge
    - See:    
    iPod touch: Hardware troubleshooting
    iPhone and iPod touch: Charging the battery
    - Try another cable. The cable for 5G iPod (lightning connector) seems to be more prone to failure than the older cable.
    - If a 5G iPod               
    Iphone 5 lightning port charging problem - SOLUTION!
    - Try another charging source
    - Inspect the dock connector on the iPod for bent or missing contacts, foreign material, corroded contacts, broken, missing or cracked plastic.
    - Make an appointment at the Genius Bar of an Apple store.
      Apple Retail Store - Genius Bar

  • What happens to children Apple ID when the organizer disband the family group? Can they be recovered?

    I have made a mistake while creating a family group: I created a wrong name with a wrong birthday (2014). We are 6 in our family (4 children) so, in order to add the last member, I need to delete this wrong name. However, because his age is below 13 (0 years) he cannot be deleted.
    I am considering to disband the family group, create a new one, to add the already created children Apple IDs and to create and add the last family member.
    Do you think  that already created children Apple IDs maybe "detached" to a family group and "reattached" again by the method described above?
    Thank you in advance.

    I doubt it but I haven't seen any documentation on that.  Also, just so you are aware, you can only switch to a different family group twice per year.  A number of people have found that they were inadvertently locked out of Family Sharing for a year by removing then re-adding family members during the Family Sharing setup.  If might be worth your while to give Apple support a call to fully understand the implications the changes you are considering.

  • Color quality difference by printing from the Organizer vs the Editor

    When a print the a photo from the Organizer I get a good quality print, one that closely represents the image on the computer screen.  But when I print the identical print from the Editor mode, the colors are darker -- more black pigment in all of the colors and no where near as representitive of the image on the screen.  How can I get the prints from the Editor mode to be more like the ones from the Organizer  -- more like the images on the screen?......Jim

    Organizer :
    Image Space:  sRGB IEC61933-2.1
    Print Space :   Same as Source      (What is "Source"?)
    This means that the Organizer is sending the photo to the printer without adjusting any of its colors (the default behavior).
    Editor  :
    Color Handling : Printer Manages Color
    Source Space :  Same as in Organizer
    Rendering Intent : Relative Colorimetric    (What ever that is)
    This means that the Editor is sending the photo to the printer without adjusting any of its colors.  "Relative colorimetric" means that if there is a color in the photo that the printer isn't capable of printing, the printer will chose the nearest color.  (This is the default behavior.)
    So you've verified that the Organizer and Editor are using the default print settings.  They have two different "print engines", but with a printer made in the last several years and photo in the sRGB color space, they would normally produce nearly identical results with these settings.  What's your printer and how old is it?
    My next suggestion is to download the most recent printer driver and install it (even if you already have the most recent one).  This can reset the printer settings to their defaults.
    If that doesn't work (and it likely won't), then you could consider configuring PSE to manage colors, rather than letting the printer manage colors.  But getting that to work right often can involve a fair amount of effort, reading your printer's documentation to get the printer configured properly (it's different for each manufacturer and often for different models).

  • I can no longer open an image from the organizer to the editor.

    In early Dec I had a hard drive crash and had to reinstall PSE11. Everything was working fine until a couple of weeks ago. Now I cannot select an image and click on the editor button and edit the image. The editor will open but the image is not there. I've also tried to right click on the image to Edit with Photoshp Elements and Ctrl-I and the edit menu to open.
    Its a real pain to have to have to go to the editor and load the image since my images are located on various hard drives on my system I have to navigate to the drive, folder, subfolder to located the image.
    Is there anyway to solve this problem? Do I perhaps need to reinsall Elements?
    I'm using Windows 7 (64 bit) with lastest updates
    Patt Ricketts

    winmail.dat files usually mean the email has been sent in rich text format - you could either the person who sent it to send it in a different format e.g. plain text or HTML, or there are a few apps in the store that support it (search for winmail.date in the store).
    winmail.dat files : http://support.apple.com/kb/TS1506

  • In PSE 11 how to import photos to the organizer from the computer files and folders

    While using the restore function in PSE 11 (Windows 8), using a catalog backup from PSE 8 (Windows XP), a number of images could not be restored. To try to link to the images in their actual  location, I tried the following:
    1. I used the File Get function, browsed to the images and did a Get Media. Upon completion, the thumbnails automatically displayed in the organizer.
    2. For reasons I do not understand, the path, where these photos actually reside, displayed in a separate part of the tree view (just below the tree view created from the restore operation.) rather than in the restored tree view.
    I tried to drag them to the location where they should be, but that did not work.
    I noticed that when I did the get photos from files and folders, I saw no way to designate where the photos were to be linked to in the tree view. (Such as is the case when you get photos from a camera.)
    I tried to find instructions on how to get photos from files and folders, to see where I am going wrong but had no luck.
    Can anyone explain what is going wrong and how I can correct it?
    Thanks for your help.

    Thanks for your response. Based on my understanding of your comments I tried the following:
    1. In the main tree view, I deleted the sub-folder which should have contained the files that failed to restore (SF1). Then I dragged the sub-folder in the separate tree structure (SF2) to the  location SF1.  This did not work; I got the message: A folder with the same name already exists at the requested location. When I opened the folder containing SF1 and selected: Show all SubFolders, SF1 was not deleted.
    2. I then tried to drag the images in SF2 to SF1. This too did not work; the images stayed in SF2.
    3. In SF1, I right clicked and selected: Import Media. This did not work; I got the message: Nothing was imported. The file(s) or folder(s) selected to import did not contain any supported file types, or the files are already in the catalog.
    I have to assume that I either did not correctly understand your comments or that their is more at play than I realize. Could you explain why each of my attempts failed and what should I be doing to move folders, sub-folders and/or images within the organizer tree view?
    Thanks for your consideration.

  • How do I move my photos from the organizer into the photo bin?

    PSE 11 on Mac running Mountain Lion.  I managed to import some photos into the Organizer, But how do I get those photos into the Photo bin of the Elements Editor? I actually have opened 3 of the photos with Editor but they don't appear in the photo bin.  I am probably missing something pretty obvious but am totally new to PSE 11 - the last version I used was PSE 8 which used the Browser option in which you could just click on the photo you wanted in the browser and it would open it in the Editor. Any help would be greatly appreciated!

    Okay, so I'm feeling really dumb - I can't find where "thumbnails" is in the Organizer. I'm including a screenshot of the way my organizer screen looks - I don't see where an thumbnails option is -- sorry for being so dense - usually this stuff is pretty intuitive to me!

  • In the Organizer where the add new folders button?

    I want to create some new folders under the My folders section. In the Help section I see "click on the create new folder button." I can't find this button.

    Tommyvincent
    In the Elements Organizer 11, have you opened the Folder area to the location where you want to add the new folder, then right clicked and selected New Folder.
    Please refer to the screenshot representing the addition of a new folder to Documents in my Elements Organizer 11.
    I have still not found a specific New Folder button in Elements Organizer 11? New Album, yes. New Folder, no.
    ATR

  • How to get all video clips to the organize at the same time

    Hi,
    I am a new user and I wonder how to get all video clips to the organize via Get Media or ?? at the same time. Now I have got it one after another and it is very slow.

    My meaning is  to get the clips from hard disk folder. No one after another but all the same time.

  • FAQ: How to share images from the Organizer to the Web

    Elements Organizer has a fair share of methods for sending images to the internet or across it to your friends and family directly. Here is a list of resources that helps explain the different functions to accomplish this task.
    [NOTE: While some of these videos are titled with a specific version, most of the instructions will work with all or at least preceding versions of PSE]
    Adobe TV:
    Photoshop Elements 9 - Sharing your images via e-mail
    Total Training - Sharing your Photos in Photoshop Elements 8
    Learn Photoshop Elements 8 for Windows - New Features: Sharing
    Learn Photoshop Elements 8 for Windows - New Features: Backup and Sychronization
    Learn Photoshop Elements 8 for Windows - Share Albums Online
    Getting Started - 27 Viewing and sharing photos online
    Getting Started - 28 Backing up and synchronzing albums online
    Photoshop.com:
    Learn Photoshop Elements 7 - Getting started 24: Using e-mail and Photo Mail
    Learn Photoshop Elements 9 - 28: Sharing your images via e-mail
    Photoshop Elements Help:
    Sharing photos
    Send a photo using Photo Mail (Windows only)
    Send photos by e‑mail
    Sharing options for online albums
    About online services
    Sharing photos by e‑mail
    Send photos to online sharing services
    If you are encountering issues while attempting to perform any of the above, check out these troubleshooting and solutions documents:
    Troubleshoot sync issues | Photoshop.com, Elements Organizer
    Freeze or error “There is no email program” | Sharing via email | Photoshop Elements Organizer | Windows 7
    Application hangs when using email service | Photoshop Elements | Elements Organizer

    Oracle+Platform+Processors+Operating System !
    I have a basic question if somebody can help me.
    Scenario is somewhat as :
    I want to sell my product Oracle Database.
    But for example I have to ask to a customer that
    which Platform ( IBM, HP,Oracle,Microsoft,Sap,PeopleSoft, SiemensFujitsu, Dell, Bull, Novel
    NCR, HP, Compaq, Sun) they have ?
    Under which Operating system they need the Database products:
    Ist it NT/2000/XP, Windows 95/98/Me, AIX, HP-Ux , Linux,
    Solaris, or Mac OS X, Mac OS 9 whatso ever?
    I have to ask this question more appropriately in this way What machine they need infact ?
    How many processor they have for what they have, on which
    operating system they want to Run that Database or what
    Database ?
    On which processor they want to run those Oracle Database ?
    Can anybody help me in this kind of relation so please let us know about that ?Any link any answer would be highly appreciated.

  • A case for porting the organizer to Mac - and suggestions for alternatives

    I think that Adobe has really missed a market opportunity in not porting/including the organizer with the mac version of elements.  After a week of intermittent searching, I have found that I am far from the only person in my situation, and there does not seem to be a simple, relatively inexpensive, and at least somewhat automated solution.
    I was a longtime PC user, decided a year ago to try a mac (macbook pro) and have been generally happy with the decision (a few complaints like lack of a real maximize button, no easy way to tile windows, lack of the snap feature ... and sorry fanboys, but just because apple did not decide to implement something does NOT mean that the feature carries no merit).  My wife retains her PC laptop, and I have them networked through wi-fi at the house.  We have been longtime users of elements and back when we both had windows (and elements on each), keeping the library on a NAS was fairly easy.  Initially the folder on the NAS was simply set as the location for the originals uploaded from either laptop, with that folder set as a watch folder in both copies of elements and photos imported to each laptop/copy of elements.  This lead to different libraries on each laptop (ie the crops/edits/tags were different) but at least the core library of originals on each computer was the same.  I then tried keeping the library for both laptops on the NAS (they were sharing the same file) and this worked fair, but did not like that if you took one laptop on vacation, that laptop would only be able to show thumbnails as the full library was not stored locally.  I believe it is/was possible to keep a master library on the NAS and have mulitple copies of elements sync to the same file - but I was never able to achieve this...and then I got the mac and stopped trying.
    So now I have a multiple OS network, and trying to keep the photos organized is proving near impossible.  My current solution is to TRY to bring all the photos into the system through iphoto on the mac, export the keepers to a file on the NAS which has been set as a watch folder on my wifes PC/elements.  This does not set well with my wife, as she does not like having to find my mac to get photos off the camera, and besides it is really irksome to have to do 2 full sets of tagging/editing, and the automation in this system is essentially nil.  The only fairly elegant solutions I have found involve $200-500 digital asset management software.  Having the organizer on the mac would be a large step toward a solution as the database of metadata (beyond simple exif data) would be in the same format across platforms.  The number of people with multiple OS home networks is only going to to continue to grow, and an elegant, relatively inexpensive solution to the above problems would find a large market.
    Soooo... after all that, what have others done in the same situation?  I am not particularly interested in cloud solutions, as so far the speed issues seem prohibitive and I am still somewhat concerned about privacy.
    Thanks

    The MacPro is not a small tower. I don't think it will fit in a standard 19" rack case on it's side, even if you hack-sawed off the feet and handles (and who'd want to do that?!)
    You can rack your Mac vertically with this deal: (it says G5 but I think the case is the same size for MacPro?)
    http://www.redco.com/shopexd.asp?id=876
    And there are up to 5 rackspaces vertically for your outboard gear. This thing is the converter only and you still need to get a 12 space rack.
    3ghz MacPro   Mac OS X (10.4.8)   2g ram, 1900xt, digi002

  • I'm moving an internal hard drive from an old computer to a new computer.  How do I transfer the catalog data to my new computer so the Organizer of Photoshop Elements 6 will find the data on the hard that has been moved to the new computer?

    I'm moving an internal hard drive from an old computer to a new computer.  (My new compute runs Windows 8.1) How do I transfer the catalog data to my new computer so the Organizer of Photoshop Elements 6 will find the data on the hard that has been moved to the new computer?  Is this possible or do I have to use the procedure of copying the catalog along with the photos to a back up hard drive and then restore them on the new computer?

    The 'normal' procedure is to do a PSE organizer backup (not a copy or a backup from external tools) to an external drive, then a restore to the new location.
    The advantage is that you have a backup of both catalog and media files and you don't have all disconnected files, which would happen with external backup tools. Also, if you restore with a more recent elements version, the catalog will be automatically updated to the new format.
    The drawback in your situation is that you'll have either to overwrite all your files or restore to a custom location, creating a duplicate photo library (which supposes you have enough free space).
    It would be possible to simply use the organizer in the old PC to move the catalog to a new 'custom' folder just under your C: root drive. The catalog would be accessible once the drive will be installed in the new PC. Then you would have all files 'disconnected' due to the fact that all your media files are now on a drive with a different letter. Reconnecting a whole library is a hard job with PSE6, less so with PSE11/PSE12.
    If the idea of fiddling with the sqlite database with external sqlite manager tools is ok for you, I can describe the process more in detail. You only copy your catalog folder (as suggested above) to another location. Instead of trying the 'reconnection' way, you install the sqlite utility on the new computer. When the old drive is installed in the new computer, you simply edit a given record in the catalog database, catalog.psedb, and start the organizer with your copied catalog by simply double clicking the 'catalog.psedb' file.
    Even if the last solution is much, much quicker, I would still create a new PSE backup : you have never too much safety .

Maybe you are looking for

  • Itunes wifi sync useless

    First off let me say I love the idea of syncing wirelessly. That being said I reall wish apple would get it figured out. Ever since they updated to itunes 10.5 and iOS 5 with "wireless" syncing I have had problems with all of my devices syncing. In p

  • I have purchased online and downloaded the lightroom 5 for my mac, but it doesn't work.

    Hi, I have purchased online the lightroom 5 for my Mac. I have downloaded and installed it, but when I open it I can only see a READ ME document with instructions. What do I have to do to be able to start using it? Thank you Ale

  • Can't access anything on macbook pro

    I am having severe issues with my macbook pro not booting up passed the logo screen.  I can't open recovery as the hd wasn't partitioned, nor can I access AH to determine why. I've tried everything step by step to no avail.  It doesn't beep so I'm no

  • "Owners enabled: No" - Is this a problem?

    Hi. I have encountered problems trying to install Snow Leopard. Three or four attampts all led to the following message: "An error occurred when installing MacOSX. Install failed. MacOSX could not be installed on your computer. (-triangle with exclam

  • CAD Server and Client Version mismatch

    Hi All, When we try to install fresh CAD client the version is different from the server. We are using 8.5.2a server and client shows 8.5.1. Any impact of this mismatch? How do we upgrade the client? Should we re-install the client? Regards, Adithya