Synchronize creates duplicates in data base

I import photos from the memory card to a folder. Regardless of import from a device or disk, convert to DNG or just copy the files I get duplicates if I try to synchronize the folder. If I remove the last created duplicate import and synchronize the folder, the files are duplicated again. If I remove the first imported photos and then synchronize, no duplicates are created. Don't import suspected duplicates is checked. This makes the synchronize command unusable for me. Is there a way around this?
Lennart
LR 1.3.1
Windows XP Pro
Pentax istDS

Yes, all files are duplicated. As far as I have checked this occurs consistently.
Yes, as I already wrote Don't import suspected duplicates is checked
The reason I synchronize is exactly according to the help text:
"When you synchronize folders, you have the option of adding files that have been added to the folder but not imported into the catalog, removing files that have been deleted, and scanning for metadata updates. The photo files in the folder and all subfolders can be synchronized. You can determine which folders, subfolders, and files are imported."
Lennart

Similar Messages

  • Create a small data base stored in a file

    I want to create a small data base of about 10 to 20 items. Each item will have an item number, serial number, time stamp and description. I want to store these 10 items in a file and be able to retrieve them by item number. How can I do this with LabView?

    For something this small, use a single VI to manage it in memory:
    It has a FUNCTION input, an enum with values of (INIT, READ FILE, WRITE FILE, ADD ITEM, FIND ITEM).
    It has a CLUSTER input, which is your record type {Item number, serial number, time stamp, description}
    It has a CLUSTER output, of the same type.
    It has an ITEM NUMBER input, which is an integer (assuming your item number is truly a number).
    The code is a WHILE loop with the CONTINUE input wired to FALSE (it never loops).
    Inside the WHILE LOOP is a CASE statement, with the selector wired to the FUNCTION control.
    For case INIT, make an empty array of records (your cluster type) and feed it to a shift register on the WHILE loop.
    For case WRITE FILE, take the shift regis
    ter input and CREATE, WRITE, and CLOSE a file. (pass it thru to the output as well). Wire the cluster to the DATALOG TYPE of the CREATE FILE function to create a datalog file.
    For case READ FILE, use OPEN FILE, READ FILE, and CLOSE FILE functions, with DATALOG TYPE wired to the cluster type.
    For case ADD ITEM, just append the new item (input cluster control) to the array from the shift reg and put the array back in the shift reg.
    For case FIND ITEM, just search thru the array (from the shift reg) until you find the matching item number, then return the whole record in the output.
    You'll have to pass the left shift reg thru the case to the right shift reg in all cases except INIT, READ FILE, and ADD ITEM.
    This means the actual storage is in the shift reg, for max efficiency.
    If you get beyound a hundred items, I would suggest a different FIND ITEM technique (keep a separate list for ITEM NUMBERS and search that, rather than the whole thing).
    This assumes you ha
    ve control of shutdown - any changes you make are lost unless you call WRITE FILE afterwards.
    Steve Bird
    Culverson Software - Elegant software that is a pleasure to use.
    Culverson.com
    Blog for (mostly LabVIEW) programmers: Tips And Tricks

  • Creating MS- Access data base from the Internal tables data of an ABAP Prog

    Hi,
    I have a requirement where I have to create Access tables from the Internal tables of ABAP program.
    The tables are like Project systems Header data, WBS elements data, Netwrok data, Activity data, Milestone data and Project revunes. I will have the internal tables for these. I want to transfer these tables data into MS-Access tables onto Users desktop.
    Please adivce me how to do this.
    Thanks,
    Prabhakar

    HI,
    I am trying to create a DB table in the access but I am not successful. The following is the format of the table needs to be created from the ABAP program.
    I have created a table with the following format in MS-Access with the name tblHeader. Is it neccessary to create a DB table ( MS-Access) in advance or by using the FM  STRUCTURE_EXPORT_ TO_MSACCESS  we need to create a structure in MS-Access?
    False tblHeader
    Field Name Type Length
    ProjectDef Text 255
    ProjectDes Text 255
    Created Text 50
    Change Text 50
    RespPerson Text 255
    Profile Text 255
    Plant Text 255
    ObjNo Text 255
    OverheadKey Text 255
    I have created a Z table ZTAB1 with the same format from the SAP fields.
    MS-Access Table name : tblHeader
    ABAP program Internal table : t_tblheader
    Z table Name : ZTAB1.
    First I am trying to create a structure in MS-Access with the following FM.
    CALL FUNCTION 'STRUCTURE_EXPORT_ TO_MSACCESS'
    EXPORTING
    dbname = 'D:\test\db2'
    LANGU = SY-LANGU
    dest = 'PS_ACCESS_1'
    TABLES
    tabname = ttblheader
    EXCEPTIONS
    system_failure = 1
    comm_failure = 2
    OTHERS = 3
    Table ttblheader type is DFIES and I am filling the table with only one record and one field i.e TABNAME and the value is ZTAB1.
    The source code of the FM is using another FM
    CALL FUNCTION 'MSACCESS_STRUCT_ EXPORT_RFC' DESTINATION DEST
    Here I am getting the Error message Object required. I can't able to create a table structure in MS-Access.
    Next I am going to Use the FM
    'TABLE_EXPORT_ TO_MSACCESS'
    and it will create the records in the MS-access table.
    CALL FUNCTION 'TABLE_EXPORT_ TO_MSACCESS'
    EXPORTING
    dbname = 'D:\test\db2'
    langu = sy-langu
    dest = 'PS_ACCESS_2'
    tabname = 'ZTAB1'
    reftable = 'tblheader'
    FLG_NO_DOWNLOAD = ' '
    FLG_APPEND = ' '
    FLG_POPUP = ' '
    TABLES
    dtab = t_tblheader
    here t_tblheader is the internal table.
    Reftable = tblheader is the table which i have created in advance. ( not by using the First FM)
    In this FM i am getting a error message : Unable to connect to Database D:\test\db2.
    Please help me how to create the MS-Access database.

  • PC Sync / Synchronize created duplicate address bo...

    I just Synchronized two 6126 phones to pick up changes to my Contacts (MS Outlook). The first phone worked fine, but on the second phone I see that I now have duplicates of every entry in my address book. To fix this I would like to blast the current address book on that phone and then copy a fresh copy of my contacts from MS Outlook (like a one-way synchronize). How would I do that?  I'm afraid to delete every entry in the address book and then Sync with my PC as it might then delete every entry in my MS Outlook Contacts. 

    HI
       If you want to have both Contacts entery seperately,Then you have to make two profiles on your MS-Outlook SW.
    t hen you can have both your enteries seperately.
    Cheers 
    Was this post helpful? If so, please click on the "Kudos!" star to the right. Thank you!

  • Creating duplicate for date range

    Hi folks,
    How to duplicate date range to other temporary one.
    eg.,
    r_wadat[] = s_wadat[]
    it throws error
    how to do that.
    thanx
    rao

    Hi hemam,
    1. Ideally it should not give any error, provided the declaration is correct.
    2.
    report abc.
    ranges : r1 for sy-datum.
    ranges : r2 for sy-datum.
    r2[] = r1[].
    regards,
    amit m.

  • Creating a new data base for file maker pro from an existing data base.

    I get this error message:  (file name)  could not be created on this disk.  Use a different name, make more room on this disk, unlock it or use a different disk.
    I have gigabits of free space, I tried several different names, and I don't see how to unlock it. 
    Trying to start the new year with a blank database instead of doing the work around I've done for years. 
    Can you help? 
    Many thanks! 

    meanwhile i have found the solution :-), The name of the empty directory must be
    xxlx
    and not
    hulx
    Laszlo

  • Logical Data Base to be used in the QUICKVIEWER

    hello Abappers,
    My client cannot select text fields using SQVI so he wants me to come up with a way for him to do so. I was thinking of creating a logical data base which can be selected in SQVI. I could build the FM READ_TEXT into the QV but what I need clarification on is outputting the text fields because the logical data base is really a set of table joins and since I am using the QV I do not have the flexibility that I would have if I was using a logical data base in a program.
    Please advise if anybody has any ideas on this approach and how I would structure the output.
    regards

    Hi Santhosh,
    Since you say you are a beginner, lets start this way, hopefully U know from what datasources in ECC or R/3 you are supposed to load data from. Once you are sure about it, then follow this steps.
    1) Go to RSA5 transaction in ECC or R/3 System ( source system ).
    2) Select the specific datasource from which data is to be extracted to BI and press Activate Datasources button on the top right.
    3) Then on check whether this datasource is available in RSA6 screen.
    4) Come to BI system, there go to the Source Systems screen, there select the specific Source System (ECC or R/3).
    Go to U'r specific Infoarea i.e., SCM in that select the datasource for which U are supposed to extract data, right click and select Replicate Metadata.
    5) Once replication is done now right click again on datasource and create and run the infopackage  , if its BI 7.0 data will be extracted till PSA.
    6) After this create Transformation by right clicking on the Datasource again. Since I guess U will be using standard datasource U will get automatic transformations between the source fields and the infoobjects. Activate Transformations.
    7) After this Create a DTP process by again right clicking on the Datasource. Here U specify the Data Target to which data is to be loaded.
    8) Activate the DTP, once that's done successfully, Execute the DTP by clicking the Execute Button in the DTP.
    9) Monitor U'r data loading thru Monitor screen.
    Hope this helps.
    Regards,
    Syed

  • Is there a data base?

    How can I transfer data base documents from Appleworks version 6.2.9 in my MacBook OS 10.4.11 to my new MacBook Pro with OS 10.8.2 and be able to use them on my new computer?  How can I create new compatable data base documents?

    More information:
    Apple Works Documents
    Apple Works Documents (2)

  • Synchronize with Data Base' bug

    JDeveloper Version : JDeveloper 11.1.1.1.0 , ADF BC
    Use Case :
    - we have DB Table with filed named "Flage" and type "Number"
    - Create EO
    - Change "Flage" ' data type from "Number" to "varchar2" in DB
    - Use "Synchronize with Data Base" option for EO .
    The result for "Flage" attribute is :
    - Column Type : changed to "varchar2 " --- same as DB
    - Attribute Type : still have old type "Number"
    AND XML :
    Name="Flage"
    ColumnName="Flage"
    SQLType="VARCHAR"
    Type="oracle.jbo.domain.Number"
    ColumnType="VARCHAR2"
    TableName="Test"
    IsNotNull="true"
    Precision="200"
    Error will raise if you try to insert Character into "Flage" field
    and to fix problem we should change Attribute Type for EO to "Number" manually
    so , it is function of "Synchronize with Data Base " to change
    Column Type and not change Attribute Type ??? or there is some thing missing ??
    Thanx
    Wael No'man
    Edited by: Wael No'man on Aug 16, 2009 11:05 PM

    Hi,
    Currently Jdev supports synchronizing the database column type & not the attribute type.
    An Enhancement Request already exists for this.
    Regards,
    Shantala

  • Creating a Crystal Report from a non-SAP data base

    I have the following scenario
    server1\myDataBase
    server1\SAP\sapDataBases
    in sapDataBases I have about 30 company databases. I am trying to create a report, that gets informatino from a table/view/SP from server1\myDataBase, when I try to PREVIEW or SAVE such report on SAP Business One, I always get errors as
    I understand that this eerror means taht I can't invoke the data from out of SAP; it needs to be inside SAP (at least the SP, incoking some other data bases and stuff..)
    Some bodies have told me that it is beacuase I can only create a report from a table/view/sp that resides in the running/currently SAP company database. Is this right?
    Also, If this is the case, this means that If I have an SP taht I use for a crystal report, and 30 companies, I have to create such SP in the 30 companies?
    This is my software details:
    SQL Server 2012
    SAP Business One 9 PL 11
    SAP BusinessObjects Crystal Reports 2013 Support Pack 2 version 14.1.2.1121
    What I want to do is to create a non-SAP data base to create all the SPs/Views for reports, to centralize it, and the just create one reporte and do the 30-imports in each company database, without the need of creating such sps/views in each company-database. Is this possible?
    Thanks

    Moved to Integration Kit forum.
    The people in this forum will know more about the data structure than the CR Design forum which typically doesn't know much about the SAP Data sources Structure.
    Don

  • Creating a Single Report from Oracle Data Base and BI Answers

    Hi,
    I wanted to create a single report by using a BI Report where in we have project and Activity columns,now I want to add column with Program to see the results.Program data is in Oracle Database.
    Can some one help me how to create the report.
    ii.How to edit a pivot table in BI word designer.What I am doing present is creating every time a new report.
    Thx In Adv.
    From Sravan

    Hi Pivot table was a general question.Is is nothing to do with the qus 1.
    See I have a report which have a programme and Activity.So I need to get the data of Prject from Data base how to do this in BIP.....I am not using any pivot table here.

  • How to know who has created a particular record in the data base table

    Hi All...
    Can any one tell me how to track the information about who has entered the records in to the data base table....
    Thanks in advance...

    You could check the Created By and Created On fields if your tables contains these fields.
    OR
    You could check the table DBTABLOG if table logging is enabled for the table
    OR
    You could check the Change document tables CDHDR and CDPOS.
    -Kiran
    Please mark useful answers

  • How do you create data base documents in Pages '09?

    Can you create Data Base documents with Pages, or any of the iWork Apps?

    If you want to create and use true databases, you must use an other app dedicated to this feature.
    There is a powerful database tool in LibreOffice but it requires a serious learn curve.
    There are numerous available apps starting from Bentoy to FileMaker or 4th Dimension.
    Matter of needs and finances.
    Yvan KOENIG (VALLAURIS, France)  dimanche 11 décembre 2011 10:54:27
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • Create the file from data base

    iam trying to upload material master data using direct input method in lsmw. i want one input text file which contains the information about material master data.
    can any one pls help me how to create this material master txt file from the data base.
    thanks,
    pandu.

    I have used so many times below data for testing purpose :
    Keep the file data as comma delimter and use only basic data view.
    material  industrial sector  material type   material desc  Unit of meas   Matl group
    A004      M                      COUP             test A004        KG                01
    a005      M                      COUP             test a005         KG                01
    remove the header and basic data view - keep constant while mapping.
    Thanks
    Seshu

  • How we create new data base in oracle 10g express edition

    hello every body.. i student of B tech n new user of oracle so please help me how we creat new data base in oracle 10g express edition

    Hello, Oracle XE can not create more than one instance, the other editions yes, but like other editions XE allows you to create database schemas, schemas logically grouped objects like tables, views, indexes created by a user. By creating an Oracle user is associated with a schema of the same name.
    Using SYS or system accounts for creating user accounts.
    Syntax to create a user:
    create user Your_user
    IDENTIFIED BY password
    default tablespace users;
    grant connect, resources to your_user;
    Edited by: rober584812 on Jun 25, 2010 9:03 PM

Maybe you are looking for

  • How do I move apps from one iphone to another?

    I am trying to move a few apps from one iphone to another since I have a new phone.  How do I do this and also move my itunes that have been purchased?

  • ITunes only plays one song at a time

    After much toing and froing on my new computer, I now have all my songs re-imported into the library. However, iTunes will now only play one song at a time: after it plays one song it just halts; the forward arrow is just greyed out. Any ideas would

  • Installing Adobe Reader on My Mac

    I installed the free Adobe Reader (lateset version) on my Mac (my system requirements ARE compatible, and it said it was downladed sucessfully), but when I go to a site that requires Adobe Reader I get a message to install the Adobe Reader Software?

  • My computer is slower then normal

    In 2011 i bought the best macbook pro i could, and i have been very happy with its performance. I upgraded to 8GB ram and when i first got it no matter how many applications i had running it rarely dipped below 4GB ram available. My computer is notic

  • How can I talk to a rep live chat?

    Log in....Go to http://www.att.com/contactus/, choose the service and then you will see Live Chat on the right!