UCM Meta-data Fields Limt

My DocMeta table has 50 columns. we are building lots of applications in UCM. Every application has its own meta-data requirements. I doubt that pretty soon the column count will increase to 100+. Is there any limitation in UCM on number of custom meta-data fields that we can create? if my DocMeta columns count increases to 100, would it affect the queries/UCM performance ?
thanks

It would depend on the underlying database from a technical standpoint.
A good discussion for Oracle database limits - Limit on a number of columns in a table?
MS SQLServer - http://msdn.microsoft.com/en-us/library/ms143432.aspx
From a usability/maintenance standpoint, that's another matter. YMMV.

Similar Messages

  • Large memo meta-data field not fully indexed

    Hi all,
    Another day, another UCM question. Hopefully the answers given to my questions will help people facing the same issues.
    We created a custom meta-data field of type memo. Looking into the database, the following columns were created:
    colmeta.xcustom1 varchar2(2000)
    docmeta.xcustom1 varchar2(2000)
    idctext1.xcustom1 varchar2(2000)
    idctext2.xcustom1 varchar2(2000)
    indexerstate.xcustom1 varchar2(2000)
    We want specific meta-data field to hold 5000 characters and to have its content retrievable by the full text search feature. We've read about the MinMemoFieldSize and MemoFieldSize configuration variables, but reasoned that they shouldn't be used since the size requirement is only for this specific field.
    So we've updated the database schema manually (can't seem to find another way to do this) by sending these instructions:
    alter table colmeta modify xcustom1 varchar2(5000)
    alter table docmeta modify xcustom1 varchar2(5000)
    Then restarted the UCM server and performed a full collection index rebuild.
    These updates work in that new content can be created with a meta-data value of up to 5000 characters (it would give an error before). However, it seems that the whole field value is not being indexed: doing a full-text search on a word in the first 2000 field characters finds the content, but doing a full-text search on a word in the last 3000 field characters doesn't.
    We've tried manually extending the size of the idctext1, idctext2 and indexerstate columns, but it doesn't seem to have any impact.
    Any ideas?
    Thanks again.
    Edited by: Spiff on 1-Feb-2012 12:32 PM

    Hi ,
    Please check the following post's last update .
    Metadata fields sizes
    Thanks
    Srinath

  • Changing the Default meta data field property required into not required.

    Hi,
    Is it possible to change the default meta data field property values in UCM server.
    For example consider the meta data Revision field which property required is true, then how to change this property required into not required.
    Is this possible or not?
    Thanks
    Hari

    Hari,
    in your case (if you don't want to use versioning) I'd rather recommend to change it to hidden than not required. You should be able to do it with standard profiles (the field name, I believe, is dRevision)
    I don't think you can have the field empty (in case someone deletes the content).

  • Adding a custom meta data field which lists out content id based on query

    How can we add a custom meta data filed which lists out content id based on query like dDocType <matches> `AssociatedProduct`?
    Or other alternative would be to have a custom metadata field such that it allows selection of content id using link wizard which we typically use in site studio. It would be preferable to have this second option as it is user friendly. Can we do this on a check-in screen?
    -Pratap

    Thanks for the reply Deepak.
    We got it resolved. We did following changes in /ucm/custom/SiteStudio/resources/ss_custom_field_resources.htm file and it worked cleanly.
    Added following section at the end before body tag
    ===================================================================================================
    <@dynamichtml ss_parent_definition_field_entry@>
         <$include super.std_edit_entry$>
         <$if isQuery and isTrue(isQuery)$></td><td><$endif$>
         <$include ss_contributor_base_scripts$>
         <script type="text/javascript" src="<$HttpRelativeWebRoot$>resources/<$SSContributorSourceDir$>/sitestudio/wcm.contentserver.popup.js"></script>
         <script language="JavaScript">
         function OnSelectParentId()
              var selectParentIdOptions = {};
              selectParentIdOptions.httpCgiPath = '<$HttpCgiPath$>';
              selectParentIdOptions.queryText = 'dDocType <matches> `Country`';
              selectParentIdOptions.coreContentOnly = '<$if coreContentOnly and isTrue(coreContentOnly)$>1<$else$>0<$endif$>';
              selectParentIdOptions.callback = function( returnParams )
                   returnParams = returnParams || {};
                   if( returnParams && returnParams['dDocName'] && ( returnParams.dDocName.length > 0 ) )
                        // Set the actual metadata value
                        <$if isQuery AND isTrue(isQuery)$>
                             for (var i=0; i < document.<$formName$>.elements.length; i++)
                                  var elt=document.<$formName$>.elements;
                                  if (elt.name=="<$fieldName$>")
                                       elt.value = returnParams.dDocName;
                        <$else$>
                             document.<$formName$>.<$fieldName$>.value = returnParams.dDocName;
                        <$endif$>
              WCM.ContentServerPopup.ChooseManagedDocument(selectParentIdOptions);
         </script>
         <input type="button" value="<$lc("wwBrowse")$>..." onclick="OnSelectParentId();">
    <@end@>
    ======================================================================================
    Then modified the section which show xWebsiteSection, xRegionDefinition etc to include my custom meta data defitnion as well ('xParentContentType')
    ===================================================================
    <@dynamichtml std_edit_entry@>
         <$if fieldName and ( fieldName like "xWebsites|xDontShowInListsForWebsites" )$>
              <$include ss_website_query_text_field$>
         <$elseif fieldName and strEquals( fieldName, "xWebsiteSection" )$>
              <$include ss_website_section_field_entry$>
         <$elseif fieldName and strEquals( fieldName, "xRegionDefinition" )$>
              <$include ss_region_definition_field_entry$>
         <$elseif fieldName and strEquals( fieldName, "xParentContentType" )$>
              <$include ss_parent_definition_field_entry$>
         <$else$>
              <$include super.std_edit_entry$>
         <$endif$>
    <@end@>
    ====================================================================
    This worked fine.
    Regards,
    Pratap

  • Not able to get the taxonomy field value of meta data field type

    Hi Everyone,
    Not able to get the taxonomy filed value from the metadata filed type.
    Any one can help me on this.
    Label, TermGuid, ValidatedString are showing empty when i debug the code.
    Below is the code which i used to get the taxonomy filed value

    Hi,
    Can you please try getting this way?
    var taxonomyField = listItem.Fields.GetFieldByInternalName(fieldName) as TaxonomyField;
    if (taxonomyField.AllowMultipleValues)
    var fieldValuesCollection = listItem[taxonomyField.Title] as TaxonomyFieldValueCollection;
    return fieldValuesCollection.Select(x => new Guid(x.TermGuid)).ToList();
    else
    var fieldValue = listItem[taxonomyField.Title] as TaxonomyFieldValue;
    return new List<Guid>() { new Guid(fieldValue.TermGuid) };
    Hope it helps!
    Thanks,
    Avni Bhatt
    If this helped you resolve your issue, please mark it Answered

  • Photoshop CS3 crashes when meta-data is edited

    We are using Photoshop CS3 on our G5 Mac running Leopard. When we open any JPG or EPS file and attempt to edit the meta data it crashes Photoshop completely (before we can even attempt to save the file). It does not matter which meta data field we are editing it happens to all of them. Not sure what has changed on the system as we have not done any updates recently. Thought it might be a corrupt preference file but not sure which one to delete? Any help will be greatly appreciated!
    Sincerely,
    Courtney
    Version:1.0 StartHTML:0000000167 EndHTML:0000046049 StartFragment:0000000451 EndFragment:0000046033        
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE AdobeCrashReport SYSTEM "AdobeCrashReporter.dtd">
    <crashreport version="1.1" crVersion="2.5.0.02272007" applicationName="Photoshop" applicationVersion="10.0" build="10.0 &#40;10.0x20070321 [20070321.m.1480 2007/03/21&#58;16&#58;39&#58;00 cutoff; m branch]&#41;, ©1990-2007 Adobe Systems Incorporated">
    <time year="2012" month="6" day="13" hour="12" minute="38" second="55" />
    <user guid="F048B041-9AD8-4F8C-8952-F1317D9FCF9F" />
    <system platform="macintosh" osversion="10.5.8" applicationlanguage="en" userlanguage="en" oslanguage="en_GB" ram="3072MB" machine="i386" model="MacPro1,1" cpuCount="4" cpuFreq="2660MHz" busFreq="1332MHz" />
    <crash exception="Unmapped Memory Exception" instruction="607823e4">
    <backtrace crashedThread="0">
    <thread index="0">
    <stackStatement index="0" address="0x24dc5ff2" symbolname="unknown"/>
    <stackStatement index="1" address="0x90bd857b" symbolname="__Z30SendEventToEventTargetInternalP14OpaqueEventRefP20Op aqueEventTargetRefP14HandlerCallRec"/>
    <stackStatement index="2" address="0x90bf4ecc" symbolname="_SendEventToEventTarget"/>
    <stackStatement index="3" address="0x90c070a8" symbolname="__Z29ToolboxEventDispatcherHandlerP25OpaqueEventHandlerCa llRefP14OpaqueEventRefPv"/>
    <stackStatement index="4" address="0x90bd94f6" symbolname="__Z23DispatchEventToHandlersP14EventTargetRecP14OpaqueEve ntRefP14HandlerCallRec"/>
    <stackStatement index="5" address="0x90bd857b" symbolname="__Z30SendEventToEventTargetInternalP14OpaqueEventRefP20Op aqueEventTargetRefP14HandlerCallRec"/>
    <stackStatement index="6" address="0x90bf4ecc" symbolname="_SendEventToEventTarget"/>
    <stackStatement index="7" address="0x90c61a6c" symbolname="_ToolboxEventDispatcher"/>
    <stackStatement index="8" address="0x90cb4b28" symbolname="_GetOrPeekEvent"/>
    <stackStatement index="9" address="0x90cb47f2" symbolname="_GetNextEventMatchingMask"/>
    <stackStatement index="10" address="0x90cb460e" symbolname="_WNEInternal"/>
    <stackStatement index="11" address="0x90cb456d" symbolname="_WaitNextEvent"/>
    <stackStatement index="12" address="0x90cb32a9" symbolname="_ModalDialog"/>
    <stackStatement index="13" address="0x90ce98a2" symbolname="_RunStandardAlert"/>
    <stackStatement index="14" address="0x00077e9e" symbolname="unknown"/>
    <stackStatement index="15" address="0x000781cc" symbolname="unknown"/>
    <stackStatement index="16" address="0x000d6589" symbolname="unknown"/>
    <stackStatement index="17" address="0x000d6975" symbolname="unknown"/>
    <stackStatement index="18" address="0x0007a0df" symbolname="unknown"/>
    <stackStatement index="19" address="0x00060129" symbolname="unknown"/>
    <stackStatement index="20" address="0x000601bd" symbolname="unknown"/>
    <stackStatement index="21" address="0x000602d0" symbolname="unknown"/>
    <stackStatement index="22" address="0x0021998e" symbolname="unknown"/>
    <stackStatement index="23" address="0x002199e9" symbolname="unknown"/>
    <stackStatement index="24" address="0x00002fd2" symbolname="unknown"/>
    <stackStatement index="25" address="0x00002ef9" symbolname="unknown"/>
    <stackStatement index="26" address="0x00000002" symbolname="unknown"/>
    </thread>
    </backtrace>
    <registerSet>
    <register name="CS" value="0x00000017"/>
    <register name="DS" value="0x0000001f"/>
    <register name="SS" value="0x0000001f"/>
    <register name="ES" value="0x0000001f"/>
    <register name="FS" value="0000000000"/>
    <register name="GS" value="0x00000037"/>
    <register name="EFLAGS" value="0x00010286"/>
    <register name="EIP" value="0x24dc5ff2"/>
    <register name="EAX" value="0x24348904"/>
    <register name="EBX" value="0x0242fc6a"/>
    <register name="ECX" value="0x00000023"/>
    <register name="EDX" value="0x02d0a0e9"/>
    <register name="ESI" value="0x29349900"/>
    <register name="EDI" value="0000000000"/>
    <register name="EBP" value="0xbfffcfd8"/>
    <register name="ESP" value="0xbfffcf6c"/>
    </registerSet>
    <binaryImageSet>
    <binaryImage start="0x00001000" end="0x016e0fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/Adobe Photoshop CS3"/>
    <binaryImage start="0x01b9a000" end="0x01e1afff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/AdobeAGM.framework/Versions/A/Ad obeAGM"/>
    <binaryImage start="0x01ec4000" end="0x01fc4fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/AdobeACE.framework/Versions/A/Ad obeACE"/>
    <binaryImage start="0x01fe3000" end="0x02004fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/AdobeBIBUtils.framework/Versions /A/AdobeBIBUtils"/>
    <binaryImage start="0x02011000" end="0x0202afff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/AdobeBIB.framework/Versions/A/Ad obeBIB"/>
    <binaryImage start="0x02034000" end="0x02298fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/AdobeCoolType.framework/Versions /A/AdobeCoolType"/>
    <binaryImage start="0x02314000" end="0x02337fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/AdobeAXE8SharedExpat.framework/V ersions/A/AdobeAXE8SharedExpat"/>
    <binaryImage start="0x02349000" end="0x0239efff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/AdobeXMP.framework/Versions/A/Ad obeXMP"/>
    <binaryImage start="0x023ac000" end="0x023c7fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/AdobePDFSettings.framework/Versi ons/A/AdobePDFSettings"/>
    <binaryImage start="0x023e0000" end="0x02496fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/FileInfo.framework/Versions/A/Fi leInfo"/>
    <binaryImage start="0x024c4000" end="0x024c9fff" type="__TEXT" path="/System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN"/>
    <binaryImage start="0x024d2000" end="0x0263dfff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/AdobeOwl.framework/Versions/A/Ad obeOwl"/>
    <binaryImage start="0x02696000" end="0x0269cfff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/AdobeCrashReporter.framework/Ver sions/A/AdobeCrashReporter"/>
    <binaryImage start="0x026a3000" end="0x026bffff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/LogTransport.framework/Versions/ A/LogTransport"/>
    <binaryImage start="0x026ca000" end="0x02a1ffff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/AdobeLinguistic.framework/Versio ns/3/AdobeLinguistic"/>
    <binaryImage start="0x02bb8000" end="0x02bfffff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/adobe_caps.framework/Versions/A/ adobe_caps"/>
    <binaryImage start="0x02c0f000" end="0x02c4efff" type="__TEXT" path="/System/Library/PrivateFrameworks/vmutils.framework/Versions/A/ vmutils"/>
    <binaryImage start="0x02f00000" end="0x02f01fff" type="__TEXT" path="/System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings"/>
    <binaryImage start="0x06799000" end="0x067a7fff" type="__TEXT" path="/System/Library/CoreServices/Encodings/libSimplifiedChineseConv erter.dylib"/>
    <binaryImage start="0x067ac000" end="0x067befff" type="__TEXT" path="/System/Library/CoreServices/Encodings/libTraditionalChineseCon verter.dylib"/>
    <binaryImage start="0x067c2000" end="0x067c3fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/ATS.framework/Versions/A/Resources/ATSHI.dylib"/>
    <binaryImage start="0x0687f000" end="0x06889fff" type="__TEXT" path="/System/Library/PrivateFrameworks/URLMount.framework/URLMount"/ >
    <binaryImage start="0x1824b000" end="0x18251fff" type="__TEXT" path="/System/Library/Filesystems/URLMount/afp.URLMounter/Contents/Ma cOS/afp"/>
    <binaryImage start="0x182e7000" end="0x182f1fff" type="__TEXT" path="/System/Library/Frameworks/AppleTalk.framework/Versions/A/Apple Talk"/>
    <binaryImage start="0x183e1000" end="0x18420fff" type="__TEXT" path="/System/Library/Frameworks/AppleShareClientCore.framework/Versi ons/A/AppleShareClientCore"/>
    <binaryImage start="0x1a3ec000" end="0x1a3f7fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Plug-Ins/Extensions/Enable Async IO/Enable Async IO.plugin/Contents/MacOS/Enable Async IO"/>
    <binaryImage start="0x1a3fc000" end="0x1a3fcfff" type="__TEXT" path="/usr/lib/libmx.A.dylib"/>
    <binaryImage start="0x1a500000" end="0x1a50dfff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Plug-Ins/Extensions/FastCore.plugin/Contents/MacOS/FastCore"/>
    <binaryImage start="0x1a584000" end="0x1a5e9fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Plug-Ins/Extensions/MMXCore.plugin/Contents/MacOS/MMXCore"/>
    <binaryImage start="0x1a687000" end="0x1a6d3fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Plug-Ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support"/>
    <binaryImage start="0x1a6da000" end="0x1a82cfff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/Required/AdobeADM.bundle/Contents/MacOS/AdobeADM"/>
    <binaryImage start="0x1b69d000" end="0x1b69ffff" type="__TEXT" path="/Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types"/>
    <binaryImage start="0x1b6a3000" end="0x1b6a4fff" type="__TEXT" path="/Library/ScriptingAdditions/QXPScriptingAdditions.osax/Contents /MacOS/QXPScriptingAdditions"/>
    <binaryImage start="0x1d000000" end="0x1d2bcfff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/Required/ScriptingSupport.plugin/Contents/MacOS/Scri ptingSupport"/>
    <binaryImage start="0x1d5e5000" end="0x1da2dfff" type="__TEXT" path="/Library/ScriptingAdditions/XSLT Tools.osax/Contents/MacOS/XSLT Tools"/>
    <binaryImage start="0x1dc00000" end="0x1de08fff" type="__TEXT" path="/System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/Ra wCamera"/>
    <binaryImage start="0x1e5f0000" end="0x1ece1fff" type="__TEXT" path="/Library/Application Support/Adobe/Plug-Ins/CS3/File Formats/Camera Raw.plugin/Contents/MacOS/Camera Raw"/>
    <binaryImage start="0x1f105000" end="0x1f539fff" type="__TEXT" path="/Library/Application Support/Adobe/Adobe Version Cue CS3/Client/3.0.0/VersionCue.framework/VersionCue"/>
    <binaryImage start="0x1f953000" end="0x1f9e5fff" type="__TEXT" path=""/>
    <binaryImage start="0x23593000" end="0x23598fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCore Image.A.dylib"/>
    <binaryImage start="0x23988000" end="0x23b0dfff" type="__TEXT" path="/System/Library/Frameworks/OpenGL.framework/Resources/GLEngine. bundle/GLEngine"/>
    <binaryImage start="0x23b3b000" end="0x23cc2fff" type="__TEXT" path="/System/Library/Extensions/GeForceFXGLDriver.bundle/Contents/Ma cOS/GeForceFXGLDriver"/>
    <binaryImage start="0x23cec000" end="0x23d08fff" type="__TEXT" path="/System/Library/Frameworks/OpenGL.framework/Versions/A/Resource s/GLRendererFloat.bundle/GLRendererFloat"/>
    <binaryImage start="0x252e1000" end="0x25316fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/Frameworks/adobe_epic.framework/adobe_epic"/>
    <binaryImage start="0x25336000" end="0x25342fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/Frameworks/adobe_eula.framework/adobe_eula"/>
    <binaryImage start="0x25354000" end="0x25362fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/Frameworks/adobe_personalization.framework/adobe_per sonalization"/>
    <binaryImage start="0x2536b000" end="0x25378fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/Frameworks/asneu.framework/asneu"/>
    <binaryImage start="0x25399000" end="0x253a9fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/Frameworks/adobe_registration.framework/adobe_regist ration"/>
    <binaryImage start="0x25538000" end="0x259b0fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/AdobeLM_libFNP.dylib"/>
    <binaryImage start="0x25ae8000" end="0x25b40fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/Frameworks/AdobeUpdater.framework/AdobeUpdater"/>
    <binaryImage start="0x40000000" end="0x400a6fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/AdobeJP2K.framework/Versions/A/A dobeJP2K"/>
    <binaryImage start="0x90009000" end="0x90025fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib"/>
    <binaryImage start="0x90026000" end="0x900a0fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/PrintCore.framework/Versions/A/PrintCore"/>
    <binaryImage start="0x900a1000" end="0x900a1fff" type="__TEXT" path="/System/Library/Frameworks/Accelerate.framework/Versions/A/Acce lerate"/>
    <binaryImage start="0x900a7000" end="0x900a7fff" type="__TEXT" path="/System/Library/Frameworks/vecLib.framework/Versions/A/vecLib"/ >
    <binaryImage start="0x900a8000" end="0x900dffff" type="__TEXT" path="/System/Library/Frameworks/SystemConfiguration.framework/Versio ns/A/SystemConfiguration"/>
    <binaryImage start="0x900e0000" end="0x900f0fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis"/ >
    <binaryImage start="0x90105000" end="0x90129fff" type="__TEXT" path="/usr/lib/libxslt.1.dylib"/>
    <binaryImage start="0x9012a000" end="0x9012ffff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Framewor ks/CommonPanels.framework/Versions/A/CommonPanels"/>
    <binaryImage start="0x90130000" end="0x90328fff" type="__TEXT" path="/System/Library/Frameworks/JavaScriptCore.framework/Versions/A/ JavaScriptCore"/>
    <binaryImage start="0x90329000" end="0x90329fff" type="__TEXT" path="/System/Library/PrivateFrameworks/InstallServer.framework/Versi ons/A/InstallServer"/>
    <binaryImage start="0x904b8000" end="0x90545fff" type="__TEXT" path="/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit"/>
    <binaryImage start="0x90546000" end="0x90565fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib"/ >
    <binaryImage start="0x90583000" end="0x9058ffff" type="__TEXT" path="/System/Library/Frameworks/OpenGL.framework/Versions/A/Librarie s/libGL.dylib"/>
    <binaryImage start="0x90590000" end="0x90623fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/ATS.framework/Versions/A/ATS"/>
    <binaryImage start="0x90624000" end="0x9070cfff" type="__TEXT" path="/System/Library/Frameworks/CoreData.framework/Versions/A/CoreDa ta"/>
    <binaryImage start="0x9070d000" end="0x90766fff" type="__TEXT" path="/System/Library/Frameworks/OpenGL.framework/Versions/A/Librarie s/libGLU.dylib"/>
    <binaryImage start="0x90767000" end="0x90767fff" type="__TEXT" path="/System/Library/Frameworks/AudioUnit.framework/Versions/A/Audio Unit"/>
    <binaryImage start="0x90768000" end="0x907e5fff" type="__TEXT" path="/System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreA udio"/>
    <binaryImage start="0x908d5000" end="0x908d5fff" type="__TEXT" path="/System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa"/>
    <binaryImage start="0x90929000" end="0x90958fff" type="__TEXT" path="/System/Library/Frameworks/CoreServices.framework/Versions/A/Fr ameworks/AE.framework/Versions/A/AE"/>
    <binaryImage start="0x90959000" end="0x90960fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGATS.A .dylib"/>
    <binaryImage start="0x90961000" end="0x909befff" type="__TEXT" path="/usr/lib/libstdc&#43;&#43;.6.dylib"/>
    <binaryImage start="0x909bf000" end="0x90a1bfff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Framewor ks/HTMLRendering.framework/Versions/A/HTMLRendering"/>
    <binaryImage start="0x90b67000" end="0x90ba1fff" type="__TEXT" path="/System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/C oreUI"/>
    <binaryImage start="0x90ba5000" end="0x90bb3fff" type="__TEXT" path="/usr/lib/libz.1.dylib"/>
    <binaryImage start="0x90bd1000" end="0x90ed9fff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Framewor ks/HIToolbox.framework/Versions/A/HIToolbox"/>
    <binaryImage start="0x90f41000" end="0x90f45fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib"/>
    <binaryImage start="0x90f46000" end="0x90f5efff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Framewor ks/OpenScripting.framework/Versions/A/OpenScripting"/>
    <binaryImage start="0x90f5f000" end="0x91130fff" type="__TEXT" path="/System/Library/Frameworks/Security.framework/Versions/A/Securi ty"/>
    <binaryImage start="0x911cb000" end="0x911cdfff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dyl ib"/>
    <binaryImage start="0x911ce000" end="0x91261fff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Framewor ks/Ink.framework/Versions/A/Ink"/>
    <binaryImage start="0x91262000" end="0x92162fff" type="__TEXT" path="/System/Library/QuickTime/QuickTimeComponents.component/Content s/MacOS/QuickTimeComponents"/>
    <binaryImage start="0x921b2000" end="0x921b8fff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Framewor ks/Print.framework/Versions/A/Print"/>
    <binaryImage start="0x921eb000" end="0x92516fff" type="__TEXT" path="/System/Library/Frameworks/QuickTime.framework/Versions/A/Quick Time"/>
    <binaryImage start="0x92517000" end="0x92524fff" type="__TEXT" path="/System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL"/ >
    <binaryImage start="0x92526000" end="0x92526fff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Carbon"/ >
    <binaryImage start="0x92527000" end="0x92568fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.d ylib"/>
    <binaryImage start="0x92569000" end="0x92630fff" type="__TEXT" path="/System/Library/Frameworks/Accelerate.framework/Versions/A/Fram eworks/vImage.framework/Versions/A/vImage"/>
    <binaryImage start="0x9263b000" end="0x92643fff" type="__TEXT" path="/System/Library/Frameworks/DiskArbitration.framework/Versions/A /DiskArbitration"/>
    <binaryImage start="0x92644000" end="0x926d1fff" type="__TEXT" path="/System/Library/Frameworks/CoreServices.framework/Versions/A/Fr ameworks/LaunchServices.framework/Versions/A/LaunchServices"/>
    <binaryImage start="0x926d2000" end="0x927d9fff" type="__TEXT" path="/System/Library/Frameworks/WebKit.framework/Versions/A/WebKit"/ >
    <binaryImage start="0x927da000" end="0x9290dfff" type="__TEXT" path="/System/Library/Frameworks/CoreFoundation.framework/Versions/A/ CoreFoundation"/>
    <binaryImage start="0x9290e000" end="0x92be8fff" type="__TEXT" path="/System/Library/Frameworks/CoreServices.framework/Versions/A/Fr ameworks/CarbonCore.framework/Versions/A/CarbonCore"/>
    <binaryImage start="0x92be9000" end="0x92cc9fff" type="__TEXT" path="/usr/lib/libobjc.A.dylib"/>
    <binaryImage start="0x92cca000" end="0x92ccafff" type="__TEXT" path="/System/Library/Frameworks/Accelerate.framework/Versions/A/Fram eworks/vecLib.framework/Versions/A/vecLib"/>
    <binaryImage start="0x92f34000" end="0x93a2dfff" type="__TEXT" path="/System/Library/Frameworks/WebKit.framework/Versions/A/Framewor ks/WebCore.framework/Versions/A/WebCore"/>
    <binaryImage start="0x93a2e000" end="0x93a59fff" type="__TEXT" path="/usr/lib/libauto.dylib"/>
    <binaryImage start="0x93a5a000" end="0x93a61fff" type="__TEXT" path="/usr/lib/libgcc_s.1.dylib"/>
    <binaryImage start="0x93aa0000" end="0x93aabfff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A .dylib"/>
    <binaryImage start="0x93afe000" end="0x93b05fff" type="__TEXT" path="/System/Library/Frameworks/AGL.framework/Versions/A/AGL"/>
    <binaryImage start="0x93b06000" end="0x93fd7fff" type="__TEXT" path="/System/Library/Frameworks/OpenGL.framework/Versions/A/Librarie s/libGLProgrammability.dylib"/>
    <binaryImage start="0x93fd8000" end="0x94111fff" type="__TEXT" path="/usr/lib/libicucore.A.dylib"/>
    <binaryImage start="0x94112000" end="0x9416cfff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/CoreText.framework/Versions/A/CoreText"/>
    <binaryImage start="0x9416d000" end="0x941acfff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib"/ >
    <binaryImage start="0x941bd000" end="0x94244fff" type="__TEXT" path="/usr/lib/libsqlite3.0.dylib"/>
    <binaryImage start="0x94245000" end="0x942c2fff" type="__TEXT" path="/System/Library/Frameworks/Accelerate.framework/Versions/A/Fram eworks/vecLib.framework/Versions/A/libvMisc.dylib"/>
    <binaryImage start="0x942c3000" end="0x942c7fff" type="__TEXT" path="/usr/lib/system/libmathCommon.A.dylib"/>
    <binaryImage start="0x94392000" end="0x94486fff" type="__TEXT" path="/usr/lib/libiconv.2.dylib"/>
    <binaryImage start="0x94487000" end="0x94552fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/ColorSync.framework/Versions/A/ColorSync"/>
    <binaryImage start="0x94553000" end="0x94603fff" type="__TEXT" path="/System/Library/Frameworks/Kerberos.framework/Versions/A/Kerber os"/>
    <binaryImage start="0x94604000" end="0x9460efff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Framewor ks/CarbonSound.framework/Versions/A/CarbonSound"/>
    <binaryImage start="0x949ff000" end="0x94ab1fff" type="__TEXT" path="/usr/lib/libcrypto.0.9.7.dylib"/>
    <binaryImage start="0x94c6f000" end="0x94cc0fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/HIServices.framework/Versions/A/HIServices"/>
    <binaryImage start="0x94cc1000" end="0x94d0afff" type="__TEXT" path="/System/Library/Frameworks/CoreServices.framework/Versions/A/Fr ameworks/Metadata.framework/Versions/A/Metadata"/>
    <binaryImage start="0x94d50000" end="0x94d7dfff" type="__TEXT" path="/System/Library/Frameworks/Accelerate.framework/Versions/A/Fram eworks/vecLib.framework/Versions/A/libvDSP.dylib"/>
    <binaryImage start="0x94da4000" end="0x94da4fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/ApplicationServices"/>
    <binaryImage start="0x94da5000" end="0x95445fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics"/>
    <binaryImage start="0x95446000" end="0x9546ffff" type="__TEXT" path="/usr/lib/libcups.2.dylib"/>
    <binaryImage start="0x955f1000" end="0x95606fff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Framewor ks/ImageCapture.framework/Versions/A/ImageCapture"/>
    <binaryImage start="0x9571a000" end="0x9571dfff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Framewor ks/Help.framework/Versions/A/Help"/>
    <binaryImage start="0x9571e000" end="0x957c5fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/QD.framework/Versions/A/QD"/>
    <binaryImage start="0x958a9000" end="0x958bffff" type="__TEXT" path="/System/Library/Frameworks/CoreServices.framework/Versions/A/Fr ameworks/DictionaryServices.framework/Versions/A/DictionaryServices"/>
    <binaryImage start="0x958c0000" end="0x95b3cfff" type="__TEXT" path="/System/Library/Frameworks/Foundation.framework/Versions/C/Foun dation"/>
    <binaryImage start="0x95bc0000" end="0x95f7efff" type="__TEXT" path="/System/Library/Frameworks/Accelerate.framework/Versions/A/Fram eworks/vecLib.framework/Versions/A/libLAPACK.dylib"/>
    <binaryImage start="0x95f7f000" end="0x9603afff" type="__TEXT" path="/System/Library/Frameworks/CoreServices.framework/Versions/A/Fr ameworks/OSServices.framework/Versions/A/OSServices"/>
    <binaryImage start="0x96047000" end="0x96063fff" type="__TEXT" path="/System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreV ideo"/>
    <binaryImage start="0x96064000" end="0x961b6fff" type="__TEXT" path="/System/Library/Frameworks/AudioToolbox.framework/Versions/A/Au dioToolbox"/>
    <binaryImage start="0x96203000" end="0x96282fff" type="__TEXT" path="/System/Library/Frameworks/CoreServices.framework/Versions/A/Fr ameworks/SearchKit.framework/Versions/A/SearchKit"/>
    <binaryImage start="0x96283000" end="0x9630dfff" type="__TEXT" path="/System/Library/PrivateFrameworks/DesktopServicesPriv.framework /Versions/A/DesktopServicesPriv"/>
    <binaryImage start="0x9630e000" end="0x963effff" type="__TEXT" path="/usr/lib/libxml2.2.dylib"/>
    <binaryImage start="0x96403000" end="0x9640ffff" type="__TEXT" path="/System/Library/PrivateFrameworks/HelpData.framework/Versions/A /HelpData"/>
    <binaryImage start="0x96410000" end="0x967adfff" type="__TEXT" path="/System/Library/Frameworks/QuartzCore.framework/Versions/A/Quar tzCore"/>
    <binaryImage start="0x967ae000" end="0x967ccfff" type="__TEXT" path="/usr/lib/libresolv.9.dylib"/>
    <binaryImage start="0x967cd000" end="0x96874fff" type="__TEXT" path="/System/Library/Frameworks/CoreServices.framework/Versions/A/Fr ameworks/CFNetwork.framework/Versions/A/CFNetwork"/>
    <binaryImage start="0x96875000" end="0x97073fff" type="__TEXT" path="/System/Library/Frameworks/AppKit.framework/Versions/C/AppKit"/ >
    <binaryImage start="0x97074000" end="0x97076fff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Framewor ks/SecurityHI.framework/Versions/A/SecurityHI"/>
    <binaryImage start="0x97077000" end="0x97487fff" type="__TEXT" path="/System/Library/Frameworks/Accelerate.framework/Versions/A/Fram eworks/vecLib.framework/Versions/A/libBLAS.dylib"/>
    <binaryImage start="0x97488000" end="0x974c6fff" type="__TEXT" path="/System/Library/Frameworks/OpenGL.framework/Versions/A/Librarie s/libGLImage.dylib"/>
    <binaryImage start="0x974c7000" end="0x974c8fff" type="__TEXT" path="/usr/lib/libffi.dylib"/>
    <binaryImage start="0x97743000" end="0x978d2fff" type="__TEXT" path="/System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/ CoreAUC"/>
    <binaryImage start="0x978d3000" end="0x978dcfff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Framewor ks/SpeechRecognition.framework/Versions/A/SpeechRecognition"/>
    <binaryImage start="0x978dd000" end="0x978ddfff" type="__TEXT" path="/System/Library/Frameworks/CoreServices.framework/Versions/A/Co reServices"/>
    <binaryImage start="0x978fc000" end="0x9790cfff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis"/>
    <binaryImage start="0x97912000" end="0x9793afff" type="__TEXT" path="/System/Library/PrivateFrameworks/Shortcut.framework/Versions/A /Shortcut"/>
    <binaryImage start="0x97a74000" end="0x97bdbfff" type="__TEXT" path="/usr/lib/libSystem.B.dylib"/>
    <binaryImage start="0x97bdc000" end="0x97c00fff" type="__TEXT" path="/usr/lib/libssl.0.9.7.dylib"/>
    <binaryImage start="0x97c3e000" end="0x97c80fff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Framewor ks/NavigationServices.framework/Versions/A/NavigationServices"/>
    <binaryImage start="0x97cd0000" end="0x97cd7fff" type="__TEXT" path="/usr/lib/libbsm.dylib"/>
    <binaryImage start="0x97d28000" end="0x97e70fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/ImageIO.framework/Versions/A/ImageIO"/>
    <binaryImage start="0xb0000000" end="0xb0004fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/ahclient.framework/Versions/A/ah client"/>
    <binaryImage start="0xba900000" end="0xba916fff" type="__TEXT" path="/System/Library/CoreServices/Encodings/libJapaneseConverter.dyl ib"/>
    <binaryImage start="0xbab00000" end="0xbab21fff" type="__TEXT" path="/System/Library/CoreServices/Encodings/libKoreanConverter.dylib "/>
    </binaryImageSet>
    </crash>
    Console Log Message:
    Version:1.0 StartHTML:0000000167 EndHTML:0000002013 StartFragment:0000000451 EndFragment:0000001997        
    Process:         Adobe Photoshop CS3 [306]
    Path:            /Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/Adobe Photoshop CS3
    Identifier:      com.adobe.Photoshop
    Version:         10.0 (10.0x20070321 [20070321.m.1480 2007/03/21:16:39:00 cutoff; m branch]) (10.0)
    Code Type:       X86 (Native)
    Parent Process:  launchd [105]
    Interval Since Last Report: 27167 sec
    Crashes Since Last Report:           2
    Per-App Interval Since Last Report: 22482 sec
    Per-App Crashes Since Last Report:   2
    Date/Time:       2012-06-13 12:38:57.741 +0100
    OS Version:      Mac OS X 10.5.8 (9L31a)
    Report Version:  6
    Anonymous UUID: 934B74CE-A232-4279-83E3-64E67008480C
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    Crashed Thread:  0

    I can confirm that this is a user preference problem, as there is no problem on a newly created user account. However, deleting the 'obvious' preference files from ~/Library/Preferences (Adobe and Photoshop prefs and plists) has had no effect.
    I have moved ALL preference files from ~/Library/Preferences, restarted and relaunched Photoshop. This has resolved the original Photoshop issue. I now have to reapply all of the other user preferences for all other applications/devices. (Resolving the original issue has probably created more work, but at least we can use Photoshop!)
    It would be nice to hear if anyone has any idea which preference file may of caused the issue.
    Thanks.

  • Project Calendar Meta Data - How to identify the calendar and calendar properties via report builder 3.0

    Hi
    I am trying to write a report (SQL Server 2012 Report Builder 3.0) that will project a list of Projects and the Project Calendar they are using. I thought this field would be visible in the default EpmProject_UserView - I've been through other views and
    cannot see where this field is found.
    Related to this query - I need to identify the defulat calendar working hours per project but again there is no obvious meta data field where this can be identified.
    Currently the only option I do have is to manually check via MS Project App (2013)....

    Hi Brendan,
    Project server reporting database doesn't contain the calendar info. The only supported way to use the PSI to read the calendar info from Published database.
    See this
    reply from Amit.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • LR5: Export video files doesn't write meta data

    When I export video files (e.g. MP4) from LR5, no meta data is written to the files when I expect at least the year and title to be written. 
    Files like mp4, m4v and mov all have well documented meta data fields.  Why doesn't LR support this?

    LR's support for video is incomplete.  Please see and vote on this topic in the official feedback forum:
    Lightroom: LR4 Beta: Metadata applied to videos in Lightroom isn't available in other applications

  • Problem entering meta-date LR 3

    I'm having a problem entering meta-data in LR3. As I finish typing in one field and then tab to the next and begin typing in that field LR will start doing something else, presumably saving the meta-data changes to the XMP file. In doing this, the meta-data fields disappear and subsequently, whatever I am in the middle of typing becomes keyboard commands that alter the images rather than meta-data text as intended.
    In LR 2 I had this same problem, but found that if I turned off the Auto-Save feature in the catalog's preferences the problem went away and I could then enter meta-data to my heart's content without interruption.
    However, in LR 3, turning off the Auto-Save has had no affect and I am back to not being able to enter meta-data for an image or group of images without a constant interruption. Then I have to hit undo a bunch of times to get rid of changes I've inadvertently made to the images while trying to type in the description field.
    Frustrating and time consuming. Has anyone else run across this?

    It's so since Lightroom 1. And yes, turning off auto-save xmp, seems to improve things quite a bit, but I still ran into it from time to time even in Lightroom 2.
    This usually happens when I have a lot of images selected (is Lightroom reading all their metadata and populating the fields?) and start typing soon. If I wait until Lightroom reads all the metadata into the panels and "calms down", I almost surely can avoid "typing becoming keyboard commands".

  • Images (w/correct meta data) are in catalog and on disk, but LR 5.7 considers them new on Import

    For reasons explained below, I want to try to re-import all my images into LR and hope that none/few are in fact considered new and are imported.  Yet, for some folders, LR is apparently unable to detect that my source images are already in the catalog, and are on disk, and that the source file meta data matches what LR knows about the images.  When I click an image in LR and Show in Finder, I do see the imported image on disk.  I can edit the image in the Develop module.  So, it seems good, but all is not well.   Sorry for the long post here, but I wanted to provide as much info as I could, as I am really seeking your help, which I'd very much appreciate.
    Here are some screen shots that illustrate the problem:
    Finder contents of the original images
    LR folder hierarchy
    an image as seen in LR
    Finder content of external LR copy of images
    import showing 10 "new" photos
    The original images ... (I'm not sure why the file date is April 2001 but the actual image date is January 2011; I may have just used the wrong date on the folder name?)
    The LR folder hierarchy ...
    An image as seen in LR ...
    The external folder containing the images in the LR library
    But on import of the original source folder, LR sees 10 "new" photos ...
    I tried "Synchronize Folder ..." on this particular folder, and it simply hangs half-way through as seen in the screen shot below.   IS THIS AN LR BUG?   This is really odd, since "Synchronize Folder ..." on the top-level folder completes quickly.
    I have a spreadsheet of of the EXIF data for the original files and those created by LR.  (I extracted this info using the excellent and free pyExifToolGui graphical frontend for the command line tool ExifTool by Phil Harvey.)   Almost all of the Exif data is the same, but LR has added some additional info to the files after import, including (of course) keywords.  However, I would not have expected the differences I found to enter into the duplicate detection scheme.  (I didn't see a way to attach the spreadsheet to this posting as it's not an "image".)
    I'm running LR 5.7 on a 27" iMac with Yosemite 10.10.2, having used LR since LR2.  I have all my original images (.JPEGs and RAWs of various flavors) on my internal drive on the Mac.   To me this is like saving all my memory cards and never re-using them.   Fortunately, these files are backed up several ways.   I import these images (copying RAWs as DNG) into LR with a renaming scheme that includes the import number, original file creation date and original file name.   There should be one LR folder for each original source file folder, with the identical folder name (usually a place and date).  I store the LR catalog and imported images on an external drive.  Amazingly and unfortunately my external drive failed as did it's twin, same make/size drive that I used as a backup with Carbon Copy Cloner.   I used Data Rescue 4 to recover to a new disk what I thought was almost all of the files on the external drive.
    So, I thought all would be well, but, when I tried "Synchronize Folder" using the top-level folder of my catalog, the dialog box appeared saying there were over 1000 "New" photos that had not been imported.  This made be suspicious that I had failed to recover everything.   But actually things are much worse than I thought..   I have these counts of images:
    80,0061 files in 217 folders for my original source files (some of these may be (temporary?) copies that I actually don't want to import into LR)
    51,780 files in 187 folders on my external drive containing the LR photo library
    49,254 images in the top-level folder in the LR catalog (why different from the external file count?)
    35,332 images found during import of the top-level folder containing original images
    22,560 images found as "new" by LR during import
    1,074 "new" images reported by Synchronize Folder ... on the top-level folder in the catalog; different from import count
    Clearly things are badly out of sync.   I'd like to be sure I have all my images in LR, but none duplicated.   Thus, I want to try to import the entire library and have LR tell me which photos are new.  I have over 200 folders in LR.  I am now proceeding to try importing each folder, one at a time, to try to reconcile the differences and import the truly missing images.  This will be painful.  And it may not be enough to fully resolve the above discrepancies.
    Does anyone have any ideas or suggestions?  I'd really appreciate your help!
    Ken

    Thanks for being on the case, dj!   As you'll see below, YOU WERE RIGHT!      But I am confused.
        1. Does the same problem exist if you try to import (not synchronize) from that folder? In other words, does import improperly think these are not duplic
    YES.  Import improperly thinks they are NOT duplicates, but they are in fact the same image (but apparently not the EXACT SAME bytes on disk!)
        2. According to the documentation, a photo is considered a duplicate "if it has the same, original filename; the same Exif capture date and time; and the same file size."
    This is my understanding too.
        3. Can you manually confirm that, for an example photo, that by examining the photo in Lightroom and the photo you are trying to synchronize/import, that these three items are identical?
    NO, I CAN'T!  The ORIGINAL file name (in the source folder) is the SAME as it was when I first imported that folder.  That name is used as part of the renaming process using a custom template. However, the file SIZES are different.    Here is the Finder Get Info for both files.  Initially, they appeared to be the same SIZE, 253KB, looking at the summary. But, if you look at the exact byte count, however, the file sizes are DIFFERENT: 252,632 for the original file and 2252,883 for the already-imported file:
    This difference alone is enough to indicate why LR does not consider the file a duplicate.
    Furthermore, there IS one small difference in the EXIF data regarding dates ... the DateTimeOriginal:
                                                                                                     CreateDate              DateTimeDigitized                    DateTimeOriginal              FileModifyDate                              ModifyDate
    ORIGINAL name: P5110178.JPG                                     2001:05:11 15:27:18    2001:05:11 15:27:18-07:00        2001:01:17 11:29:00        2011:01:17 11:29:00-07:00       2005:04:24 14:41:05  
    After LR rename:  KRJ_0002_010511_P5110178.JPG    2001:05:11 15:27:18    2001:05:11 15:27:18-07:00        2001:05:11 15:27:18        2011:01:17 11:29:02-07:00       2005:04:24 14:41:05
    So ... now I see TWO reasons why LR doesn't consider these duplicates.   Though the file NAME is the same (as original), the file sizes ARE slightly different.  The EXIF "DateTimeOriginal" is DIFFERENT.   Therefore, LR considers them NOT duplicates.
         4a. With regards to the screen captures of your images and operating system folder, I do not see that the filename is the same; I see the file names are different. Is that because you renamed the photos in Lightroom (either during import or afterwards)?
    I renamed the file on import using a custom template ...
            4b. Can you show a screen capture of this image that shows the original file name in the Lightroom metadata panel (it appears when the dropdown is set to EXIF and IPTC)?
    SO ....
    The METADATA shown by LR does NOT include the ORIGINAL file name (but I think I have seen it displayed for other files?).  The File SIZE in the LR metadata panel (246.96 KB) is different from what Finder reports (254 KB).  There are three "date" fields in the LR metadata, and five that I've extracted from the EXIF data.   I'm not sure which EXIF date corresponds to the "Data Time" shown in the LR metadata.
    I don't understand how these differences arose.   I did not touch the original file outside LR.   LR is the only program that touches the file it has copied to my external drive during import.  (though it was RECOVERED from a failed disk by Data Rescue 4),
    NOW ...
    I understand WHY LR considers the files different (but not how they came to be so).  The question now is WHAT DO I DO ABOUT IT?   Is there any tool I can use to adjust the original (or imported) file's SIZE and EXIF data to match the file LR has?  Any way to override or change how LR does duplicate detection?
    Thanks so very much, dj.   Any ideas on how to get LR to ignore these (minor) differences would be hugely helpful.

  • Can No Longer Edit Song Meta Data In Latest iTunes 11.1???

    I just discovered that since the update to version 11.1 I can no longer manually edit the meta data by using the Show info function, all options are greyed out. For instance I can no longer adjust the volume level on a song nor can I edit the fields for song title and artist tec. There is also no longer any tab for album art when using the Show Info function on a song that has no album cover art. On songs that already have an album cover there will be an album art tab but the options there are all greyed out so I can not change the album cover art if I wanted too. This really *****, I can no longer edit album cover art for songs that have another cover already and I can not add any cover picture at all for songs that have no cover art (unless I manage to get the cover from the iTunes store but that is very often not successfull).
    Another bug I found is that I can no longer add any video file to my playlists.
    So this new update really ***** for me and have ruined my itunes experience.
    Do anyone else in here have the same problem?
    I really hope Apple will fix these bugs as soon as possible!

    I think I finally found a solution to this problem. It appears that for some reason, some songs you download will maintain write protection that the original owner had set on his/hers computer. In my case for this Ellie Goulding album that I had problem with, it turned out my friend who gave it to me had some of the songs stored on his iPad and that caused the files to become write protected it seems, and this write protection was transfered over to my PC. To solve this issue, everytime you encounter a song in iTunes that you can not edit just right click it and select Show/View In Explorer, that will take you to the storage location of the file in question. Now right click the song and select Properties and see if it is write protected, if it is then just uncheck that option and click ok. Now you should be able to edit the meta data for that song again. So it appears this is not a bug in iTunes but rather a write protection issue.

  • Should the web page address be included in the file name in the meta data dialog box?

    In the page properties > meta data > below is a field with the label file name: (the the area to type in the field), after the field, it is labeled .html.
    I have 2 questions here.
    1. If I type in http//:www (my page url), do I include .html at the end? I didn't know if this is automatically added because it is off to the side of the field?
    2. If I type in the entire URL address: http//:www (etc, etc).html,    after closing the page properties dialog box, I make it a habit to double check my work. What happens is the http//:www.xxx changes to (htttpwww.xxx). It drops the //: on the URL.
    So would it be better to just type in www.xxx (without the http//:www.xxx)
    and do you type in the .html at the end?
    I am assuming this will help with SEO page ranking or at least makes it easier for the search engines to crawl your site??
    I hope this makes sense.
    Advise would be very helpful.
    Ben

    You are absolutely correct with the URL Ben. Taking your above example, you just need to type in "Services" in the file name and the webpage will be exported as services.html and the URl will be  www.xyz.com/services.html.
    All the webpages (be it parent page or child page) gets physically saved at the root directory of your website on the server (where your website resides).
    This name is just the name of the file using which it is physically stored and called from the server. It does not help search Engines to crawl deeper inside the website.
    As I explained, "name which you wants the .html file to be stored with" here means the name of the physical file which is getting saved on the server.
    Most users leave the file name same as Page name. If you have it different from page name then this will be the workflow :
    Page Name : About
    File Name : test
    domain : www.mysite.com
    Now if you are  using a Menu Widget, it will list "About" in the Menu. And when end user will click on "About" then it will call the file named "test.html" from the server location (where all the files of your website are stored).
    And it will open a page with address "www.mysite.com/test.html"
    Hope I am able to explain the concept of File Name here. Please let us know if you have further queries on this.
    Regards,
    Sachin

  • Meta data and data asset management

    I am looking for suggestions and or products that can support managing our footage.
    Our goal is for an editor to search for a clip using the  data entered in the “description” (metadata) field of clips and sub-clips  that have been logged in various projects. 
    Here is the outline. 
    We record clips of high def footage and we import batches of these clips; sometimes a few dozen,  and sometimes thousands.  We bring these batches into a Premiere Pro CS5 project by importing the video clips from within a P2 card folder structure, or avchd, or dslr footage or ??/any format we collect...
    We log a description of the clips and of sub-clips, and then we edit a film from those elements.    After 1 project, or after 50 projects, we have all the detailed description (metadata) we've entered about each clip and sub-clip captured, and this data lives within the CS5 project. We can only search it from within the original project.
    If we start a new project and we need to look back at footage from old projects, we can only search for footage by going into that old project .  We would like to have the metadata write back to our archive (or a copy of the footage in a new archive.)  If the archive and the clips and sub-clips had the metadata from the project we could search and find assets.  Among the obstacles is that sub-clips share the name of the clip it comes from so there is no “place” for it’s metadata.  We've tried using Project Manager>Collect Files & Copy to New Location but the subclip .mxf files created through this process are copies of the source clip despite being labeded "random.subclip001".   When imported, this "random.subclip001" file shows up in Premiere as the original "random" source clip name.
    We are looking at a small library – but it’s big for us.  About 20 terabytes…  A typical client might have 4-6 terabytes of assets we would like to look through for a shot, or an interview…  Has anyone made inroads on this?
    Many thanks for any thoughts and ideas.
    Sincerely,
    Rees Candee

    Hi Abhilash,
    Meta Data- 
    In BW the meta-data contain data about data.
    It is like having information about the information.
    You have the business related meta-data for example the description used in your reports or the technical related meta-data for example the rules used in the transformation or the extraction. These are the two types of meta-data you have in the metadata repository that you manage with the metadata manager
    http://help.sap.com/saphelp_nw04/helpdata/en/80/1a6197e07211d2acb80000e829fbfe/content.htm
    Meta Data Repository
    It is the repository which Manages Meta Data, for example like when talking about an ODS in the metadatarepository you can read about which characteristics, key figures, infosource and updaterules are used in it. And creation date, owner etc.
    Thanks,
    Sudhakar
    saying thanks in sdn == assigning points

  • Import Meta Data from CSV - Export Meta Data to CSV

    Ability to import meta data into selected images from CSV file containing a number of fields, one of which is file name. The other fields would be selected tags to import.
    Import logic would be, Where file name in column 1 matches current selected filename, then take following fields 2, 3, etc and import into Bridge.
    Export selected meta data from selected files to CSV to form reverse of above to allow edit of data in Excel etc.
    Further enchancement on import would be to allow instead of just filename, but date/time range matching.
    Logic would be, Where date/time in column 1 is within X hours of selected
    image creation date/time then import following fields into image meta data.
    Useful for example if you already have a GPS tracklog in CSV and want to try and update images with GPS. Assuming camera clock approx same as GPS clock.

    The issue was within the .csv file.  There were duplicate records that were attempting to load as the ID value.  After deleting the duplicate records, the transformation file ran successfully.
    Debbie

  • Distributed Document Capture and date fields

    Greetings!
    We are using Oracle Distributed Document Capture and Universal Content Management as repository, it works fine. However we defined a custom metadata field with data type "date" in UCM and we defined a scan profile with its asssociated date field and the problem that we have is when we are using the distributed document capture client and the user selects a date from the calendar and send the document, the commit process fails with the following error message :
    The field 'xxx' does not contain a valid date.
    However If the user types the date field as "29/01/2009 00:00" the commit process works fine and the document is stored on UCM.
    My question is how to enable the calendar on the Distributed Document Capture client in order to enter a valid date with format "dd/m/yyyy hh:mm"
    Thanks!

    Thanks for your answer I set the property "Automatically assign a Content ID on check in" Should I specify the minor revision label and the major revision label?.
    Because I set just the "Automatically assign a Content ID on check in" and now I got the following when I am scanning documents:
    ***Error*** Failed to process batch 01354425_01354446. Error Number: 40011, Error: Failed to commit batch (with delete). Commit Profile - ucm: Document file already exists. Commit is configured to abort. Document File: \\svrdocumentos_ejc_ejercito_mil_co\batch\00J\0000000D\0000000D_1.TIF
    The good news is the previous error "Error Number: 40008" is solved
    I really appreciate yor help.
    Thanks.

Maybe you are looking for

  • Blue screen while trying to open the applications folder?

    While using safari, or when clicking the Applications folder, my MacBook will turn completely blue and then go to the desktop as if it were just restarted. I tried installing fire fox to see if it was a safari thing but it still does it. I've called

  • Satellite A300 - fan starts running every 2 mins for about 30 secs

    Hi I wanted to know if its normal that the fan starts running on my Satellite A300-1hv every 2 mins for about 30 secs? This is happening continuously. I am on vista maximum performance power. Help will be really appreciated. Thanks.

  • Windows 7 Thinkvanta​ge Access Connection​s 5.41 does not stick to printer default

    hi i have installed windows 7 on 3 lenovo laptops (x60s, x61, t500) and installed AC 5.41 but and have configured them with 5 profiles each with their own default printer preferences but for some reason when i toggle from 1 profile to another the def

  • PS v14.2.1 - Can't sync settings from cloud

    I recently had to do a clean install of Windows 7 (x64) and reinstall all of my CC apps. I'm using PS version 14.2.1 which is the same version I was using prior to the Windows install, and for which I had synced many settings). For some reason there'

  • CRIO motor control using AMC Drive

    Hi I am trying to setup a simple DC motor control system with cRIO-9081, NI 9401 and AMC PWM servo drive 12A8.  Can someone please tell me if this AMC drive is compatible with my other NI products?  Do I need anything else to setup a simple closed lo