"File ... already exists, but it is inconsistent with this one." error

I've previously used ALPC to profile a Zuiko 12-60 on a E520 and I had no trouble at all. I had 33 different sets of 9 pictures each, and they all merged nicely into one consistent profile. The profile worked perfectly and corrected lens distortion better than any other software I've used. Now I'm trying to profile my Nikkor 10-24 on a Nikon D7000, but as soon as I try to append the 2nd set to the 1st one (same focal length and focus distance, different aperture), I get this message: "File <filename> already exists, but it is inconsistent with this one. Please select a different location or use a different file name.".
My brother has been having this same issue and he's also using a Nikon D7000, but with a Sigma 17-70 2.8-4.0. Any ideas why this is happening? Some sort of D7000 raw conversion issue, maybe? I used ACR to convert NEF to DNG. The first profile is created and works well, though apparently not very accurate.
I tested the one profile that is saved, at 10mm and f/3.5, and it's not very good. Distortion is clearly over-corrected. The one difference between the profile I did for the Olympus and this one is that I refocused after every shot for this one (since the wide angle really throws corner focus off when you reframe it). Could this be it? If not, what else?
I'm using an A4 13x21 chart. It's enough to fill the frame with 9 shots at minimum focus distance.

I am having the same problem with my d7000.  This happens regardless of software used to convert NEF files, so if I had to guess at why this is happening I would say that the d7000 maybe has a different format for its makernotes, which is where the lens information is stored, and the lens profile creator doesn't read it.
Here's what happened when I tried to profile my 50mm f1.8 nikkor: I took 9 pictures at f1.8 and nine at f2.8. The profiling worked fine on both. So I ran it first on the f1.8 set, and saved it. Did the same for the f2.8 set and tried to save it, but it wouldn't allow me to append the file to the existing one, giving me the "inconsistent" error discussed here. I then save the second profile separately.
I opened both on windows notepad, and this is the lensID inconsistency already discussed here:
The profile I did with the f1.8 set had this line in it:
<stCamera:LensID>76</stCamera:LensID>
And the profile I did with the f2.8 set had this line:
<stCamera:LensID>179</stCamera:LensID>

