Renaming of files: unwanted suffix after the sequence number

Hi all

I have a few problems to rename my files to sequence the.

My name change model is: number Text_Sequence Custom (3 digits)

Let's say my custom text is '20100702_LR', Lightroom shows me that the file name must be "20100702_LR_001.nef" and so on.

However, for some reason, sometimes Lightroom randomly assigns '-1' after the file name, such as "201007_LR_002-1.nef.

It doesn't seem to follow a rule. Sometimes this junk "-1" suffix is appended to the file, sometimes it is not.

This happened to anyone before? Y at - it an explanation and a solution to this problem?

Thanks in advance for your valuable assistance.

no conflict but a bug. Sometimes (in my case and others reported it also, do a search on this forum) If you have renamed during the import, deleted files after import in a selection process and renamed / becomes again with the same text/preset etc. It worked normal in LR2.x now, is no more.

Workaround: a false name and rename and rename it again with the name of the preset you wants it to be.

Tags: Photoshop Lightroom

Similar Questions

  • Generate the sequence number

    
    create table t
    (id int primary key,
    dt date,
    file_no int,
    batch_no int,
    data varchar2(5)
    );
    
    insert into t values (1,trunc(sysdate),23,113,dbms_random.string('a',5)); -- 1.1.1
    insert into t values (2,trunc(sysdate),23,345,dbms_random.string('a',5)); -- 1.2.1
    insert into t values (3,trunc(sysdate),23,345,dbms_random.string('a',5)); -- 1.2.2
    insert into t values (4,trunc(sysdate),23,543,dbms_random.string('a',5)); -- 1.3.1
    insert into t values (5,trunc(sysdate),23,543,dbms_random.string('a',5)); -- 1.3.2
    insert into t values (6,trunc(sysdate),23,543,dbms_random.string('a',5)); -- 1.3.3
    --
    insert into t values (7,trunc(sysdate),24,333,dbms_random.string('a',5)); -- 2.1.1
    insert into t values (8,trunc(sysdate),24,333,dbms_random.string('a',5)); -- 2.1.2
    insert into t values (9,trunc(sysdate),24,333,dbms_random.string('a',5)); -- 2.1.3
    insert into t values (10,trunc(sysdate),24,222,dbms_random.string('a',5)); -- 2.2.1
    insert into t values (11,trunc(sysdate),24,222,dbms_random.string('a',5)); -- 2.2.2
    insert into t values (12,trunc(sysdate),24,111,dbms_random.string('a',5)); -- 2.3.1
    
    
    

    Oracle 11.1

    How can given this structure and data, I generate sequence at the end of each line numbers? Basically, the sequence number (x.y.z) is such that x (1.n) is awarded for each unique value in file_no. In each x, y (1.n) is assigned for each unique value of batch_no. Within each y, z (1.n) is assigned for all records of this batch. Sample data shows only dt but all sequences must reset and start over when dt changes.

    I tried using row_number() over (partition by dt, file_no) and such but nothing quite gives me what I'm looking for.

    Help? Thank you

    Hello

    HELEN wrote:

    If you look at my CREATE TABLE, the ID column is a primary key and represents the order of the data in the file.

    Done batch_no = 100 come before or after 101?  Batch_no = 100 a ID so much until after the id for batch_no = 101.

    Good point, but that won't happen because of the way the 'record' is generated. All batch_nos will be contiguous. So if batch_no 100 comes earlier in the file as 101, it should get some 2nd highest sequence number. Otherwise, lower. Basically, the 2nd part of the sequence must simialar logical number to the 3rd party (i.e. order by id) but that messes things. Still struggle with it. Any help appreciated.

    I think I understand.  You say that, because of the way that the ID is issued, it wouldn't matter if you used the highest id of the batch_no, or the lowest id, or the average, or if you chose one at random; you would get the correct order in all cases.

    The following query uses the id low in the order file_no and batch_nos.

    WITH got_min_ids AS

    (

    SELECT id, dt, file_no, batch_no, data

    MIN (id) over (PARTITION BY dt

    file_no

    ) AS min_id_file_no

    MIN (id) over (PARTITION BY dt

    file_no

    batch_no

    ) AS min_id_batch_no

    T

    )

    SELECT id, dt, file_no, batch_no, data

    DENSE_RANK () OVER (PARTITION BY dt

    ORDER BY min_id_file_no

    )

    || '.'

    || DENSE_RANK () OVER (PARTITION BY dt

    file_no

    ORDER BY min_id_batch_no

    )

    || '.'

    || ROW_NUMBER () OVER (PARTITION BY dt

    file_no

    batch_no

    ORDER BY id

    ) AS seq

    OF got_min_ids

    ORDER BY dt, min_id_file_no, min_id_batch_no, id

    ;

    The main request is in fact what I posted before, but instead of

    "ORDER BY file_no" and "ORDER BY batch_no", she uses

    "ORDER BY min_id_file_no" and "ORDER BY min_id_batch_no".  These values are calculated in the subquery, got_min_ids.

    Output (including the additional sample data I posted):

    ID FILE_NO DT BATCH_NO SEQ DATA

    ---------- ----------- ---------- ---------- ----- ----------

    1 23 25 April 2014 113 dXAad 1.1.1

    2 345 23 25 April 2014 pumVG 1.2.1

    3 345 23 25 April 2014 jLnbO 1.2.2

    4 23 25 April 2014 543 xKhCL 1.3.1

    5 23 25 April 2014 543 JQoWk 1.3.2

    6 23 25 April 2014 543 YjJeC 1.3.3

    7 24 25 April 2014 333 WjQNE 2.1.1

    8 24 25 April 2014 333 ScWSL 2.1.2

    9 24 25 April 2014 333 pXDSD 2.1.3

    10 222 24 25 April 2014 OSajn 2.2.1

    11 222 24 25 April 2014 QNpix 2.2.2

    12 24 111 OwkjI 2.3.1 April 25, 2014

    91 100 99 25 April 2014 sRWmT 3.1.1

    93 100 99 25 April 2014 IAEFd 3.1.2

    92 101 99 25 April odQxh 2014 3.2.1

    I know you said that this situation is impossible (that is, if ID 91 and 93 have the same batch_no, then id 92 cannot have a different batch_no), but the application works even if this rule is broken.

  • How to find the sequence number of av

    Downloaded eset uninstaller, but he asked for the sequence number

    Hello Damien,.

    If you don't know, go to the icon of the program or file name and right-click on it and select properties and in the window that opens, read on the top row of tabs up until you get to the Details tab, click to open the tab. The sequence number is given here?

    If not, a freeware for you program called siw (System Information for Windows), download it here: http://download.cnet.com/SIW-Technician-s-Version/3000-2094_4-10915770.html . The application requires no installation, you simply double-click the name of the executable file, and the program opens to the software section. Scan down the list until you find the applications tab. Click to open your list and find details of eset and see if the sequence number is in the list.

    One of these two approaches should solve the problem for you. Let me know how you fare.

    Kind regards

    BearPup

  • Insert/update of the XML help merge and to generate the sequence number

    Hello

    I'm working on Oracle 11 g.

    I have a doubt with loading XML.
    I get an xml and I need to insert or update data in a table. What I can accomplish by using the MERGE statement.
    But there is a column in A table, I need to fill with a sequence number, based on the data sent in the xml file.
    The XML does not send the data in this column.
    And I have to make sure that sequence is created according to the order in which the records are present in xml.
    For example the MERGER is insert five rows and update two lines and insert again 3 rows of xml in table A. The sequence number must be created in the same order for the column in the table.
    Also for every new XML, the sequence starts with 1 and ends with the number of records in the xml file. I can't create a sequence and use the seq.nextval.

    Please let me know, there is a way to achieve this.

    Thank you!

    Published by: 934451 on 8 August 2012 06:33

    Published by: 934451 on 8 August 2012 06:50

    Hello

    As a result of your previous thread: {: identifier of the thread = 2403469}

    You can use the clause for ORDINALITE in XMLTable to generate the necessary sequence:

    MERGE INTO target_table t
    USING (
      SELECT x.seq_num, x.pk_id, x.col1, x.col2, ...
      FROM XMLTable(
             '/root/record'
             passing my_xml_doc
             columns seq_num FOR ORDINALITY
                   , pk_id   number       path 'ID'
                   , col1    varchar2(30) path 'COL1'
                   , col2    varchar2(30) path 'COL2'
                   , ...
           ) x
    ) src
    ON ( t.pk_id = src.pk_id )
    WHEN MATCHED THEN UPDATE
     SET t.seq_num = src.seq_num
       , t.col1 = src.col1
       , t.col2 = src.col2
       , ...
    WHEN NOT MATCHED THEN INSERT
     (seq_num, pk_id, col1, col2, ...)
     VALUES (src.seq_num, src.pk_id, src.col1, src.col2, ...)
    ;
    
  • I bought LR6 and it will not download because he thinks that the OS is XP.  The OS is Windows 7 64 bit. This occurs after the serial number is entered. Help.

    I bought LR6 and it will not download because he thinks that the OS is XP.  The OS is Windows 7 64 bit. This occurs after the serial number is entered. How can I download to recognize that the operating system is Windows 7?

    use the compatibility mode and select win 7

  • After the sequence of effects 'stuck' at 30 frames per second?

    Hey everybody,

    I'm working on a project that is almost exclusively the psd layers. The sequence settings are 23.976 fps and yet the chronology and the timecode read as 29.97 FPS. The sequences were made by dragging the PSD files on the 'create new sequence' button in the project Panel. I'm guessing this has something to do with how AE interprets the image files, but I don't know how to fix it. I have attached an image showing all of the contradictory testimony.

    Working in the release 10.0.0.458 of After Effects. Thank you in advance for your help!

    sequence settings.png

    Magic of words to search for in the online help: the Basic setting of the project time.

    Mylenium

  • Problem with opening files and programs after the attack "rogue security."

    Earlier this year, I met a rogue security program called Windows Security 2011. I had removed it, but I'll still have some serious problems. I found another user here, who had a similar encounter: http://answers.microsoft.com/en-us/windows/forum/windows_xp-windows_programs/exedirectory-file-association-problems/5dcd9044-8b57-43e0-a3bc-0c966326f0da

    "But since the incident, the PC has struggled to open .exe files. If I open Mozilla Firefox, for example, it will ask me to specify the program to run it with. I can browse the OS and find the firefox.exe and open it with that, but it won't allow me to check the box "always use this option. "

    It's exactly the same problem that I have now, as well as some sections of the control panel not working not at all, but there is no answer about what to do after the malware has been removed. Is there a way this can be fixed now?

    Hi Lapeul,

    You can create a new user account and check if you can solve the problem.

    How to create and configure user accounts in Windows XP

    If you are able to resolve the problem, you can consult the following article to fix the damaged user account.

    How to recover damaged Windows XP user profile

  • All hidden files are visible after the command help

    Hello
    When I removed all my files were hidden 'newfolder.exe' virus and I have should use a command in cmd to display them.
    After each use attrib command ([driveletter]:------attrib - r - a-s - h) my files are back but all files hidden, including the file system and the album art and etc are too visible

    How can I solve this problem?

    Thank you

    Hello

    Windows has the ability to hide all system files, it's looking at the properties of each file to see if the checkbox 'hidden' or 'system' is defined.

    The command you used all the flags hidden / system removed from all files on your entire hard drive. There is no way to undo what you have (except the System Restore, if necessary). The reverse of the order hiding everything, including your files.

    The preferred method to hide or display files is to go to Folder Options and together to "hide system files and hidden", but this will not help now, because you corrupted the data he uses by running this command.

    If the system restore will not roll back to before running this command, you will need to manually enter each file and re - configure these options.

    Shawn B Keene [MVP]wire detail reference:

    http://answers.Microsoft.com/en-us/Windows/Forum/Windows_7-files/how-can-i-hide-my-system-files-again/f5bfa796-0d5a-E011-8dfc-68b599b31bf5

    I hope this helps.

  • How to remove .oam file in Muse after the end of the animation?

    I recently searched this forum and answer to some than others and I can not find how to solve my problem. All similar topics are still 'unsolved', often left unanswered. I made contact with the authors of this topics, but they cannot always solve this puzzle.

    I create my Web site in Adobe Muse and leading edge. I want an intro animated beginning (when it is loading for the first time), and if it is possible - in a full screen mode. After the end of the animation, I want it to disappear and reveal the content of the site, which should be clickable. It would be the best if the animation could be created as animate, but if there is no other choice, it can be gif or mp4.


    Here is an example of Web site and my problem.

    Link: http://problem.bplaced.net/

    I tried to solve my problem of all the ways that I know. After the end of the animation and transformation to the alpha 0, it is still covering the menu and making it unclickabe. After that, I tried to put in the edge layers animate in stop mode after the end of the animation. I also tried to minimalize the scene at the end of full hd 1 x 1 px. I tried all methods do not work.

    And this is ZIP that contains the whole of the site. Muse and edge file.

    Link: http://problem.bplaced.net/download/full_site_muse_and_edge.zip

    My knowledge of programming, it's just basic Basic, a down-to-Earth answers please.

    To the moderators:

    If by chance somewhere in this forum you can find answer to my question, please don't brand just my problem "solved" with no response to the left. If you know the answer, please give it to me. Marking of the subject as "resolved" does not at all help.

    Thank you!

    Hi Michal,

    Have you tried selecting display: no at the end of the animation?

    Kind regards

    Akshay

  • changes made to the Bundle.js file will disappear after the restart of the AAU

    Nice day

    I add javascript code in the file bundle.js in the following path: domain_home\ucm\cs\weblayout\resources\bundle.js .
    the changes are reflected on the University Complutense of MADRID fine, but once the server of the University Complutense of MADRID has reformulated the changes disappeared and the file back to back such; without my changes.

    the code that I want to add is:

    If ((typeof gamme! == 'undefined') & &!) Range.prototype.createContextualFragment) {}
    Range.prototype.createContextualFragment = {function (html)}
    Frag var = document.createDocumentFragment ();
    div var = document.createElement ('div');
    frag.appendChild (div);
    div.outerHTML = html;
    return of frag;
    };
    }

    I want to add because I have a javascript like this error: object does not support property or method 'createContextualFragment', this erro has occurred when the version of Internet Explorer is V.9. ; no javascript errors appear on the Version 8. When I add this piece of javascript in the bundle.js file, it the error disappeared and everything's fine, but as I said earlier after restart of the AAU extra javascript code is over and disappear from the file bundle.js.

    For this reason, I wanted to ask, is there a way so that my code and will remain even after reboot? Or is the file downloaded on the restart of a different path?

    Any Suggestions?

    It's actually quite simple to explain:

    - domain_home\ucm\cs\weblayout\resources is a directory that contains the version of the runtime resources
    -If you want to persist your changes, you will need to do it in a source directory. 11 g, there are two directories source; one of the standard components and the other for those custom. You must use the latter
    -in fact, if you create a custom component wizard, make your changes it and activate the component, you should be done. The only other thing that you should pay attention is the loadOrder of your resource setting - it should be higher applies.

    For more details, see http://docs.oracle.com/cd/E23943_01/doc.1111/e10807/part4_customize_comp.htm#sthref522

  • Problems with duplicate DATA when the data file was added after the backup completes

    Hello

    I am facing a problem when running of duplicate database with the command of database duplicate RMAN on a 10 g database. If I have the duplication from a full backup that is missing a data file that has been added to the database after the full backup of preforms, I get the following error message:
    Starting restore at 10-10-2009 18:00:38
    
    released channel: t1
    released channel: t2
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 10/10/2009 18:00:39
    RMAN-03015: error occurred in stored script Memory Script
    RMAN-06026: some targets not found - aborting restore
    RMAN-06100: no channel to restore a backup or copy of datafile 43
    Redo log which was Pond at the time of the creation of 43 of the data file is also available in the backups. It seems that RMAN cannot use the log information archived redo to restore the content of the data file 43. I guess that because failure is already reported in the RESTORATION and not in the RECOVERY phase, so again the archived logs are not available yet. I get the same message even if I do another backup of the data file 43 (so a backup that is not in the same backupset as the backup to all the other data files).
    The script, the command duplicate product, I guess that RMAN reads the contents of the source database controlfile and trying to get a backup that contains all the data files to restore the database Assistant - if such a backup is not found, it fails.


    Of course, if I try to perform a restore/recovery of the source database, it works without problem:
    RMAN> restore database;
    
    Starting restore at 13.10.09
    using target database control file instead of recovery catalog
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=156 devtype=DISK
    
    creating datafile fno=43 name=F:\ORA10\ORADATA\SOVDEV\SOMEDATAFILE01.DBF
    channel ORA_DISK_1: starting datafile backupset restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    restoring datafile 00001 to F:\ORA10\ORADATA\SOVDEV\SYSTEM01.DBF
    .....
    The 43 data file is re-created and then redo is applied to the course.

    So, does anyone know if the duplicate database can use archived redo logs to recreate the contents of a data file, as does a normal restore/recovery? If this is the case, then it is necessary to perform a full backup before each duplicated if a data file has been added after such a backup database.

    Thanks in advance for any answers.

    Kind regards
    Swear

    Hi swear,.

    I got exactly the same problem during replication.
    Because we backup archive logs every 6 hours with rman, I added an additional block of running this script.
    run
    {
    backup incremental level 0
    format "% d_ % s_ %%t p_ bk_ '.
    filesperset 4
    database not saved;
    }

    (I also hit a bug in the catalogue which was resolved by patching up the dbs catalog 11.1.0.6, 11.1.0.7 for.)

    This will restrict the data not making file not part of any backup rman 6 hours while jumping for which there is already a backup of data files.

    Kind regards

    Tycho

  • Search for content in pdf files stopped working after the migration of Windows 2008 Indexing Service

    Hello

    We have designed a search custom as an aspx page that uses the Indexing Service to search for content in a set a which coexist document types (doc, pdf, xls, etc.)

    We moved to a Windows Server 2003 Indexing Service to Windows 2008 and since the Indexing Service has stopped the search pdf files. The search returns only another type of pdf files.

    On the new server where the Indexing Service, I installed Adobe PDF iFilter 11 for 64-bit platform, I think it's the plugin the Indexing Service uses to find the content of pdf files.

    Does anyone got the Search Indexing Service content in PDFs on Windows 2008 server?

    Thank you

    Mihaela

    Hello

    Post your question in the TechNet Server Forums, as your question kindly is beyond the scope of these Forums.

    http://social.technet.Microsoft.com/forums/WindowsServer/en-us/home?category=WindowsServer

    See you soon.

  • Creating a trigger to insert delete update with the sequence number

    Hey all,.
    I have two tables. tbl_main, tbl_temp. Whenever a record is inserted, deleted, updated in tbl_main, I need to insert the records in tbl_temp. All field/column names are exactly the same, except that in tbl_temp, I now have a single column by using a sequence number, a column to determine if the record has been updated, remove, modified(hence the codes) and the date when a record has been added to the table.
    So far, that's what I have:

    create or replace
    audit_trg relaxation
    after update or insert or delete ON tbl_main
    for each line
    Start
    If the update can
    insert into tbl_temp (seq_id, idx, ctl, action_taken, date_added)
    VALUES
    (temp_seq.nextval, idx, mke, ctl, sysdate, 'U');
    ELSif INSERTION then
    insert into tbl_temp (seq_id, idx, ctl, action_taken, date_added)
    VALUES (temp_seq.nextval, idx, mke, ctl, 'n', sysdate);
    ELSIF deletion then
    insert into tbl_temp (seq_id, idx, ctl, action_taken, date_added)
    VALUES (temp_seq.nextval, idx, mke, ctl, would be ', sysdate);
    END IF;
    END audit_trg;

    I tried several combinations, but I get many compilation errors. This code looks good or I am the way of track? Thanks in advance.

    Who looks fine for me. What are the mistakes are you?

    Assuming that MKE and CTL are columns in the base table, your INSERT statements will insert either the: new.mke and: new.ctl values or the: old.mke and: old.ctl values in the table. Presumably, you could insert the: new values for inserts and updates, and the: old values for deletions.

    Justin

    Published by: Justin Cave 27 February 2009 16:08

    DOH! Just noticed the error...

  • Vs file SDCard to save the greatest number of audio files

    I have to record the number of voicemails in my application

    If I use the memory file so that it is not sufficient, and if I use the SD card to save the file and what if the device that the user using dosent contain SD card?

    I mean file:///store vs. file:///SDCard

    I want to do like 1 the application should check if the user have any sd card installed if there is then record audio in file:///SDCard/BlackBerry/, or else it should save in-store file:///store/home/user

  • Min and Max of the sequence number

    Hello

    I have a table called pins (lot number 4,
    Sequence number (8)
    );

    I have data in the table:
    batch sequence
    386 100
    386 101
    386 102
    386 800
    386 801
    1 387
    2 387

    I want to know by draw the low values and high for sequence number, is the result, I am looking

    batch min (sequence), max (sequence)
    386 100 102
    386 800 801
    387 1 2

    Oracle 10g rel2

    Thank you

    Hello

    You want something like this:

    WITH       got_grp     AS
    (
         SELECT     lot
         ,     seq_num          -- SEQUENCE is not a good column name
         ,     seq_num - ROW_NUMBER () OVER ( PARTITION BY  lot
                                                      ORDER BY      seq_num
                                          ) AS grp
         FROM    pins
    --     WHERE     ...     -- any filtering goes here
    )
    SELECT       lot
    ,       MIN (seq_num)          AS min_seq_num
    ,       MAX (seq_num)          AS max_seq_num
    FROM       got_grp
    GROUP BY  lot
    ,            grp
    ORDER BY  lot
    ,            min_seq_num
    ;
    

    If I understand the probem, you want to GROUP BY, but many does not define groups by itself: each contiguous set of seq_nums in a batch is a separate group. In each of these groups, the difference between seq_num and a meter which reflects the order of seq_num generated in the query (using ROW_NUMBER) will be constant.

    This assumes that seq_num is an integer, and this (lot, seq_num) is unique.
    If this is not the case, the above query will have a small adjustment.

    If you want to display the INSERT statements for your sample data, then I could test this.

Maybe you are looking for

  • Laptop HP 15-g075nr: can not get the Qualcomm WIFI driver to install

    I went to the HP site, had the site determine my type of laptop, then downloaded the Qualcomm Atheros QCA9000 driver and installed.  After installation, Device Manager still listed under OTHER and when I say update the network device driver, it says

  • HP Photosmart C5500: no install in the Setup button

    Hello I am trying to install a new 5500, but after inserting the disk in my computer, the installation program does not offer a 'Installation' button, only an exit button.  I found this thread http://h30434.www3.hp.com/t5/LaserJet-Printing/told-to-se

  • Windows is not genuine built 6002. need help with my windows vista.

    Hi, my HP Pavilion notebook crashed and now I have a message that reads... This copy of windows is not genuine built 6002. I've exhausted all means to try to fix it without success.  The sticker on the bottom of the computer is worn and unreadable. I

  • Priority of management style?

    I want to use VerticalFieldManager to be center aligned horizontally, use the full available width. Therefore, I tried the following code: middleMgr = new VerticalFieldManager(Manager.FIELD_HCENTER | Manager.USE_ALL_WIDTH); However, the above code do

  • BlackBerry Smartphones BlackBerry Internet Service: not connected

    HelloAs the subject read, I am not connected to the BlackBerry Internet service. As suggests some posts earlier on the forum, I have checked whether data services is 'on '. It has been. I also ran a diagnostic test and the report reads the following: