Changing Import source

I am running out of hard drive space which is the source for importing my images into Lightroom 4.3.  I have these images backed up on an external drive.  I now want to use the external drive as my source of import.  How do I do that.  And then how to do I find the missing files in Lightroom?

You will need to repoint the folders in the Folder's panel to the EHD.
This works best if you photos are in folders that all nest under a single or just a few Parent folders.  Then you can simply repoint the top level folder and all the subfolders will follow. If not, you will either have to expose a hidden Parent folder (if one exists) or repoint each folder in the Folders panel individually.
Example:
Photographs (Parent)
     2012
          2012-01-01
If you can see 2012 but not Photographs in this example you can Right/CTRL Click on the Folder and tell Lightroom to Show Parent Folder.
Go to the Folders panel
Select a Folder
Right Click (PC) or CTRL Click (Mac) on the folder icon.
Choose Update Folder Location…
Navigate to the folder's location on the EHD
Press [Select Folder]
Repeat as necesary.
Test one or two folders. You can always point them back if isn't working well.

Similar Messages

  • Automating Importing a Visio OLE Object or Changing the Source of a Previously Imported OLE Object

    My colleagues and I import our Visio files into FrameMaker 10 via the following mechanism: File > Import > Object... > Create from File (with Link checked).  We do this because, for us, the benefits of object linking and embedding outweight the pitfalls. In order to institute and automate a graphic file naming convention, I want to be able to do one of the following using ExtendScript:
    Replace each Visio OLE object with that of a renamed or new Visio file. (I've tried using the Import() method  with many different import-script settings, but have not found the correct import-script, if such a thing exists for importing Visio files  imported by reference and linked as OLE objects. My typical error when attempting this is FV_DisallowedImportType, which indicates the source file type is disallowed by my import-script settings. When I talk about my import-script settings, I'm referring to the adjustments that I make to the parameters returned from a call to GetImportDefaultParams().  I've tried numerous import-script combinations but have had no luck. )
    Rename the Visio source file and change the source file of an already-linked Visio OLE object.  (To do this, I need to determine how to implement a script that equals the following user actions while a FM document is open: clicking on Links... under the Edit menu to bring-up the Links window; selecting each link displayed in the Links window; clicking the Change Source button for each selected link; entering the new file name in the File name field of the Change Source window; clicking Open.  Needless to say, I found nothing in the ExtendScript capabilities that indicates that this approach is doable. It may be doable using FDK F_Codes, I haven't explored that avenue and would like to avoid it.)
    Modify the OLE2 facet such that it points to the renamed file instead of the previous name for the file.  (This does not seem like a clean approach.  As is the case now, I don't know how to properly update the facet with the new file name.  I've experimented with simply changing the file name strings from new to old, but that does not work.  There's probably some error-checking or checksum that needs to be recomputed.  Bottom line: I don't know enough about facets.)
    Any help would be greatly appreciated.
    Thanks, Paul

    Hi Paul,
    I tried doing something like this years ago with FrameScript, but found out that the OLE stuff is not exposed to FrameScript or the FDK. So it is probably not exposed to ExtendScript either. When you query an OLE graphic's InsetFile property, it returns a null string, the same as a graphic Imported by Copy would. As far as I can see, importing as an OLE object is only available through the Windows FrameMaker interface.
    Rick

  • Imported source file name changed for the external table

    Hi,
    I have external table from flat file. Now the source file name is changed. I can change the file location to point to the new file name, but I can't update the source for the flat file property(as seen under flat file properties,structure tab. the column "Sampled From"). Is there way to have this update without having to import the file using the new file name again?

    In the Files section in the object navigator find the flat file you want to change the source of.
    Double click on the actual file, and on the General tab change the old file name to the new one.
    The fact that it has been sampled from a different file should not 'disturb' the working of the external table.
    However, if the structure of the new file is different I'd suggest to resample.
    Good luck, Patrick

  • How can I change the source file so it is direct from external hard drive?

    I am trying to make a movie on imovie of a snowboarding trip that I went on, there is around 80 to 100 gig of mp4 movies that will not fit on my computer that I have stored on my external harddrive. I had the movie half finished then found I could do no more as I had no space left in my mac. I had to delete everything and start again but I'm not doing this until I can find a way of changing the source file so I can take them direct from my external hard drive as to not use up all my computers available space. I have moved imovie to my external hard drive but it still tries to read from a movie file on my mac, how can I change that so it will read from a source file on my external hard drive, is it possible?? Can someone help me??

    Hi Bengt, Thanks for your input, much appreciated.
    I have a WD 1TIG hard drive and are using usb connection, is it possible to use fire wire with these? I have had trouble with a lot of the videos I Imported, once they downloaded the file in the viewer window showed up blank and when I mouse over them it places a picture of another file in the window and wont drag and drop into the movie window, like their corrupted or something? Had to delete just about all of them and start again. Also is it possible to select a bunch of videos in the viewer window as to change the dates to the correct dates? All I have been able to do is "select all" which is no help.

  • How to change the source ip address

    hi all,
    i got the problem that how to change the source ip address when i
    get a website's page!
    i mean i want to change the source ip address when i access the
    remote website, sure i know when change the source ip, i can not get
    the result correctly when changing the source ip address, but it is not
    important to get the result i just want to send out a "click" event to the website by calling a post method in the site!
    does anybody have some ideas?
    Best Regards,
    Eric Gau

    Here's some code that connects to google and does a get:
    import java.io.*;
    import java.net.*;
    public class HTTPTest {
        private Socket sock;
        private BufferedReader in;
        private BufferedWriter out;
        private boolean running = false;
        HTTPTest() {
        private void go(String site) {
            try {
                sock = new Socket(site, 80);
                in = new BufferedReader(new InputStreamReader(sock.getInputStream()));
                out = new BufferedWriter(new OutputStreamWriter(sock.getOutputStream()));
                System.out.println("Connected");
                out.write("GET / HTTP/1.1\r\n\r\n");
                out.flush();
                doRead();
            } catch (IOException e) {
                e.printStackTrace();
        private void doRead() {
            running = true;
            String line;
            System.out.println("Read started");
            while (running) {
                try {
                    line = in.readLine();
                } catch (IOException e) {
                    e.printStackTrace();
                    line = null;
                if (line == null) {
                    running = false;
                } else {
                    System.out.println(line);
            System.out.println("Socket closed");
        public static void main(String [] args) {
            String site;
            if (args.length > 0) {
                site = args[0];
            } else {
                site = "google.ca";
            new HTTPTest().go(site);
    }

  • Dynamically change the source flv video in flv play back...

    Dear Friends,
    Iam trying to load flv files in flash using flvplayerback components. iam using the following code. Initially iam loadign video1.flv. Then i want to load video2.flv when i press next button. It is loading video2 only when i press next button after finishing the full loaded video1. i want change the source anytime please tell the right way.
    import fl.video.VideoProgressEvent;
    import fl.video.VideoEvent;
    plr.source = "video1.flv";
    plr.addEventListener(VideoProgressEvent.PROGRESS,showmsg);
    function showmsg(event:ProgressEvent) {
    if (plr.bytesTotal == plr.bytesLoaded) {
      trace("Loaded");
    loaderpic.visible = false;
    plr.addEventListener(VideoEvent.COMPLETE, comple);
    function comple(event:VideoEvent) {
    trace("Movie Finished");
    nxt.addEventListener(MouseEvent.CLICK, nxtclick);
    function nxtclick(event:MouseEvent) {
    plr.stop();
    plr.source = "video2.flv";
    plr.play();
    Thanks in Advance,
    Syed Abdul Rahim

    The code you show works fine for me when I set things up to match.  When the button is clicked the first video is stopped and the second one replaces it.  Maybe you have some other code that is interfering.

  • Changes in Source Database.

    Hi All,
    OWB Config Details is as follows.
    OWB ver 9.2 with Windows NT
    Oracle 9i.
    In near future we are expecting changes in source database i.e. source database from existing will change to a new database which may be same or different.
    The level of changes identified are as follows.
    Table Name Changes
    Column Name Changes
    Business Logic Changes
    View name changes
    I guess there will be changes in other parameter like ip address,sid, dblink ..etc.
    I knew in OWB 9.0.2.56 column level changes can be incorporated by re-importing the table & adding,modifying or deleting the column & by selecting in-bound / out-bound reconcillation option in mapping editor. I would like to know is it the same way we need to do in OWB 9.2 version or is there any better way or utility which can ease this task?
    As per my knowledge we will need to do it for each & every mapping & in case of business logic change, we will need to recreate the mapping.
    Can someone help me in this?
    Thanks in Advance.
    Regards,
    Vidyanand

    Hi Igor,
    You are talking about simplifying matters when there have been changes in the source, and that that is going to be in the release of Q2-2004.
    Which release might that be and - since it is already mid september - is it already 'on the market'?
    What I'm looking for is an 'easy' way to incorporate changes in source objects in all mapping objects that are not database objects.
    So far this has always been a manual job, since only DB-objects can be reconciled. If you have a very big mapping with a lot of objects between source and target DB-object, this has proven to be extremely time-consuming, since all objects have to be opened and the attribute properties of altered columns manually adjusted to the new situation.
    Is this wat you are talking about that is going to be greatly improved?
    If not, what would be the best approach for these sorts of operations?
    Cheers, Patrick
    ps Using version 9.2.0.2.8 and waiting for DBA to patch to 9.2.0.4

  • Change of source system - any mass transaction?

    Hi,
    we have to transfer some programs and stuff from one system to another. Basis people will manually import a transport for this. In target system, I want to change the source system of  the transported objects. Because it is quite a big number, I am looking for a standard reoprt/transaction to accomplish that.
    Any hints?
    TIA,
    Regards,
    Clemens

    Hi
    I believe yuo can create a program to update the table TRDIR, something like this:
    TABLES: TADIR.                         " Catalogo oggetti R/3 Repository
    DATA: COUNT TYPE I.
    PARAMETERS: P_SYST1 LIKE TADIR-SRCSYSTEM, " Source Sys
                P_CLASS LIKE TADIR-DEVCLASS ,
                P_SYST2 LIKE TADIR-SRCSYSTEM. " Target Sys.
    SELECT * FROM TADIR WHERE SRCSYSTEM = P_SYST1
                          AND DEVCLASS  = P_CLASS.
      TADIR-SRCSYSTEM = P_SYST2.
      MODIFY TADIR.
      IF SY-SUBRC = 0.
        COUNT = COUNT + 1.
      ENDIF.
    ENDSELECT.
    IF SY-SUBRC = 0.
       WRITE: Count, 'Objects from', P_SYST1, 'to', P_SYST2.
    ENDIF.
    U can try to use the trx SE03:
    - Run the node: Change Objects Directoty entries
    Here you can change the dev class and source system too, but I don't believe it can change all objects in mass way.
    Max

  • How to change the source file of audio elements

    Hi,
    I am using adobe edge version 3 to add audio to a website.I use both .ogg and .mp3 files.
    Inside the _edge.js file the audio element has 2 sources (one for .ogg and one for .mp3)
                    id: 'audio_element_id',
                    type: 'audio',
                    tag: 'audio',
                    rect: ['0', '0','320px','45px','auto', 'auto'],
                    source: ['source_file.mp3','source_file4.ogg']
    I want to change the source file of the audio_element programatically......
    So i am using the following code inside edgeActions.js to change the source
    sym.$("audio_element_id")[0].src="new_source_file.mp3";
    But this will change the source of both(.mp3 and .ogg ) to  new_source_file.mp3
    I want to change the source induvidually. What should i do??
    Also I wanted to know what " [0] " stands for in " sym.$("my_audio_element")[0].play(); "
    Please give me an example of a situation wherein i have to change the value of [0].
    Thank you
    Nithin

    you should create a different directory for each dvd on your hard drive and put the files where they belong eg: dvd1, dvd2, dvd3
    then create 3 bins in your project manager called dvd1, dvd2, dvd3 and put the relevant files into the bins ( can import whole folders into each respective bin )
    OR rename your files using something like " renamer" before importing to premiere
    otherwise youll have a mess of a time trying to figure out whats what...maybe someone else has a better solution

  • How can I change the source DB?

    Hi all,
    I have implemented an ETL with OWB where the source DB and the target DB both are Oracle.
    Now I have the same source (the same structure, tables, indexes,...) DB in MSSQL. Then my question is: how can I change the connections without modifying the mappings?
    I only want to change the source DB in Oracle to the same DB in MSSQL, therefore the mappings that are getting the data from Oracle then will get the data from MSSQL DB. Is it possible? or I have to create new mappings for MSSQL?
    Many thanks in advance,
    Victor.
    p.d. hope my english is understable

    Hi
    To have one set of mappings that could be switched to point to one system or another would be possible using synonyms to the source, where the synonym could be refined at runtime.
    You can have unbound table operators in OWB mappings that would be the name of the source item. It helps to understand a little about how the code generation works in order to do this. If you use a source table T in a schema S1, and the mappings is in schema S2, then the generated code would refer to S1.T and may even have a dblink so S1.T@dblink, an unbound table operator for table T would simply use the name T in the generated code, this lets you define T however you want in the schema where the mapping is deployed to. So T could be a synonym that points to a local Oracle table for example named S3.MYORATAB or it could be a SQLServer table referenced via the database gateway using MYSQLSERVERTAB@mysqlserverinstance
    Here is a trick to quickly define an unbound table operator based on the table structure of an existing table. You can quickly create unbound table operators that look like other tables by adding an existing table which you have imported into the map, then add a new table operator and add it unbound with a name. Then map from the bound table operators in/out group to the unbound table operators in/out grp, this will define all of the attributes and datatypes, you can then delete the bound table operator to leave the unbound one.
    An alternative would be to copy-paste the mappings and synchronize the source table operators with the SQLServer table definitions.
    Cheers
    David

  • I can not map field after changing data source location

    Hi
    I have a small problem that I got a report file and database from my customer, after that I setup database, open the file and change data source to my setting. but some filed can not map. The field mapping widonw does not display all field in the table. Of course I have checked the missing fields are existing in the table.
    OS:Windows7
    DB:Oracle11
    CR:XI Release 2
    Does anyone have an idea?

    hi,
    In Map Fields window, there is an option "Match Type".
    Please Unchek that option, so that you will be able to see all the fields from that table.
    Also, while mapping please verify the datatypes of source and target fields.
    Regards,
    Vamsee

  • Changing the source system in QA

    Hello All,
    I just wanted a quick opinion from your experience on the following issue:
    We  have a ECC Dev client 20 connected to BI Dev client 20
    Similarly we have ECC QA 120 connected to BI QA 120
    But due to some reason we now want to connect a new ECC QA client 150 to BI QA 120 and take out ECC QA 120 totally(120 is wiped off).
    I already have a lot of development transported to BI QA where the source system is ECC 120. Now if 120 dies and we pull the data from 150, what are the pitfalls to watch for?
    Like all my Master data objects , DSO and Cubes still point to ECC QA client 120 but now the "actual" source system is going to be ECC QA 150.
    Points,
    Gaurav

    You need to replicate all the data sources in BI from QA 150 and change the source system assignment to 150 instead of 120.
    Also, you need to reinitilase delta for delta enabled extractors.
    Two  things to watch out:
    1.  If you dont have source system identifier,  then if you happen to get records with same key, then it will overwrite. This applies to both master and transaction data.
    2. For transaction data that is not delta enables, there may be a possibiltiy with which the records will get duplicated. So, better to delete the old requests before reload the data from QA150.
    Ravi Thothadri

  • How to change the source type for a primary key on a form?

    Hi,
    At the time of creating a form, I had set the source type for the primary key to an existing sequence.
    Now I want to change the source to a trigger.
    Can anyone suggest how to do it?
    Thanks in advance,
    Annie

    Annie:
    Define the trigger and then delete the page process named 'Get PK'
    Varad

  • How to change the source system for just a datasource

    Hi,
    Our test/development BI system ( BI 7.0 Unicode ) is connected to our development system and to our test system, 1 BI system connected to 2 R/3 systems.
    During some time, the test system won't be available so all datasources that point to the test system must be connected to the development system. In RSA1 is not possible to change the source system in a datasource: RSDS 057
    'Creation of DataSources for SAP source system D30CLNT007 is not permitted' , same error trying to copy the datasource,.
    Any idea about how to proceed ?
    Regards,
    Joan

    Hi,
    If I try to repliclate metadata in the datasource, message RSAR 051 appears: 'error when opening an RFC connection'. This error is expected because the logical system pointed in the datasource does not exist.
    Is not possible to change the source system in datasource ( in RSA1 ) because the field is always greyed, also if I try to copy the datasource the message RSDS 057 appears.
    Any idea about how to proceed ?
    Regards,
    Joan

  • How to change data source name and context root during deployment

    Hi,
    Env:
    WLS 10.1.3
    JDev 11.1.1.6
    Hudson
    I need to deploy two instances of my ADF application on the same development enviroment. We are using Hudson to deploy. My question is how to change data source name and application context root before second deployment.
    Kuba

    I don't believe there is an inbuilt facility to do this.
    Previously how I've done this is when checking files out using Hudson jovs, before the build I then use an Ant extension called XmlTask (http://www.oopsconsultancy.com/software/xmltask/) to modify the required XML files.
    Can I ask why you're doing this in the first place please? Multi-tenancy? 2 versions of the same app?
    CM.

Maybe you are looking for

  • Multiple iPhones on my account

    So I have three iPhones (4') on my iTunes account. I'm the parent so I pay - LOL. Over many years myself, and my two kids have bought a massive amount of music, TV shows and movies and Apps - I mean a lot. They each have their own MacBooks that befor

  • How do I put my name in my iphone?

    hi! I bought Iphone 5 a few days ago, and I have not put my name in it. How do I do it?

  • Unable to create the bluetooth virtual COM port

    Hi all I install BS from Toshiba and it seems ok. Bt ir desn´t work. I see all the drivers installed, system devices, etc. No Toshiba BT ports can be seen. Local com ports only show modem port. Try to create a virtual port but get a message "unable t

  • Uninstalling Elements 7

    Just installed Elements 10.  Using Windows Vista cannot find Elements 7 in Control Panel program list to delete its associated files.  Don't want to risk just deleting the files.  Any thoughts?  Thanks

  • Airport suddenly loses connection

    Hello! So, I've been having this strange issue with my airport since last night. I've read up on some of the issues and I've tried a bunch of fixes, but nothing seems to work. I'm using a new macbook I bought in January, running OS X 10.6.2 Last nigh