Similar Messages

  • Cannot create a file when that file already exists, but should overwrite

    Hi,
    I need the same file name which is at Sender side and when it reaches to Receiver directory without timestamp.
    for eg., Sender side : Yeswanth.txt
    and also receiver side   :  Yeswanth.txt
    but, here it should overwrite the existing file (because, the sender side file name is always constant) at receiver directory when the job schedules for each time.
    Processing parameters i has given on Receiver side:
    File Construction Mode  :  Create
    put file  : Use Temporary File
    and I enabled the Adapter Specific Message Attributes at Sender side and Receiver side.
    Error getting receiver side at communication channel :
    Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException:
    Yeswanth.txt: Cannot create a file when that file already exists. : com.sap.aii.adapter.file.ftp.FTPEx: 550
    Yeswanth.txt: Cannot create a file when that file already exists.
    Reward points for useful answers.
    Regards,
    Yeswanth.
    Edited by: YeswanthRaj Kumar on May 23, 2008 8:20 AM

    Hi Yeswanth
    Then you can try with a "Add Counter". This will create new file each time with the same name but a counter will be added to the file name at the end specifying the number of times it is created.
    You can also the specify the format to create the counter once select this option u can correspondingly fill the Format and step fields.
    Will this be fine.
    Regards
    Ashmi

  • JMF Datasource problem..i need help with this one error

    This the error i get when i try to run my program
    Error: Unable to realize com.sun.media.amovie.AMController@18b81e3Basically i have a mediapanel class that initialize and play the media as datasource
    import java.awt.BorderLayout;
    import java.awt.Component;
    import java.io.*;
    import java.net.URL;
    import javax.media.*;
    import javax.swing.JPanel;
    import java.nio.ByteBuffer;
    public class MediaPanel extends JPanel
       InputStream stream;
       String name = "";
       ByteBuffer inputBuffer;
       byte[] store = null;
       public MediaPanel( InputStream in )
       try{
          this.stream = in;
          //store stream as ByteBuffer
          store = new byte[stream.available()];
          stream.read(store);
          inputBuffer.allocate(store.length);
          inputBuffer.wrap(store);
          //get contentType
          DrmDecryption drm = new DrmDecryption();
          name = drm.naming;
          setLayout( new BorderLayout() ); // use a BorderLayout
          ByteBufferDataSource ds = new ByteBufferDataSource(inputBuffer,name);
          // Use lightweight components for Swing compatibility
          Manager.setHint( Manager.LIGHTWEIGHT_RENDERER, true );
             // create a player to play the media specified in the URL
             Player mediaPlayer = Manager.createRealizedPlayer(ds);
             // get the components for the video and the playback controls
             Component video = mediaPlayer.getVisualComponent();
             Component controls = mediaPlayer.getControlPanelComponent();
             if ( video != null )
                add( video, BorderLayout.CENTER ); // add video component
             if ( controls != null )
                add( controls, BorderLayout.SOUTH ); // add controls
             mediaPlayer.start(); // start playing the media clip
           }catch(Exception e){}
       } // end MediaPanel constructor
    } // end class MediaPanelThe ByteBufferDataSource class is use to create the datasource for the player
    import javax.media.protocol.ContentDescriptor;
    import javax.media.protocol.PullDataSource;
    import java.nio.ByteBuffer;
    import java.io.IOException;
    import javax.media.MediaLocator;
    import javax.media.Duration;
    import javax.media.Time;
    public class ByteBufferDataSource extends PullDataSource {
    protected ContentDescriptor contentType;
    protected SeekableStream[] sources;
    protected boolean connected;
    protected ByteBuffer anInput;
    protected ByteBufferDataSource(){
    * Construct a ByteBufferDataSource from a ByteBuffer.
    * @param source The ByteBuffer that is used to create the
    * the DataSource.
    public ByteBufferDataSource(ByteBuffer input, String contentType) throws IOException {
    anInput = input;
    this.contentType = new ContentDescriptor(
                   ContentDescriptor.mimeTypeToPackageName(contentTyp  e));
    * Open a connection to the source described by
    * the ByteBuffer/CODE>.
    * The connect method initiates communication with the source.
    * @exception IOException Thrown if there are IO problems
    * when connect is called.
    public void connect() {
    sources = new SeekableStream [1];
    sources[0] = new SeekableStream(anInput);
    * Close the connection to the source described by the locator.
    * The disconnect method frees resources used to maintain a
    * connection to the source.
    * If no resources are in use, disconnect is ignored.
    * If stop hasn't already been called,
    * calling disconnect implies a stop.
    public void disconnect() {
    * Get a string that describes the content-type of the media
    * that the source is providing.
    * It is an error to call getContentType if the source is
    * not connected.
    * @return The name that describes the media content.
    public String getContentType() {
    return contentType.getContentType();
    public Object getControl(String str) {
    return null;
    public Object[] getControls() {
    return new Object[0];
    public javax.media.Time getDuration() {
    return Duration.DURATION_UNKNOWN;
    * Get the collection of streams that this source
    * manages. The collection of streams is entirely
    * content dependent. The MIME type of this
    * DataSource provides the only indication of
    * what streams can be available on this connection.
    * @return The collection of streams for this source.
    public javax.media.protocol.PullSourceStream[] getStreams() {
    return sources;
    * Initiate data-transfer. The start method must be
    * called before data is available.
    *(You must call connect before calling start.)
    * @exception IOException Thrown if there are IO problems with the source
    * when start is called.
    public void start() throws IOException {
    * Stop the data-transfer.
    * If the source has not been connected and started,
    * stop does nothing.
    public void stop() throws IOException {
    }i have a SeekableStream to manipulate the control of the streaming position.
    import java.lang.reflect.Method;
    import java.lang.reflect.Constructor;
    import java.io.IOException;
    import java.nio.ByteBuffer;
    import java.nio.BufferUnderflowException;
    import javax.media.protocol.PullSourceStream;
    import javax.media.protocol.Seekable;
    import javax.media.protocol.ContentDescriptor;
    public class SeekableStream implements PullSourceStream, Seekable {
    protected ByteBuffer inputBuffer;
    * a flag to indicate EOF reached
    /** Creates a new instance of SeekableStream */
    public SeekableStream(ByteBuffer byteBuffer) {
    inputBuffer = byteBuffer;
    this.seek((long)(0)); // set the ByteBuffer to to beginning
    * Find out if the end of the stream has been reached.
    * @return Returns true if there is no more data.
    public boolean endOfStream() {
    return (! inputBuffer.hasRemaining());
    * Get the current content type for this stream.
    * @return The current ContentDescriptor for this stream.
    public ContentDescriptor getContentDescriptor() {
    return null;
    * Get the size, in bytes, of the content on this stream.
    * @return The content length in bytes.
    public long getContentLength() {
    return inputBuffer.capacity();
    * Obtain the object that implements the specified
    * Class or Interface
    * The full class or interface name must be used.
    * The control is not supported.
    * null is returned.
    * @return null.
    public Object getControl(String controlType) {
    return null;
    * Obtain the collection of objects that
    * control the object that implements this interface.
    * No controls are supported.
    * A zero length array is returned.
    * @return A zero length array
    public Object[] getControls() {
    Object[] objects = new Object[0];
    return objects;
    * Find out if this media object can position anywhere in the
    * stream. If the stream is not random access, it can only be repositioned
    * to the beginning.
    * @return Returns true if the stream is random access, false if the stream can only
    * be reset to the beginning.
    public boolean isRandomAccess() {
    return true;
    * Block and read data from the stream.
    * Reads up to length bytes from the input stream into
    * an array of bytes.
    * If the first argument is null, up to
    * length bytes are read and discarded.
    * Returns -1 when the end
    * of the media is reached.
    * This method only returns 0 if it was called with
    * a length of 0.
    * @param buffer The buffer to read bytes into.
    * @param offset The offset into the buffer at which to begin writing data.
    * @param length The number of bytes to read.
    * @return The number of bytes read, -1 indicating
    * the end of stream, or 0 indicating read
    * was called with length 0.
    * @throws IOException Thrown if an error occurs while reading.
    public int read(byte[] buffer, int offset, int length) throws IOException {
    // return n (number of bytes read), -1 (eof), 0 (asked for zero bytes)
    if ( length == 0 )
    return 0;
    try {
    inputBuffer.get(buffer,offset,length);
    return length;
    catch ( BufferUnderflowException E ) {
    return -1;
    public void close() {
    * Seek to the specified point in the stream.
    * @param where The position to seek to.
    * @return The new stream position.
    public long seek(long where) {
    try {
    inputBuffer.position((int)(where));
    return where;
    catch (IllegalArgumentException E) {
    return this.tell(); // staying at the current position
    * Obtain the current point in the stream.
    public long tell() {
    return inputBuffer.position();
    * Find out if data is available now.
    * Returns true if a call to read would block
    * for data.
    * @return Returns true if read would block; otherwise
    * returns false.
    public boolean willReadBlock() {
    return (inputBuffer.remaining() == 0);
    }

    can u send me ur DrmDecryption.java file so that i can help

  • PSE 9 Scanner Issue- "File already exists"

    Probably a really basic question but PSE is rejecting the first two scans of every multi-scan (usually a 4 photo scan). Says "files already exist" but they don't. They are new images never scanned before. But it will accept the last two images scanned.
    I can't find a work-around and it's paralyzed my scanning of hundreds of pictures.  All media types are checked under View.
    Any ideas?
    Thanks much!.

    Hi Rick,
    I'm not sure I'll be much help.  Right up front I admit I've never scanned into PSE.
    Are you saying that if the ScanGear software divides the images, everything is OK in PSE?
    In other words, do you get the error only if you use PSE to divide the images?
    If #1 is false, the fact that the location of the "existing" file is in a temp directory (and not in your specified scan folder) suggests that there is a communication problem between the ScanGear software and PSE.  If #2 is true, then that's an internal PSE problem.
    If you leave PSE out of the picture, can you scan directly from ScanGear and tell it to place the divided images in your scan folder?
    Ken

  • Weird CS4 error when saving eps files on a Mac: "...specified files already exist in the target location"

    Hi There,
    All 3 workstations in our studio are experiencing weird file behavior when re-saving eps files from Illustrator.
    Basically Illustrator creates a new file in addition to the original and adds a "-01.eps" onto the file name. If you re-save your original, Illustrator brings up a dialogue box that states:
    Some of the specified files already exist in the target location. The files marked below will be replaced:
    filename.eps
    filename-01.eps
    We've been deleting the "-01.eps" files each time but it's becoming tedious. The behaviour occurs when re-saving an eps file to a server or the desktop.
    All machines are new Quad-core MacPros running:
    - Leopard 10.5.8
    - Illustrator CS4 14.0.0
    We've checked for Illustrator updates from within Illustrator but we seem to be running the latest version.
    Is anyone else experiencing this behavior?
    Any help or pointers in the right direction would be much appreciated.
    Cheers
    Ben

    Thanks for the reply.
    The error occurs when we save the document but if we choose save as, "Use Artboards" seems to be unchecked so not sure if this issue is related or not. Will re-save the document using save as then see if the issue persists.
    Why do we still use eps?
    Basically because we've found it to be much more compatible. Our entire logo library is in eps format (18 years worth) partly because it was previously the only format to use and partly because it allows account managers to send logos to clients, printers, TV stations etc and not involve the studio (saving out an eps version).
    Although "Create PDF compatible file" is a good idea, we've encountered costly issues with colours and images - especially if the recipient is using old CS software, non-Adobe software or is using some kind of hardware RIP. We now just go with what we know works.
    But I do find saving eps versions of everything to be a bit painful. In fact, I've always found Illustrator in general to be a bit painful when compared with Photoshop or AfterEffects. Illustrator seems like it's been developed by a different company some times!
    Cheers, and thanks for the help.

  • Share: File already exists. It doesn't: Won't Replace

    FCPX 10.0.9 OSX 10.7.5
    Never had any trouble exporting before. 
    Share---- Export File----- (select location as the 1tb HD)- fcpx says file already exists, do you want to replace?  Hit Replace, and it just cycles the same error, until cancelled.
    Does this on every single fcpx project, even those that worked fine before.
    Share--- E-mail  ----- fcpx immediatley throws a quicktime -50 error. 
    Share ------ Export File (select loction as the desktop or any other folder) ---- fcpx give the quicktime -50 error.
    I don't think I've changed anything. 
    All saving works fine on all other programs that I use.
    I am trying to save to the internal drive in my macbook pro
    disk utilty says the drive is fine.
    You got me....?

    I did that and got rid of some of the early frame errors.  i was able to export a section of clips, but then it would never export past frame 7065 no matter what clip was holding that place (at least that is what I think).  Even then it only worked with master file exports.
    I was wrong about this.  Don't use it if you are troubleshooting your problem with this thread.
    What was happening is that there was a black frame at the end of the clips that were throwing errors.  I had to check the errors on that frame.  I don't konw if they are dead frames or simply black frames, but all of them had those bad frames in the original clips themselves (and as a result in the timeline if I had inserted the WHOLE clip, or at least any subclip including that last bad frame).  The only position they were was at the end of the clip. 
    The solution was to find the offending frame in the timeline and then cut it out.  IN my case there were 5 of them.
    Note: that the title does not reflect the problem.  That problem was that it didn't like where I was saving (not specificing a directory, not sure why it was allowing me to choose the destination as my HD, and gave a less than helpful error on that). 

  • Database Adapter Configuration Wizard "File already exists" error

    I'm uding JDeveloper 10.1.3.1 on an XP machine running Java 1.5.0_06 and having trouble editing SOAOrderBooking.bpel as part of the tutorial.
    The tutorial calls for me to drag a new Database Adapter onto the diagram, select the "soademo_ssn" database and, on page 3 of the wizard select "Perform an operation on a table" and have only "Select" checked.
    When I click "Perform an operation on a table", the 5 tickboxes enable and are checked but the mouse pointer remains as an hourglass. If I press "Next" without doing anything else, the Wizard title changes to "Select Table" but never draws its controls, aside from the "Back" etc buttons along the bottom and the decorative graphic to the left. If I do try unchecking boxes to have only "Select" selected, every check box state change generates the error "File already exists" and the path of the .mwp file whose name I specified earlier. The file does exist, but it didn't before I entered the wizard.
    I've tried with three different filenames, and with two different database connections- both of which check out fine when I do "Test connection" in their property pages from the Connection Navigator.
    If I delete the file after each check state change, I can stop the errors appearing after I untick each checkbox, but the wizard still hangs on pressing "Next" whether the file is there or not.
    Does anyone have any suggestions?

    I am facing the same issues.
    I want to pick the new files and retain the files after polling.
    Any idea on this would help me to solve this issue.
    Thanks in advance.

  • FTPEx: 550  : Cannot create a file when that file already exists.

    Hi experts,
    I am working on idoc to file scenario and PI 7.1. The idoc is split into 3 files.
    In sxmb_moni , the message is successful , but in rwb( Message montoring) i am geeting the fllowing  Error message.
    ' Delivering the message to the application using connection File_http://sap.com/xi/XI/System failed, due to: com.sap.engine.interfaces.messaging.api.exception.MessagingException: An error occurred while connecting to the FTP server '172.19.125.190:21'. The FTP server returned the following error message: 'com.sap.aii.adapter.file.ftp.FTPEx: 550 /Storedata/Outbound/0000001802: Cannot create a file when that file already exists. '. For details, contact your FTP server vendor..'
    and this error message is not displayed for all the target files , some files are getting created succesfully.
    After some times , the file in error status , gets created automatically.
    What may be the reason.?
    Thanks in advance .
    Best Regards,
    Anil

    There seem to be already some files in your Target Directory with the same name as your new files (which the CC is trying to place) and the CC is not able to overwrite the existing files and hence the error...check this.
    Check: http://help.sap.com/saphelp_nwpi71/helpdata/EN/44/69d7cfa4b633eae10000000a1553f6/content.htm
    14.      Select the File Construction Mode.
    u25CB       Create
    The file is created. The document received last is saved in each case.
    If you want the created file to be overwritten, select Overwrite Existing File. If you do not set the indicator, processing is stopped until the created file is processed.
    You can only set the indicator if you select Use Temporary File under Put File below.
    Regards,
    Abhishek.
    Edited by: abhishek salvi on Jul 28, 2009 6:59 PM

  • Group file already exists

    Can someone please explain what causes this error:
    OCA-30023: error fetching result set
    [POL-3253] group file already exists
    I am using Oracle Lite 8. I have created a view that returns all records from a table with the related data from other tables. Whenever I use this view in a query, adding a where clause with a date range, I get the above mentioned error. This only happens when the database is open in another application. If I use the view in a query without a where clause, it works fine, but I get more data than I want to view. The view is shown below.
    Thanks for any info.
    John Valentino
    create view EventViewEx
         (EventIndex,LogDate,Tool,ModuleId,Module,Type,Event,StrDesc1,StrDesc2,StrDesc3,StrDesc4,IntDesc1,FptDesc1,UserName) as
    select     Event.EventIndex,
         Event.EventDate,
         Tool.ShopOrder,
         Event.ModuleID,
         Module.ModuleName,
         Event.EventType,
         Names.Name,
         Event.EV_StrDesc1,
         Event.EV_StrDesc2,
         Event.EV_StrDesc3,
         Event.EV_StrDesc4,
         Event.EV_IntDesc1,
         Event.EV_FptDesc1,
         Users.UserName
    from     Event,
         Names,
         Module,
         Tool,
         Users
    where     Event.ToolIndex = Tool.ToolIndex
    and     Event.NameId = Names.NameId
    and     Event.ModuleId = Module.ModuleId
    and     Event.UserIndex = Users.UserIndex;

    Thanks John. We downloaded the omwb13100 zip file.
    Instead of using the default repository, I tried to log-in to a database on the local NT machine to recreate a new repository. Everything went fine afterwards.
    We're all set for now but it would be nice to find out what happened to the default repository. Thank you.

  • Having trouble downloading a free trial of adobe acrobat xi pro - error keeps saying that an adobe file already exists

    Hio,
    I'm trying to download the application Adobe Acrobat XI pro - but every time I go through the download process, it comes up with an error that says it can not download because an adobe file already exists in the folder.  I don't have XI Pro downloaded.  Any thoughts?

    Update... Derp... Had it already loaded and didn't even know it..

  • Problem when saving files (file already exists-)

    Woking in CS5.1.
    When I save a document (as opposed to "save as"):
    I get a message "some of the specified files already exist in the target location. The files marked below will be replaced".
    The file I am working on gets saved, but creates a second version "file name-01.ai"
    Any ideas?

    Works fine here CS5 on Windows.
    When I save, it will warn me only if the file with the same name already exists and if I choose to replace it it will replace the existing file keeping the name I'm saving it with.

  • ORA-27038: created file already exists

    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE 11.2.0.1.0 Production
    TNS for IBM/AIX RISC System/6000: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production
    RMAN-03009: failure of backup command on t1 channel at 01/06/2013 21:24:49
    ORA-19504: failed to create file "/oradbs/disk_bakup/amx53s/amx53s_arch_060113_1747"
    ORA-27038: created file already exists
    MY RMAN SCRIPT:
    export ORACLE_HOME
    ORACLE_SID=amx53s
    export ORACLE_SID
    date=`date '+%d%m%y_%H%M`
    JOBLOG=/oradbs/disk_bakup/amx53s/amx53s.rman_$date.log
    $ORACLE_HOME/bin/rman target / NOCATALOG log "$JOBLOG" <<EOF
    run {
    allocate channel t1 type disk;
    backup
    format '/oradbs/disk_bakup/amx53s/amx53s_offline_$date'
    tag='amx53s_offline'
    database;
    backup
    format '/oradbs/disk_bakup/amx53s/amx53s_arch_$date'
    tag='amx53s_ARC_Tape_backup'
    archivelog all delete input ;
    backup current controlfile format '/oradbs/disk_bakup/amx53s/amx53s_Ctl_$date';
    crosscheck backup;
    release channel t1;
    }

    Hi,
    format '/oradbs/disk_bakup/amx53s/amx53s_offline_$date'Can you modify output file format to amx53s_offline_%p_%s_$date to add piece number set number to make the outpfile name unique? Because here RMAN is creating a backup set with the name you are providing, and then for next backup set, it uses same name and thats why returns you error message of "file already exists". If you second backup set is created on next minute, file name will be different, but if in the same minute, file name will be same and this error will come.
    Salman

  • Skgfrcre 01119, dbf file already exists.

    Now I've done it. Migrating data from msaccess to oracle, I thought to rebuild without errors about things preexisting by dropping the tablespace over on oracle. Now I get skgfrcre 0119, file already exists, for the dbf file.
    Is there a way to tell the to-oracle migration to create the database with "reuse"? I tried generating a migration script, but don't see a tablespace definition statement there.
    Many thanks for any pointers. I'm pretty green at oracle, must sink or swim.
    Ann Cantelow

    Try to delete the file on the OS level.
    Best regards,
    Nenad Noveljic
    Clariden Bank
    Zurich

  • File already exists in catalog error message

    When trying to scan a photo into the PSE 8 Organizer, I get the message "The file already exists in the catalog".  It indicates the file c:/users/user/AppData/Local/Temp/PSAlbumImport/2014-02-23-1315-04/Image1.jpg.  This file contains the image that I scanned in but it won't import into the Organizer.  I now have several scanned photos with this problem, all in different directories.  How can I fix this?

    My scanner software requires me to scan to photo software when scanning slides or negatives so the folder suggestion does not work.
    I have found a work around . I now scan into the organizer of my PSE 5 program which then shows up in the browser as new files when I open PSE 9.
    The PSE 5 program will scan all 4 slides without any problems. This didn't fix the problem in PSE 9 but I can get my scans done.
    I just wish Adobe support would get off their *** and respond to problems. I emailed them a week ago and have not received any response.
    Thanks for your response.

  • Import from scanner give error message "This file already exists in this catalogue"

    I can import from the scanner occasionally, but often times get this error message.  " this file already exists in this catalogue" and the scanned picture is discarded.
        I see others have had it as well, but no solutions were posted. I'm running Photoshop elements 11 with all current updates.

    Thanks for the reply. My Image wasn't in a version set however.   I scanned a new photo which was successsful. I then scanned a second photo different from the first, which failed.  I think possibly the software for my HP scanner is at fault, since it always names the scans as image1.jpg. It doesn't give an option to increment successive scans to a different name which probably caused the problem.

Maybe you are looking for