<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:clearspace="http://www.jivesoftware.com/xmlns/jive/rss" version="2.0">
  <channel>
    <title>Adobe Community: Message List - Creating a list of missing files in Organizer ?</title>
    <link>https://forums.adobe.com/community/photoshop_elements?view=discussions</link>
    <description>Most recent forum messages</description>
    <language>en</language>
    <pubDate>Tue, 11 Sep 2012 08:08:22 GMT</pubDate>
    <generator>Jive Engage 7.0.0.1  (http://jivesoftware.com/products/)</generator>
    <dc:date>2012-09-11T08:08:22Z</dc:date>
    <dc:language>en</dc:language>
    <item>
      <title>Re: Creating a list of missing files in Organizer ?</title>
      <link>https://forums.adobe.com/message/4689234?tstart=0#4689234</link>
      <description>&lt;!-- [DocumentBodyStart:12f9ae39-c864-4259-af05-4f308643b38c] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Ken,&lt;/p&gt;&lt;p&gt;Many thanks and congrats for the excellent job!&lt;/p&gt;&lt;p&gt;It is obvious that few users will use those queries but we have learnt many things from that exercice.&lt;/p&gt;&lt;p&gt;- It would be so easy for Adobe to provide a way to export the list shown in the reconnect dialog as a text file&lt;/p&gt;&lt;p&gt;- We know where the info is stored (thumbs.5.cache) which is a sqlite database&lt;/p&gt;&lt;p&gt;- We already knew that that cache file could be optimized in the 'optimize' process and re-created automatically if deleted.&lt;/p&gt;&lt;p&gt;- If we compare an optimized version of a catalog with missing files and the re-created catalog, of course the size and date created of the original files are lost. The status "2" for missing files has been confirmed. "0" is for normal files, "1" is not known.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;We'll see if there is some change in the next PSE version. &lt;/p&gt;&lt;p&gt;Now, before deleting the cache, I'll make a copy not to lose the original data of the missing files...&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:12f9ae39-c864-4259-af05-4f308643b38c] --&gt;&lt;img src='/beacon?t=1415885873764' /&gt;</description>
      <pubDate>Tue, 11 Sep 2012 08:08:22 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/4689234?tstart=0#4689234</guid>
      <dc:date>2012-09-11T08:08:22Z</dc:date>
      <clearspace:dateToText>2 years 2 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Creating a list of missing files in Organizer ?</title>
      <link>https://forums.adobe.com/message/4689229?tstart=0#4689229</link>
      <description>&lt;!-- [DocumentBodyStart:8329b46e-17b7-4e7a-ae77-b6e2940f276a] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I've done some refinements -- the data extraction and insertion take a long time to run and include &lt;em&gt;beaucoup&lt;/em&gt; data that we don't need.&amp;nbsp; Using a small subset of the data speeds things up noticeably.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Copy this SQL query into a text editor:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;CREATE TABLE [temp_thumbnail_info] (&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;[media_id] integer NOT NULL&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;)&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;GO&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;and save the file as &lt;/p&gt;&lt;p&gt;temp_thumbnail_info_create.sql&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Copy this SQL query into a text editor:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;INSERT INTO [temp_thumbnail_info] ([media_id])&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;SELECT media_id&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;FROM thumbnail_info_table&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;where status = "2"&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;GO&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;and save the file as&lt;/p&gt;&lt;p&gt;temp_thumbnail_info_t5c_insert.sql&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Copy this SQL query into a text editor:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;SELECT full_filepath&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;FROM media_table&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;WHERE id IN (&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;&amp;nbsp; SELECT media_id&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;&amp;nbsp; FROM temp_thumbnail_info&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;&amp;nbsp; )&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;ORDER BY full_filepath&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;and save the file as&lt;/p&gt;&lt;p&gt;missing_files.sql&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Then, the optimized procedure goes like this:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Connect to thumb.5.cache.&lt;/li&gt;&lt;li&gt;Run the "temp_thumbnail_info_create.sql" script.&lt;/li&gt;&lt;li&gt;Run the "temp_thumbnail_info_t5c_insert.sql" script.&lt;/li&gt;&lt;li&gt;Right-click on temp_thumbnail_info, and select "Script As...Data (Inserts)...File, saving it to that same convenient directory as&lt;br/&gt;temp_thumbnail_info_data.sql&lt;br/&gt;(In the Export Options dialog, simply click "OK".)&lt;/li&gt;&lt;li&gt;Disconnect from thumb.5.cache.&lt;/li&gt;&lt;li&gt;Close any open SQL queries.&lt;/li&gt;&lt;li&gt;Connect to catalog.pse10db.&lt;/li&gt;&lt;li&gt;Run the "temp_thumbnail_info_create.sql" script.&lt;/li&gt;&lt;li&gt;Run the "temp_thumbnail_info_data.sql" script.&lt;/li&gt;&lt;li&gt;Run the "missing_files.sql" script.&lt;/li&gt;&lt;/ol&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Save the result set as before in a format of your choosing.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Ken&lt;/strong&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Message was edited by: photodrawken to correct table name.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:8329b46e-17b7-4e7a-ae77-b6e2940f276a] --&gt;</description>
      <pubDate>Tue, 11 Sep 2012 07:34:19 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/4689229?tstart=0#4689229</guid>
      <dc:date>2012-09-11T07:34:19Z</dc:date>
      <clearspace:dateToText>2 years 2 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Creating a list of missing files in Organizer ?</title>
      <link>https://forums.adobe.com/message/4689032?tstart=0#4689032</link>
      <description>&lt;!-- [DocumentBodyStart:f46aa02b-3e2d-4bb8-83ca-a59964a4e99e] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Here we go, using Database.Net:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Connect to thumb.5.cache.&lt;/li&gt;&lt;li&gt;Right-click on thumbnail_info_table, and select "Script As...Create".&lt;/li&gt;&lt;li&gt;Use Edit...Save As to save it to any convenient directory as&lt;br/&gt;thumbnail_info_table_create.sql&lt;/li&gt;&lt;li&gt;Righ-click on thumbnail_info_table, and select "Script As...Data (Inserts)...File, saving it to that same convenient directory as&lt;br/&gt;thumbnail_info_table_data.sql&lt;br/&gt;(In the Export Options dialog, simply click "OK".)&lt;/li&gt;&lt;li&gt;Disconnect from thumb.5.cache.&lt;/li&gt;&lt;li&gt;Close any open queries.&lt;/li&gt;&lt;li&gt;Connect to catalog.pse10db.&lt;/li&gt;&lt;li&gt;Use Edit...Open and open that&lt;br/&gt;thumbnail_info_table_create.sql&lt;br/&gt;file.&lt;/li&gt;&lt;li&gt;That query will open as a new query window -- click on the "Execute" button.&lt;/li&gt;&lt;li&gt;Repeat steps 8 and 9 for the &lt;br/&gt;thumbnail_info_table_data.sql&lt;br/&gt;file.&lt;/li&gt;&lt;li&gt;Click on the "New Query" button, and paste this query into the editing window:&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: #0000ff;"&gt;SELECT full_filepath&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM media_table&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WHERE id IN (&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SELECT media_id&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM thumbnail_info_table&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WHERE STATUS = "2"&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ORDER BY full_filepath&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #000000;"&gt;12.&amp;nbsp;&amp;nbsp;&amp;nbsp; Click on the "Execute" button.&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;You can click the "Export" button to save the results to a file in the format of your choice.&amp;nbsp; Here, I've used the "HTML" option:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;!--[CodeBlockStart:37c4f449-69fb-4641-a53b-f0e30ad64409]--&gt;&lt;span&gt;&lt;table bgcolor="#EEEEEE" border="0" cellpadding="3" cellspacing="1" width="100%"&gt;&lt;tbody&gt;&lt;tr bgcolor="#F0F0F0"&gt;&lt;td style="border:0px solid black;background-color:#EEEEEE;background-color:#F0F0F0;"&gt;full_filepath&lt;/td&gt;&lt;/tr&gt;&lt;tr bgcolor="#ffffff"&gt;&lt;td style="border:0px solid black;background-color:#EEEEEE;background-color:#ffffff;"&gt;/Pics/nnpcs/000700AB.jpg&lt;/td&gt;&lt;/tr&gt;&lt;tr bgcolor="#ffffff"&gt;&lt;td style="border:0px solid black;background-color:#EEEEEE;background-color:#ffffff;"&gt;/Test/000700A2.jpg&lt;/td&gt;&lt;/tr&gt;&lt;tr bgcolor="#ffffff"&gt;&lt;td style="border:0px solid black;background-color:#EEEEEE;background-color:#ffffff;"&gt;/Test/000700A5.jpg&lt;/td&gt;&lt;/tr&gt;&lt;tr bgcolor="#ffffff"&gt;&lt;td style="border:0px solid black;background-color:#EEEEEE;background-color:#ffffff;"&gt;/Test/000700A8.jpg&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/span&gt;&lt;!--[CodeBlockEnd:37c4f449-69fb-4641-a53b-f0e30ad64409]--&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Ken&lt;/strong&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:f46aa02b-3e2d-4bb8-83ca-a59964a4e99e] --&gt;</description>
      <pubDate>Tue, 11 Sep 2012 04:54:35 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/4689032?tstart=0#4689032</guid>
      <dc:date>2012-09-11T04:54:35Z</dc:date>
      <clearspace:dateToText>2 years 2 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Creating a list of missing files in Organizer ?</title>
      <link>https://forums.adobe.com/message/4688951?tstart=0#4688951</link>
      <description>&lt;!-- [DocumentBodyStart:9f11c9c8-3167-46f2-acb8-0014bfa7808b] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Michel,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;OK, I got it working.&amp;nbsp; I didn't see the ID links because I was lazy and only looking at the Top 500 rows of the thumbnail_info_table.&amp;nbsp; When I looked at all the rows, sure enough, there were IDs matching the IDs in the media_table.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I'll post the procedure in a follow-up message, but this is a heads up:&amp;nbsp; you're finally going to have to break down and install Database.Net:&lt;/p&gt;&lt;p&gt;&lt;a class="jive-link-external-small" href="http://fishcodelib.com/Database.htm" rel="nofollow"&gt;http://fishcodelib.com/Database.htm&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The procedure is a 4-step process:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Connect to the thumb.5.cache database and generate a table creation script for the thumbnail_info_table, saving that script as a SQL text file.&lt;/li&gt;&lt;li&gt;Still connected to thumb.5.cache database, generate a data insertion script for all the data in the thumbnail_info_table, saving that script as another SQL text file.&lt;/li&gt;&lt;li&gt;Connect to the catalog.pse10db database and run those two SQL scripts, in order, to create the thumbnail_info_table and populate it with the data.&lt;/li&gt;&lt;li&gt;Run a SQL query to get a list of the fully-qualified filenames of the missing files.&lt;/li&gt;&lt;/ol&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;You were right that the thumbnail_info_table.status value of "2" denotes a missing file.&amp;nbsp; I tested by importing 4 images into PSE, closing PSE and deleting those 4 images.&amp;nbsp; I opened PSE, and used "Reconnect...All Missing Files".&amp;nbsp; When that finished, those 4 images were marked as missing.&amp;nbsp; When I finished step#4, I got precisely those 4 images listed.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Ken&lt;/strong&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:9f11c9c8-3167-46f2-acb8-0014bfa7808b] --&gt;</description>
      <pubDate>Tue, 11 Sep 2012 04:21:08 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/4688951?tstart=0#4688951</guid>
      <dc:date>2012-09-11T04:21:08Z</dc:date>
      <clearspace:dateToText>2 years 2 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Creating a list of missing files in Organizer ?</title>
      <link>https://forums.adobe.com/message/4687903?tstart=0#4687903</link>
      <description>&lt;!-- [DocumentBodyStart:d010cfc2-d832-40ef-97d6-1a5e55dc5709] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Well, if it can be done, it would be a two-stage process:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Query the thumbs.5.cache database for the missing files, and save the results.&lt;/li&gt;&lt;li&gt;Open the catalog.pse10db database and create a SQL query using the results from #1 as parameters.&lt;/li&gt;&lt;/ol&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;However, I can't determine how the items in the thumbs.5.cache database are linked to items in the catalog.pse10db database:&amp;nbsp; the thumbs.5.cache.thumbnail_info_table.media_id values don't match anything I'm seeing in the catalog.pse10db.media_table.id values....&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Ken&lt;/strong&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:d010cfc2-d832-40ef-97d6-1a5e55dc5709] --&gt;</description>
      <pubDate>Mon, 10 Sep 2012 20:33:24 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/4687903?tstart=0#4687903</guid>
      <dc:date>2012-09-10T20:33:24Z</dc:date>
      <clearspace:dateToText>2 years 2 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Creating a list of missing files in Organizer ?</title>
      <link>https://forums.adobe.com/message/4687850?tstart=0#4687850</link>
      <description>&lt;!-- [DocumentBodyStart:cdfa2b3b-a354-4665-8334-212998ef616b] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Michel,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;That's a very interesting idea.&amp;nbsp; A SQL query would be quite easy to devise.&amp;nbsp; Give me a little time to create some missing files and I'll see what I can do....&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Ken&lt;/strong&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:cdfa2b3b-a354-4665-8334-212998ef616b] --&gt;</description>
      <pubDate>Mon, 10 Sep 2012 20:00:29 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/4687850?tstart=0#4687850</guid>
      <dc:date>2012-09-10T20:00:29Z</dc:date>
      <clearspace:dateToText>2 years 2 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Creating a list of missing files in Organizer ?</title>
      <link>https://forums.adobe.com/message/4687399?tstart=0#4687399</link>
      <description>&lt;!-- [DocumentBodyStart:9246b252-4d83-4895-805a-caabc29a7cbb] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;It is a pity the dialog of the 'reconnect missing files' can list the missing files in a small window, but there is no option to export the list with full paths as a text file.&lt;/p&gt;&lt;p&gt;Knowing that the list is saved somewhere (probably in the catalog folder) I have searched if I could find how the information about missing files is stored in the Organizer. Natural candidates like the catalog.psexxdb and thumbs.5.cache sqlite databases did not show anything showing they stored the information.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;So, I had a look at the thumbs.5.cache, which is interesting. It shows that two sizes of thumbnails are stored there, and that the criteria for matching are date taken and file size.&lt;/p&gt;&lt;p&gt;Now, I compared an optimized version of that file with a reconstructed one (I deleted the cache file).&lt;/p&gt;&lt;p&gt;Interestingly, you can see which media_id still have the matching criteria. I conclude that the other media_id are the missing files... &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;If Photodrawken is looking at this post :&lt;/p&gt;&lt;p&gt;Could you check this supposition and see if a sqlite query could extract the list of the missing media?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;It will be interesting to see if the next PSE version has a better handling of missing files... Seems that LR handles that problem much better.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Edit:&lt;/p&gt;&lt;p&gt;The 'status' field in the thumbnail_info_table of the thumbs.5.cache database seems to be set at '2' for missing files.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:9246b252-4d83-4895-805a-caabc29a7cbb] --&gt;</description>
      <pubDate>Mon, 10 Sep 2012 17:36:21 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/4687399?tstart=0#4687399</guid>
      <dc:date>2012-09-10T17:36:21Z</dc:date>
      <clearspace:dateToText>2 years 2 months ago</clearspace:dateToText>
      <clearspace:replyCount>6</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
  </channel>
</rss>

