How to build a new Lightroom Catalogue from a RAID recovery

Recently my 9TB Raid 5 server catalogue was corrupted and the drive were put through an extensive RAID recovery. I will b recieving 4TB of the 9 back with CR2, TIFF, .mov and JPEG files. We are not sure if all the data is in these files. What is the most efficient way to create a new catalogue with all the complete files? Is there another program to analyze the files before beginning in LIghtroom?
Thanks
Tom

Do you have a backup of the catalog file? That's the best way to restore things.

Similar Messages

  • Lightroom - how to restore backed up files (not Lightroom catalogue) from one external drive to another?

    How to restore backed up files (not lightroom catalogue) from one external drive to another.
    I recently backuped my photo files from one external drive to another. The backup (carbon copy cloner) pointed to some corrupt files on the original drive.
    I have deleted those files and am finding good copies of them  in Time Machine backups.
    I want to get rid of the original external drive; use the recent backup as my main external and then back it up onto a brand new drive.
    What I am not sure about is how to point lightroom to the backups so it knows to look on the new drive instead of the old drive and all those exclamation marks and question marks go away.
    There are close to 60,000 images in numerous folders all with one 'parent folder.'
    My best guess is from Lightroom Help - Create and Manage Folders -  Locate Missing Folders
    Can I point to the one parent folder and all the subfolders will come back?
    Is this the process to recover files into lightroom and will there be a problem with so many photos?

    http://www.computer-darkroom.com/lr2_find_folder/find-folder.htm

  • How to stop the new health application from Count the steps/ woking background?

    how to stop the new health application from Count the steps/ woking background?
    I really need your help

    I agree with Mr. Hall that using mx.controls.Alert in Flex may be a better route.
    Show the Alert like this:
    // show an alert with a question and yes and no choices
    Alert.show( "Would you like to go to the Adobe Forums?", "Question",
         Alert.YES | Alert.NO, this, closeHandler, null, Alert.YES );
    Then handle the response in the closeHandler() function:
    protected function closeHandler( closeEvent:CloseEvent ):void
    if( event.detail == Alert.YES )
         navigateToURL( new URLRequest('http://forums.adobe.com'), '_self' );
    else if( event.detail == Alert.NO )
         // they chose no
    The following documentation on Alerts may be helpful:
    http://www.flexafterdark.com/docs/ActionScript-Alert
    Let me know if that helps...
    Ben Edwards

  • How can I Migrate Adobe Lightroom catalogue to a new i-Mac ?

    I am thinking about buying a new iMac but I am concerned about my volume of photos that sit in my MacBook Pro Adobe lightroom catalogue. I am told that I have to de-authorise Lightroom on my MacBook and re-install it on the new computer as Migration assistant will not work....but....what about the Lightroom catalogue ? Will this transfer over with migration assistant ?

    How do I move Lightroom to a new computer? | The Lightroom Queen
    How do I move my catalog, photos and other Lightroom files to a new computer? - The Lightroom Queen Help Desk & Members …

  • How to build a cluster array dynamically from another cluster array?

    I'm working on a problem where I seem to be getting lost in a sea of
    possibilities, none of which strikes me as optimum. Here's what I need to do.
    I've got an input array of clusters (ARR1). Each cluster contains the
    following components: an integer (INT1), a ring variable (RING1), a boolean
    (BOOL1) and a cluster which itself is simply a bunch of ring variables
    (CLUST1) Now, I need to transform that into a set of clusters (CLUST3) each of
    which contains an array of characters (CHARARY2), a copy of the ring variable
    (RING2), a copy of the boolean variable (BOOL2) and a copy of the cluster
    (CLUST2).
    To build the CLUST3, I need to find all elements within ARR1 that have the
    same unique combination of RING1 and BOOL1, and if BOOL1 is True, then RING1
    in addition, build an array of all the INT1 values corresponding to each
    unique combination above converted to character, and then bundle this array
    plus the unique combination of the other variables into a new cluster. In
    general I could have several such clusters.
    So if I had the following array to start with:
    Index INT1 RING1 BOOL1 CLUST1
    0 3 1 F {Values1}
    1 2 1 T {Values2}
    2 4 0 F {Values1}
    3 6 0 F {Values3}
    4 1 2 T {Values2}
    5 4 2 T {Values2}
    6 3 0 T {Values3}
    7 4 2 T {Values3}
    I should end up with the following clusters:
    CHARARY2 RING2 BOOL1 CLUST1
    "3" 1 F Don't care
    "2" 1 T {Values2}
    "4","6" 0 F Don't care
    "1","4" 2 T {Values2}
    "3" 0 T {Values3}
    "4" 2 T {Values3}
    What methods would you suggest for accomplishing this easily and efficiently?
    Alex Rast
    [email protected]
    [email protected]

    Tedious but not conceptually difficult.
    ARR1 goes into a for loop, auto indexed on the FOR loop. The for loop has a
    shift register which will be used to build the output array. Nested within
    the for loop is another for loop, which the shift register array goes into,
    again auto indexed, along with the element that has been auto-indexed from
    ARR1. This for loop has a shift register, initialised with a boolean "true".
    The inner loop compares the current element of ARR1 with the output array
    and if an element in the output array is already present which matches the
    input by your criteria, then the boolean register is set false; otherwise it
    is left alone.
    After the nested FOR loop you have a case fed from the boolean shift
    register; if the boolean is true, the new element is unique and should be
    added to the array. If it is false then a previous element has been found
    making the present one redundant, and the array should be passed through
    without adding the element.
    In the true case, you simply unbundle the original element into its
    components and build the new element, using "build array".
    Notes for if the above is easy for you;
    1) if handling lots of data then pre-initialise the shift register of your
    outer loop with the same number of elements as your input array. Use
    "Replace Array Subset" instead of "Build Array" to insert the current
    element into the pre-allocated memory rather than having to create a new
    array and copy all the current data across, which is what "Build Array" is
    doing. Use "Array Subset" at the end to obtain a new array containing just
    the elements you've used, removing the unused ones at the end.
    2) Again for large datasets- the use of a while loop instead of the inner
    for loop is more efficient since you can halt the while loop as soon as a
    duplicate is found. With the described approach you have to go through the
    whole array even if the first element turns out to be a duplicate- much
    wasted computer time.
    Alex Rast wrote in message
    news:[email protected]...
    > I'm working on a problem where I seem to be getting lost in a sea of
    > possibilities, none of which strikes me as optimum. Here's what I need to
    do.
    >
    > I've got an input array of clusters (ARR1). Each cluster contains the
    > following components: an integer (INT1), a ring variable (RING1), a
    boolean
    > (BOOL1) and a cluster which itself is simply a bunch of ring variables
    > (CLUST1) Now, I need to transform that into a set of clusters (CLUST3)
    each of
    > which contains an array of characters (CHARARY2), a copy of the ring
    variable
    > (RING2), a copy of the boolean variable (BOOL2) and a copy of the cluster
    > (CLUST2).
    >
    > To build the CLUST3, I need to find all elements within ARR1 that have the
    > same unique combination of RING1 and BOOL1, and if BOOL1 is True, then
    RING1
    > in addition, build an array of all the INT1 values corresponding to each
    > unique combination above converted to character, and then bundle this
    array
    > plus the unique combination of the other variables into a new cluster. In
    > general I could have several such clusters.
    >
    > So if I had the following array to start with:
    >
    > Index INT1 RING1 BOOL1 CLUST1
    > ---------------------------------------------------
    > 0 3 1 F {Values1}
    > 1 2 1 T {Values2}
    > 2 4 0 F {Values1}
    > 3 6 0 F {Values3}
    > 4 1 2 T {Values2}
    > 5 4 2 T {Values2}
    > 6 3 0 T {Values3}
    > 7 4 2 T {Values3}
    >
    > I should end up with the following clusters:
    >
    > CHARARY2 RING2 BOOL1 CLUST1
    > -----------------------------------------------------
    > "3" 1 F Don't care
    > "2" 1 T {Values2}
    > "4","6" 0 F Don't care
    > "1","4" 2 T {Values2}
    > "3" 0 T {Values3}
    > "4" 2 T {Values3}
    >
    > What methods would you suggest for accomplishing this easily and
    efficiently?
    >
    > Alex Rast
    > [email protected]
    > [email protected]

  • How do i get new xml back from edited DOM

    i parsed XML to get the DOM and then i edited the dom now how do i get the new XML back from the edited DOM ?????????
    thanx
    sam

    It's not nearly as straight-forward as it should be, but check out the javax.xml.transform package (assuming you're using JDK 1.4).
    I think Xerces has simpler methods for doing this, but I wrote my own serializer class ages ago, and tend to use that.
    RObin

  • How to uncheck "install new versions automatically" from INTERNET EXPLORER 11 from SCCM 2012

    We have deployed "Internet Explorer 11" application  through SCCM 2012 console .the deployed application was customized using "Internet Explorer customization wizard 11" tool.
    issue:
    we are getting  "install new versions automatically" check box as checked
    when we see from help about  "about internet Explorer"
    seeking solution:
    how to uncheck "install new versions automatically" check box from SCCM 2012 console.
    please let me know if we have any solution for this instant
    thanks,
    Gc.Hanumareddy

    Hi,
    For option: "install new versions automatically", we can simply prevent it via GPO or registry (the registry entry can also be deployed via GPO)
    Computer Configuration - Administrative Templates - Windows Components - Internet Explorer - Install new versions of Internet Explorer automatically
    Or
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Main]    
    "EnableAutoUpgrade"=dword:00000000
    Yolanda Zhu
    TechNet Community Support

  • How do you make new playlists derived from previous playlists?

    I seem to remember a time when I could open one of my playlists as a window, and could have several playlists open at once as windows, and could drag songs from one to the other to create new playlists.   Is this capability still there?  From what I see in order to create a playlist now I can only add songs from my full music database rather than from another created playlist.  This is 10 times harder to do because the full music database has so many songs its hard to find what I want.  What am I doing wrong.

    You can create a new smart playlist (File > New Smart Playlist from iTunes' menu).  You can put a rule in there such as Playlist Is [an old playlist you would like to include].  You can have several such rules.

  • How do i install os 10.7 from usb in recovery mode

    The os that is on my old macbook is corrupted and I need to install a new version purchased from the apple website that delivers it via email.  Once I have transferred it to a storage device, how do I install it via usb or disk?

    The only thing you get in the email is a redemption code that allows you to download Lion through your App Store account. Can you boot your Mac normally long enough to download Lion?
    If so, once you have the full Lion installer, you can use any 8 GB flash drive to create a bootable installer with DiskMaker X.

  • How can I remove Photoshop/lightroom/bridge from my old mac to my new mac?

    I bought from Adobe the package with ps/lr/br and payed already for a year.
    Now I bought a new mac and would like to remove the programs from my old mac to my new mac. So, how can I do?
    They are connected with watch other now and I deinstalled the Creative cloud on my old one, so what can I do now? How can I install the programs on my new mac without paying again?

    Install the Creative Cloud manager on the new machine and load up the applications from there.

  • How to build quickly new weblogic Servers ?

    Hi all,
    I'd need to build additional Weblogic Servers,
    each one running on different ports.
    I still haven't found how to do it in the
    docs. From the console I have tried to add a new
    Server but then if check my weblogic tree I can
    see that I don't get built the structure of the
    Server (dirs: applications, log files:startWeblogic,stopWeblogic etc.)
    The only way to achieve it was to manually copy a server
    already installed (like petstore) and then cleaning
    all the files under applications and log and eventually
    modifying the config.xml renaming all the entries.
    (A very very dirty job!!!). Does anyone know a faster
    way to do it?
    Thanks
    Francesco

    thanks kumar. That works fine.
    Francesco
    Kumar Allamraju <[email protected]> wrote:
    This should do it.
    java weblogic.Admin -url <admin url> -username system -password <admin
    password> CREATE -name "DUNCAN" -type Server -domain mydomain
    BTW, applications dir is "domain wide", not per-server wide.
    I do agree that the above utility won't create any start scripts ;-(
    Kumar
    Francesco wrote:
    Hi all,
    I'd need to build additional Weblogic Servers,
    each one running on different ports.
    I still haven't found how to do it in the
    docs. From the console I have tried to add a new
    Server but then if check my weblogic tree I can
    see that I don't get built the structure of the
    Server (dirs: applications, log files:startWeblogic,stopWeblogic etc.)
    The only way to achieve it was to manually copy a server
    already installed (like petstore) and then cleaning
    all the files under applications and log and eventually
    modifying the config.xml renaming all the entries.
    (A very very dirty job!!!). Does anyone know a faster
    way to do it?
    Thanks
    Francesco

  • How to open a new browser window from a JSP page?

    Hi,
    I am picking up records from the database and displaying each record in a seperate text area field using the JSP code. I should be able to display the content ( available in the text area) in a seperate window if the user clicks on one icon.
    Is it possible to open a new browser window using JSP? If yes, how can I write information on the new browser window?
    Thanks in advance.

    Is it possible to open a new browser window using JSP?a JSP page is also an HTML page, this is client side stuff, you can do it with JavaScript.

  • How to generate a new predefined PDF from certain form data?

    Hi,
    I want to create a form (in either Word or PDF) with diffrerent sections for people to fill out. I then want them to easily turn some of the data from the form into a new predefined PDF template.
    For example, I have created a case study form for academics to complete. Then i'd like them to be able to generate an actual case study that they can distribute. The case study will be a predefined template that only needs to contain certain data from the form. Some of the sections on the form will be for internal purposes only.
    How can i do this? I have Abobe Pro, but not everyone does.
    Thanks
    Kellie

    This type if thing is fairly easy to do for people who have Acrobat since the form data can be readily exported from one PDF and imported into another, but this isn't an option with Reader. There are methods you can use to easily copy data from one form to another with Reader, but it relies on JavaScript programming in both of the forms. If this sounds like something you want to pursue, post again and I can provide some guidance.

  • How to create a new database instance from an existing one?

    Hi, I basically want to create a snapshot of a production
    instance (version 8.1.7) for querying purposes. Would anyone
    tell me the steps involved? What I did as follows:
    1. Copy all data files to a new location
    2. Modify init.ora accordingly. I believe there is no separate
    control file for this version.
    But when I startup the instance, got this error:
    ORA-01103: database name 'TRITON' in controlfile is not 'HERCULE'
    What is missing? Do these data files contains links to the
    previous instance name?
    Thanks for any help.

    Hi All,
    I need some help in recreating new database instance.
    Here are the steps I have done so far:
    1. Created a database with name 'LASTDB' using DBCA
    2. Connected to RMAN.
    3. RMAN>SET DBID=******; (of the source database)
    4. Connect to target. RMAN>connect target SYS/*****;
    5. Executed controlfile restore on RMAN.
         RMAN>Run{
    Allocate channel D1 Type DISK;
              Set controlfile autobackup format for device type DISK to
    ‘\\<ip_address>\Backup\Prod\%F’;
    Restore controlfile from autobackup;
    6. RMAN> ALTER DATABASE MOUNT;
    Now got an error saying ORA-01103: database name ‘PRODDB' in control file is not ‘LASTDB’
    I tried using NID to change the database name but it's throwing an error that database is not mounted.
    I have browsed a lot and found that I need to recreate a control file of the production database using ALTER DATABASE BACKUP CONTROLFILE TO TRACE and should edit the trace file. But it also says to shutdown the source database which is production database and I cannot try that.
    Also I have tried adding a line to init.ora like lock_space_name = LASTDB. Also tried replacing everything from LASTDB to PRODDB but that didn't work either.
    I have been trying to find a solution to this. Please bear with me as I'm a beginner and please let me know how I can fix the error.
    I am running oracle 10.1.0.2.0 enterprise edition on windows 2000.
    Thanks for your patience,
    KG

  • Rel 12 - How to create a new APPS connection from custom Java/Shell Script

    Hi,
    I am looking to write a custom JAVA code / Shell Script which needs to establish a connection to execute a PL/SQL API on Rel 12 db.
    The challenge is to be able to connect without specifying APPS Password anywhere (just like Oracle Apps does it).
    This Shell script / Java code is not called from within Apps hence I need to establish a brand new connection along the lines of using ....
    WebAppsContext ctx = new WebAppsContext(System.getProperty("JTFDBCFILE"));
    OracleConnection conn = (OracleConnection)ctx.getJDBCConnection();
    like in 11i world or possibly using APPLSYSPUB username
    I need help / direction in how to do this in a Rel 12 env. I understnad there are lot of architecture changes and if someone can provide a generic code snipped it will be great.
    I need to keep this as closely aligned to Rel 12 coding and security standards as possible.
    This code will reside in $XXCUSTOM_TOP/bin file or under XXCUSTOM.oracle.apps.java....... if its Java.
    Pls help.
    Cheers
    -- VK.

    Hi,
    Have you looked at Oracle produced dbc file and its contents? That might help. It is under $FND_TOP/secure. It uses GWYUID=APPLSYSPUB/PUB. I am hoping that the APPS_JDBC_URL would help too.
    Regards,

Maybe you are looking for

  • Download free trial Illustrator.  windows surface pro 3 window 8.1.  cloud says app updated.  illustrator will not open

    Hello, I downloaded the free 30 day trial of Adobe Illustrator on my Surface Pro 3.  The download process has seemed to go okay, the app says it is updated.  When I go to open it, cursor spins for a second but nothing happens. Thanks

  • Boot Camp - Parallels - Windows 7 - 32bit - 64bit

    Hi. First off, and not looking for sympathy - just a little background of myself: I have recently recovered from two bouts of high dose chemo and a stem cell transplant. My memory and brain...processing speed, for lack of correct word or two, is no w

  • Deploying a JSP file

    Hello, I am currently trying to deploy a jsp file on the application server from NWDS. But unfortunatelly I didn't manage to make it work yet. If anybody could provide a step by step howto that would be great, I am not very familiar with the deployme

  • Games my pc can handle??

    Well, I just got my new laptop a few weeks ago and it is great.  It has one very horrible UNfeature- a built in graphics card, which means a poor one in this case.  (It also has a single core vs. dual core processor, but that should not be TOO big a

  • PCI video capturer........!!!!!S.O.S.!!!!!.........Please.

    Can be captured video of the connected disposotivo the entrance independently?. For example of a DVD player.... My Pci is Pinnacle Studio 500 PCI, and software is Studio 10 from Pinnacle too. THANKS.