A Smart Collection based on import date?

Is this possible?
I want to introduce this into my workflow if possible

fishalot wrote:
Thanks for getting back to me
You bet .
fishalot wrote:
I wanted to use import date so that I can easily make sure that I track my actions, The problems that I have with capture date is due to the problem of having multiple devices, I may miss images if I dont import on a regular basis.
Personally, I set some metadata when I'm finished, so anything without that metadata set still needs work.
You may find something like this helpful:
http://regex.info/blog/lightroom-goodies/folder-status
Rob

Similar Messages

  • Can I bulk collect based on a date variable?

    I'm want to use some sort of Bulk collect to speed up this query inside a PL/SQL block (we're in 10g). I have seen examples of using a FORALL statement but I don't know how to accommodate the variable v_cal_date. My idea is to be able to run the script to update a portion of the table "tbl_status_jjs" based on a date range that I provide. tbl_status_jjs contains a list of dates by minute of the day for an entire year and a blank column to be filled in.
    I though of using something like FORALL v_cal_date in '01-apr-2009 00:00:00'..'01-jun-2009 00:00:00' -- somehow need to increment by minute!? ... but that doesn't seem right and i can't find any exmples of a bulk collect based on a date. How do I bulk collect on a date variable? Can I use the date/time from a subset of records from the final table in some sort of cursor?
    Thanks
    Jason
    -- loop through one day by minute of the day and update counts into table  
    v_cal_date Date       :=TO_DATE('01-apr-2005 00:00:00','dd-mm-yyyy hh24:mi:ss');
    intX := 1;
    WHILE intX <= 1440 LOOP
        UPDATE tbl_status_jjs
               SET  (cal_date, my_count) =
                    (SELECT      v_cal_date,
                                 NVL(SUM(CASE WHEN v_cal_date >= E.START_DT AND v_cal_date < E.END_DT THEN 1 END),0) AS my_count
                     FROM        tbl_data_jjs E
               WHERE cal_date = v_cal_date;
        v_cal_date := v_cal_date + (1/1440);
        intX := intX + 1;
        COMMIT;
    END LOOP;

    Here are the two tables. The goal is to find an efficient way to count how many records in tbl_data have a start_dt before and a end_dt after each cal_date in tbl_status.
    01-apr-2005 00:05:00 ==> 3
    01-apr-2005 00:25:00 ==> 1
    DROP TABLE tbl_status;
    CREATE TABLE tbl_status
    (   CAL_DATE    DATE,
        MY_COUNT    NUMBER);
    DECLARE
        start_date Date       :=TO_DATE('01-jan-2006 00:00:00','dd-mm-yyyy hh24:mi:ss');
        end_date   Date       :=TO_DATE('01-jan-2006 01:00:00','dd-mm-yyyy hh24:mi:ss');
    BEGIN
        INSERT INTO tbl_status (CAL_DATE)
        SELECT  start_date + ( (LEVEL - 1) / (24 * 60))
        FROM    dual
        CONNECT BY    LEVEL <= 1 + ( (end_date - start_date) * (24 * 60) );
    END;
    DROP TABLE tbl_data;
    CREATE TABLE tbl_data
    (   START_DT    DATE,
        END_DT      DATE);
    INSERT INTO tbl_data VALUES (TO_DATE('2006-01-01 00:05:00', 'yyyy-mm-dd hh24:mi:ss'), TO_DATE('2006-01-01 00:15:00', 'yyyy-mm-dd hh24:mi:ss'));
    INSERT INTO tbl_data VALUES (TO_DATE('2006-01-01 00:05:00', 'yyyy-mm-dd hh24:mi:ss'), TO_DATE('2006-01-01 00:20:00', 'yyyy-mm-dd hh24:mi:ss'));
    INSERT INTO tbl_data VALUES (TO_DATE('2006-01-01 00:05:00', 'yyyy-mm-dd hh24:mi:ss'), TO_DATE('2006-01-01 00:30:00', 'yyyy-mm-dd hh24:mi:ss'));
    INSERT INTO tbl_data VALUES (TO_DATE('2006-01-01 00:35:00', 'yyyy-mm-dd hh24:mi:ss'), TO_DATE('2006-01-01 00:40:00', 'yyyy-mm-dd hh24:mi:ss'));
    DECLARE
        v_cal_date Date       :=TO_DATE('01-jan-2006 00:00:00','dd-mm-yyyy hh24:mi:ss');
        intX Integer          :=1;
    BEGIN
        WHILE intX <= 60 LOOP
            UPDATE tbl_status
                   SET  (cal_date, my_count) =
                        (SELECT      v_cal_date,
                                     NVL(SUM(CASE WHEN v_cal_date >= E.START_DT AND v_cal_date < E.END_DT THEN 1 END),0) AS my_count
                         FROM        tbl_data E
                   WHERE cal_date = v_cal_date;
            v_cal_date := v_cal_date + (1/1440);
            intX := intX + 1;
            COMMIT;
        END LOOP;
    END;Edited by: Jason_S on Oct 21, 2009 9:00 AM -- i messed up the years/months .. fixed now
    Edited by: Jason_S on Oct 21, 2009 9:13 AM

  • How to sort a collection based on their date?

    how do i sort a collection based on their respective dates which are in Calendar format?

    this is my codes
    /** This class is use to sort the call list base on their date
    import java.util.*;
    public class a implements Comparator
         /** compare the objects base on their types
         *     @obj1 the first object to be compared
         *     @obj2 the second object to compare with the first object
         public int compare(Object obj1, Object obj2)
         if (obj1 == obj2)
              return 0;
         if (obj1 == null || obj2 == null)
              return 0;
         if (!(obj1 instanceof Call) || !(obj2 instanceof Call))
              return 0;
         Call lhs = (Call) obj1;
         Call rhs = (Call) obj2;
         int s = lhs.getDate().compareTo(rhs.getDate());
         if (s != 0)     
              return s;
         return 1;
    this is the error
    a.java:21: cannot resolve symbol
    symbol : method compareTo (java.util.Calendar)
    location: class java.util.Calendar
         int s = lhs.getDate().compareTo(rhs.getDate());

  • Search or Smart Collection based on Camera Calibration profile?

    Is there a way to do this?

    Well, DevMeta is the slowest for doing initial metadata aquisition, but then is the fastest to use, since it harnesses Lightroom's native lib filter & smart collection mechanisms. It keeps develop metadata up to date in the background, ready for lib filters and smart collections.
    AnyFilter aquires metadata on demand, but does it fairly quickly, so if you only use develop metadata on special occasions, and don't care if access is via native lib filtering or smart collections, it may be preferrable to DevMeta.
    Jeffrey Friedl makes some of the most polished plugins of any author I know, but I'm not very familiar with Data Explorer - I'm sure it's great..
    Doesn't take long to try 'em out though .
    Have fun,
    Rob

  • Smart Collection "Capture Date is in the last n hours" not working?

    In Smart Collection, the rule "Capture Date is in the last n hours" doesn't work for me. It seems to behave similarly to "Capture Date is today".  (See the screenshot below).  Has anyone else noticed this, or can you replicate this?  If so, I'll file a bug report.

    Key into the address bar ''about:crashes'' you should get a list of Crash IDs paste a couple of those into your next Message. Also ensure any security related software is fully updated that often causes problems when upgrades to Firefox are released.
    Standard reply:
    We're sorry to hear that your Firefox seems to be crashing. Please perform the following steps to give us a crash report ID that helps us find out more about the cause of the crash.
    #Enter about:crashes in the Firefox location bar (that's where you enter your website names) and press Enter. You should now see a list of submitted crash reports.
    #Copy the most recent 5 report IDs that you see in the crash report window and paste them into your forum response.
    Thanks in advance for your help!
    More information and further troubleshooting steps can be found in the [[Firefox crashes]] article.

  • Smart albums based on date images were last edited

    Here's a quick question to throw out to the masses...
    Is it possible to create smart albums based on the date images were last edited within Aperture?
    If yes, then I can't seem to locate it! - Probably right in front of my nose!
    If no, then I think it would be a really handy feature so you can easily keep track of any changes made to individual images throughout your whole library by the date they were last tampered with.
    Any views, or pointers in the right direction?
    thanks
    Jason.

    Hi,
    this is exactly what I am looking for too! I would like to extend the question to: Is there any way to find the date when a version was created or modified?
    Thanks for your help,
    Uwe

  • Update to process version 2010 & smart collection "has adjustments"

    Buying the new Lightroom 3 version ofcourse I wanted to profit of the new process version. So I selected all images I had "not adjusted" before and selected Update to Process version 2010. This works great.
    However I now have one problem.
    I had and have a Smart collection which helps me in my workflow to find all images that have not been touched, so have no adjustments.
    This Smart collection has become worthless because of the update to process version 2010 all images have been adjusted.
    Ok, this is correct and yet I miss my ability to select images which I have not adjusted.
    Once I have set the default process version to 2010 all new images are correctly shown.
    Question: how can I select all those images which have only the process version updated, but have no further adjustments?

    Changing the process to version 2010 is considered as an adjustment; it will appear in the photo's history in the same way as any other development adjustment. The smart filter condition "Has Adjustments" only has a true or false setting so you can't distinguish the process version adjustment from any other. Instead of using this method to spot the photos I need to work on, I find that I have more control over my workflow by using keywords such as "review", "develop", "print"; you can make these keywords not exportable so that they are not part of the keyword list in exported photos.
    Interestingly, when one or more photos are selected in the  film strip and the reset button is clicked in develop mode the photo  will revert back to its original state, the "Has Adjustments" condition  will become false, but the process version will remain at 2010.
    If you have a backup of your catalog that precedes the step where you updated the process version of all photos, open this backup, add a keyword of your choice to all the photos that have not been touched, then apply the process version change. You can then change your smart catalog to use this keyword as opposed to the "Has Adjustment" condition and remove the keyword you have set on photos that have not been touched as soon as you are done editing them. IMPORTANT: Any changes you have made following the date and time of the backup will be lost.
    If you don't have a backup to go to, you will have to manually identify which photos, which from your point of view, have not been touched.
    Some ideas:
    If you did not make other edits following the change of the process version, and have not made other edits on that date, you could built a smart collection based on the 'Edit Date" and then reset the develop settings of all the photos in that collection.
    Another possible condition is a "Capture Date" range where you know photos haven't been touched yet.
    There may be other options, there may be a plugin that can help you, or ultimately there would be means to access the database outside of Lightroom - contact me if you get that desperate to fix this!
    http://www.BDLImagery.com

  • Copy Smart Collection Settings

    I would like for there to be a way to copy Smart Collection settings directly.  It can be done by exporting the smart collection settings to a file, then reimporting them.
    Suggestion - in the context menu for the smart collection, add a new item Duplicate.
    This came up when I was building smart collections based on dates and keywords and wanted to create new collections with different date sets.

    I've been asking for this ever since smart collections made their first appearance in Lightroom - there should be a simple right click menu.
    Instead, you have to right click and export the smart collection, then right click and import it.

  • Smart collection of images that have been printed

    I'd like to create a smart collection of images that have been printed.  Is there any way to do this?  If not, is there a way to search for images that have been printed?
    Separately, one my smart collections screens by edit date so that I can find out what I have worked on recently.  However, it also picks up everything I shot and imported recently, even if I haven't edited the images.  Is there any way to filter these out?
    I'm using LR 5.3 for Windows.
    Thank you,
    Robert

    Here's how I get there.  This filters images that have had Develop adjustments within the last three weeks. 

  • Smart collection and folder names with "_"

    I have problems when making Smart Collections based on folder names
    My folder name is 2009_11_20 Mist
    When I make a Smart collection with "Folder" Stars with 2009
    I get a lot of files
    When I change the  2009 to 2009_11 I get no files. Even when I make 2009_ I get no files
    When I change the 2009 to Mist and the "Starts with" to "Contains" again I get the desired files.
    When I change the 2009 to 2009_11 and the "Starts with" to "Contains" again I get no files.
    It seems that LR with Smart Collections cannot handle the "_" character???
    Who can help?

    It's a bug. The usual workaround is to use hyphen as the separator in your folder names instead of an underscore.

  • Smart collection using "person shown"

    Does LR3 support creating a smart collection by searching the value in the "Person Shown" field?  What I would like to do is list the people in the picture then be able to create smart collections to find pictures with specific people in it, such as all pictures of Bob  or all pictures of Bob, Bill, and Bret.  I thought I'd be able to use "Person Shown" for this but it doesn't seem to be the case.  If not, what technique can I use to accomplish what I'm looking to do?

    You can put the name of the people in the photo into any field that Lightroom does recognize (for example, the caption field), and then make your smart collection.
    Alternatively, you could assign keywords with the person's name, and simply click on the arrow to the right of the keyword name to perform your search, or create a smart collection based on keywords.

  • Smart Collection Keyword Problem

    I'm having a problem with smart collections.  I do bird photography and am trying to catalog my bird images.  I created a collection set called Birds, and I created sub-collection sets for various species.  Smart collections by and large do a good job of pulling images into the proper smart collections based upon keywords I've assigned to images.  But I'm having a problem with a couple of keywords.
    I have a collection set called Ducks, and inside I have the different duck species set up as smart collections.  The rules for the smart collection for a given species are simple.  For Harlequin Duck, the rule is: Keywords, Contains Words, Harlequin Duck.  All of my Harlequin Duck images are correctly pulled into that smart collection.  But if I try to create a smart collection called Long-Tailed Duck using the same rule structure, no images show up.  The same goes for the smart collection called Wood Duck: no images are pulled into the smart collection.  However, if I change the rule for Long-Tailed Duck to: Keywords, Contains All, Long-Tailed Duck, all of the images appear in the smart collection.  This also works for the Wood Duck collection.  If I look at the Keyword list on the right of the screen, both of the problem keywords are there and you can see the correct number of images next to the keyword.
    Am I doing something wrong, or is this a bug?  How can I fix this problem?  Thanks for your help!

    Contains All - Treats the input as multiple "word fragments" and matches any photo that has a keyword that contains all of the "word fragments", even if only in part (i.e. as substring).
    For example: If you have two photos:
    Photo A, with: 'Big Mallard Ducks'
    Photo B, with: 'Small Mallard Ducks'
    Then Contains All:
    'allar uck ig' will match photo A, but not B.
    'allar uck' will match both.
    'Contains Words' is confusing as heck - I took a whack then realized I was wrong. Maybe somebody else can educate us both.
    I just did this test - I have a photo with the keyword:
    'Big Mallard Ducks'
    then Contains Words:
    Big - matches
    Mallard - matches
    Big Mallard - matches
    Mallard Big - matches
    Big Mallard Ducks - does not
    Mallard Ducks - does not
    Ducks Mallard - does not
    Big Ducks - does not
    Ducks - does not
    Straight from the latest help file: Contains Words
    Searches for text that contains all specified alphanumeric sequences as whole words. To find photos with the keyword flower using a Contains Word search, for example, type flower.
    Here's another question for y'all:
    Is 'Contains Words' broken? - I'd have to say it is...
    Rob

  • Keyword filtering problem in Smart Collections

    All,
    I’m trying to do create a Smart Collection based on Keywords, unfortunately I can’t seem to get it to work. The criteria is that the collection must contain the keyword phrase “Publish to Flicker & Facebook” but not “Published Image”.
    I’ve tried variations of the following:
    Match all of the fallowing rules
    Keyword doesn’t contain = Published Image
    Keyword contains = Publish to Flickr & Facebook
    This should give me all the images that I want to Publish to the services but have not been published as of yet. If I do either of these separately they work but not together as a filter. FYI I’m using the Beta 3 version. - CES

    That didn't work... even renamed to nonsence words still dosent work

  • "any" vs "all" when filtering SMART COLLECTIONS

    Need help from the pros in this group. I've to teach a specific skill to some students tomorrow, and--I must admit--I'm a little lost. Can sometime provide detailed answers to me? I'd be much obliged.
    I need to know the distinction between filtering between "any" and "all" in smart collections.
    Basically, what does that mean? I mean, to me, filtering between, say, "any" clips with the a certain attribute would be the same as my wanting to see "all" of the same. I'm a bit embarrassed to say I can't wrap my mind around the concept.
    The first choice of "all" vs. "any" is when you go into the first level of the filter, itself:
    Then, you have the same options for each filter variable:
    I've an excercise where I have students have to filter smart collections based on keywords and shot compositioin. And the devil is in being able to distinguish between "any" and all"
    Any help for "any" or "all" of you would be greatly appreciated.

    the words "any" and "all" do not refer to clips, but to criteria.
    "any" means "or"
    "all" means "and"
    In your example:
    1) you would set a smart collection for clips satisfying ALL of
         - having the keyword "shoes"
         - being favorites
    2) similarly, but ANY (as in either or)
    3) is a bit of combination of both; you have  (two people or group) AND Favorites, so you need to set "all";
    and in the people category choose "any".

  • People Smart Collection

    OK, so I have been using the new facial recognition feature to tag people in all my photos.
    I would like to make a smart collection based on people, but can't see a way to do this. Any ideas?

    You can't create a SC that finds all the pictures with keywords with the Person property enabled.
    One workaround is to put all people keywords under a higher level keyword called "people" (imaginative, eh?) which is set not to export, and then the SC is Keywords / Contains / People.

Maybe you are looking for

  • How to restore a Macbook Pro after hdd failure?

    Hi! My girlfriend posted a question about her MB Pro mid 2012 which apparently had a HDD failure; she was instructed to take a TimeMachine backup and switch a new HDD/SDD to replace it. Well, I started the TimeMachine copy, but unfortunately the comp

  • Replace one swf movie with another

    I have a flash movie on my web page and I have made some of the text inside the movie into buttons. The movie only takes up a portion of the page. I would like to replace the movie with another movie when somebody clicks the button. I'm sorry if this

  • Video files taking longer time when uploading using java sdk

    Hi, I am using java APIs for uploading image/video files to azure blob storage.And i see that video files take much time to get uploaded.On average a 25 MB file takes more than 2 minutes...Is it expected with Java API?Is there any way with azure java

  • APEX4: Validation failure. Is this a bug?

    Below is an extract of the debug output. P610_ORD is a database column text field. I have tried deleting the validation and item and recreating them. Short of deleting the page and starting again I have no idea what to do! Any suggestions. 0.06200 0.

  • How do you connect your external monitor(s)?

    More frequently I'm using an external monitor when working on Arch Linux, so I made this script, which works ok for now. This is a simple approach for this kind of stuff I think, so I'm wondering what you people out there are using to connect your ex