<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Tips vid överföring av Collections in eReaders</title>
    <link>https://community.sony.ie/t5/ereaders/a-tip-transferring-collections-from-one-computer-to-another/m-p/545115#M1321</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oops, sorry. Here follows the post message in English.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is a tip on how to retrieve the collection to book relation when you move from one computer to another.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I recently switched computers from one that only had a &lt;STRONG&gt;C&lt;/STRONG&gt; drive to another that has both &lt;STRONG&gt;C&lt;/STRONG&gt; and &lt;STRONG&gt;D&lt;/STRONG&gt; drives. &lt;/P&gt;&lt;P&gt;The problem of how to restore the names of each collection as well as which book(s) belonged to the corresponding category arose.&lt;/P&gt;&lt;P&gt;I called the Swedish support, and they were not aware of the following, which makes it easier to rebuild your collections if you switch computers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you connect the PRS-T1 to the computer, you are able to browse the folders on it. Look for a file with the name &lt;STRONG&gt;books.db&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It became obvious that Sony is using &lt;STRONG&gt;SQLite &lt;/STRONG&gt;as database storage for the connection between the collections and the books contained in each collection as I opened the file &lt;STRONG&gt;books.db&lt;/STRONG&gt; in a text editor, and found the name &lt;STRONG&gt;SQLite &lt;/STRONG&gt;at the beginning of the binary file.&lt;/P&gt;&lt;P&gt;(The separator I use below is TAB, which expands to eight visible spaces in the command line tool output, but it uses the tab character between each column.) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Surf to the page &lt;A href="http://www.sqlite.com/download.html"&gt;http://www.sqlite.com/download.html&lt;/A&gt; and right-click to download the file &lt;STRONG&gt;sqlite-shell-win32-x86-3071401.zip&lt;/STRONG&gt; to a directory of your choice. Unzip this file, which only contains &lt;STRONG&gt;sqlite3.exe&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;In my case, I downloaded the zip file to D:\Download\SQLite.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Copy the file &lt;STRONG&gt;books.db&lt;/STRONG&gt; from the reader directory to the same directory that you downloaded and unzipped &lt;STRONG&gt;sqlite3.exe&lt;/STRONG&gt; to.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Start a command prompt at the directory you downloaded the SQLite to. My command prompt window is 80 characters wide, which makes the commands and output to wrap automatically to the following line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. Open the client connectivity tool to the database by the following command: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;D:\Download\SQLite&amp;gt;sqlite3.exe books.db&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;SQLite version 3.7.14.1 2012-10-04 19:37:12&lt;/P&gt;&lt;P&gt;Enter ".help" for instructions&lt;/P&gt;&lt;P&gt;Enter SQL statements terminated with a ";"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. Display the database schema:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sqlite&amp;gt; .tables&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;android_metadata&amp;nbsp; collection&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dic_histories&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; markups&lt;/P&gt;&lt;P&gt;annotation&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; collections&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; freehand&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; periodicals&lt;/P&gt;&lt;P&gt;bookmark&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; current_position&amp;nbsp; history&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; preference&lt;/P&gt;&lt;P&gt;books&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; deleted_markups&amp;nbsp;&amp;nbsp; layout_cache&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6. Display the columns available in the tables we are to use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sqlite&amp;gt; .schema collections&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;CREATE TABLE collections (_id INTEGER PRIMARY KEY AUTOINCREMENT,collection_id IN&lt;/P&gt;&lt;P&gt;TEGER,content_id INTEGER,added_order INTEGER);&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sqlite&amp;gt; .schema collection&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;CREATE TABLE collection (_id INTEGER PRIMARY KEY AUTOINCREMENT,title TEXT,kana_t&lt;/P&gt;&lt;P&gt;itle TEXT,source_id INTEGER,uuid TEXT);&lt;/P&gt;&lt;P&gt;CREATE TRIGGER collections_cleanup DELETE ON collection BEGIN DELETE FROM collec&lt;/P&gt;&lt;P&gt;tions WHERE collection_id = old._id;END;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sqlite&amp;gt; .schema books&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;CREATE TABLE books (_id INTEGER PRIMARY KEY AUTOINCREMENT,title TEXT,author TEXT&lt;/P&gt;&lt;P&gt;,kana_title TEXT,kana_author TEXT,title_key TEXT,author_key TEXT,source_id INTEG&lt;/P&gt;&lt;P&gt;ER,added_date INTEGER,modified_date INTEGER,reading_time INTEGER,purchased_date&lt;/P&gt;&lt;P&gt;INTEGER,file_path TEXT,file_name TEXT,file_size INTEGER,thumbnail TEXT,mime_type&lt;/P&gt;&lt;P&gt; TEXT,corrupted INTEGER,expiration_date INTEGER,prevent_delete INTEGER,sony_id T&lt;/P&gt;&lt;P&gt;EXT,periodical_name TEXT,kana_periodical_name TEXT,periodical_name_key TEXT,publ&lt;/P&gt;&lt;P&gt;ication_date INTEGER,conforms_to TEXT,description TEXT,logos TEXT);&lt;/P&gt;&lt;P&gt;CREATE TRIGGER books_cleanup DELETE ON books BEGIN DELETE FROM preference WHERE&lt;/P&gt;&lt;P&gt;content_id = old._id;DELETE FROM current_position WHERE content_id = old._id;DEL&lt;/P&gt;&lt;P&gt;ETE FROM layout_cache WHERE content_id = old._id;DELETE FROM history WHERE conte&lt;/P&gt;&lt;P&gt;nt_id = old._id;DELETE FROM bookmark WHERE content_id = old._id;DELETE FROM anno&lt;/P&gt;&lt;P&gt;tation WHERE content_id = old._id;DELETE FROM freehand WHERE content_id = old._i&lt;/P&gt;&lt;P&gt;d;DELETE FROM collections WHERE content_id = old._id;DELETE FROM deleted_markups&lt;/P&gt;&lt;P&gt; WHERE content_id = old._id;END;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7. From the output above, it is obvious which tables are to be used. Set the separator between each column by issuing the following command (type &lt;STRONG&gt;.separator "&lt;/STRONG&gt;, then press the tab key and type &lt;STRONG&gt;"&lt;/STRONG&gt; to finish the command):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sqlite&amp;gt; .separator "&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;8. Tell SQLite that you want the output to be saved to a file instead of displaying it to the standard output (in the command window):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sqlite&amp;gt; .output collections_books.txt&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;9. Type the following command to extract the collection name and the name of the book:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sqlite&amp;gt; select collection.title, books.title from collections inner join collect&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ion on collections.collection_id = collection._id inner join books on collection&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;s.content_id = books._id;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;10. Quit SQLite in the following manner:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sqlite&amp;gt; .exit&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now you should have a tab separated text file called "collection_books.txt".&lt;/P&gt;&lt;P&gt;The file can then be imported to e.g. Excel for easier overview.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just a tip! &lt;img class="lia-deferred-image lia-image-emoji" src="https://community.sony.ie/html/@3191CA7235A406D833094BA2DD1CF2FF/images/smilies/011.png" alt=":slight_smile:" title=":slight_smile:" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regard,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thomas J. Ekman&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: drDubbelklick&lt;/P&gt;&lt;P&gt;Just highlighted the word SQLite at the beginning&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 22 Nov 2012 14:49:20 GMT</pubDate>
    <dc:creator>drDubbelklick</dc:creator>
    <dc:date>2012-11-22T14:49:20Z</dc:date>
    <item>
      <title>A tip transferring collections from one computer to another</title>
      <link>https://community.sony.ie/t5/ereaders/a-tip-transferring-collections-from-one-computer-to-another/m-p/545113#M1319</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jag bytte nyligen dator från en som bara hade C: till en som både har C: och &lt;span class="lia-unicode-emoji" title=":anguished_face:"&gt;😧&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Problemet var då att få tillbaka alla kategorinamnen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Om man ansluter läsplattan till datorn, kan man browsa foldrarna tills man hittar en fil som heter books.db.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Det visar sig att Sony använder SQLite, så om man laddar ner kommandoradsprogrammet för SQLLite, kan man med en enkel SELECT-fråga få ut kategorierna, och sedan importera dem till Excel eller i ett annat format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bara ett tips! &lt;img class="lia-deferred-image lia-image-emoji" src="https://community.sony.ie/html/@3191CA7235A406D833094BA2DD1CF2FF/images/smilies/011.png" alt=":slight_smile:" title=":slight_smile:" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MVH&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: -Soup-&lt;/P&gt;&lt;P&gt;personal details removed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: drDubbelklick&lt;/P&gt;&lt;P&gt;Translated the title to English&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Nov 2012 19:48:38 GMT</pubDate>
      <guid>https://community.sony.ie/t5/ereaders/a-tip-transferring-collections-from-one-computer-to-another/m-p/545113#M1319</guid>
      <dc:creator>drDubbelklick</dc:creator>
      <dc:date>2012-11-24T19:48:38Z</dc:date>
    </item>
    <item>
      <title>Re: Tips vid överföring av Collections</title>
      <link>https://community.sony.ie/t5/ereaders/a-tip-transferring-collections-from-one-computer-to-another/m-p/545114#M1320</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thomas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Welcome to Sony Forum! Thank you for your post. Just a note that this is an English language forum and it's recommended you post in English so your tip is easier understood by the other users.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;-Soup-&lt;/P&gt;&lt;P&gt;Forum moderator&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Nov 2012 15:54:13 GMT</pubDate>
      <guid>https://community.sony.ie/t5/ereaders/a-tip-transferring-collections-from-one-computer-to-another/m-p/545114#M1320</guid>
      <dc:creator>-Soup-</dc:creator>
      <dc:date>2012-11-21T15:54:13Z</dc:date>
    </item>
    <item>
      <title>Tips vid överföring av Collections</title>
      <link>https://community.sony.ie/t5/ereaders/a-tip-transferring-collections-from-one-computer-to-another/m-p/545115#M1321</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oops, sorry. Here follows the post message in English.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is a tip on how to retrieve the collection to book relation when you move from one computer to another.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I recently switched computers from one that only had a &lt;STRONG&gt;C&lt;/STRONG&gt; drive to another that has both &lt;STRONG&gt;C&lt;/STRONG&gt; and &lt;STRONG&gt;D&lt;/STRONG&gt; drives. &lt;/P&gt;&lt;P&gt;The problem of how to restore the names of each collection as well as which book(s) belonged to the corresponding category arose.&lt;/P&gt;&lt;P&gt;I called the Swedish support, and they were not aware of the following, which makes it easier to rebuild your collections if you switch computers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you connect the PRS-T1 to the computer, you are able to browse the folders on it. Look for a file with the name &lt;STRONG&gt;books.db&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It became obvious that Sony is using &lt;STRONG&gt;SQLite &lt;/STRONG&gt;as database storage for the connection between the collections and the books contained in each collection as I opened the file &lt;STRONG&gt;books.db&lt;/STRONG&gt; in a text editor, and found the name &lt;STRONG&gt;SQLite &lt;/STRONG&gt;at the beginning of the binary file.&lt;/P&gt;&lt;P&gt;(The separator I use below is TAB, which expands to eight visible spaces in the command line tool output, but it uses the tab character between each column.) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Surf to the page &lt;A href="http://www.sqlite.com/download.html"&gt;http://www.sqlite.com/download.html&lt;/A&gt; and right-click to download the file &lt;STRONG&gt;sqlite-shell-win32-x86-3071401.zip&lt;/STRONG&gt; to a directory of your choice. Unzip this file, which only contains &lt;STRONG&gt;sqlite3.exe&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;In my case, I downloaded the zip file to D:\Download\SQLite.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Copy the file &lt;STRONG&gt;books.db&lt;/STRONG&gt; from the reader directory to the same directory that you downloaded and unzipped &lt;STRONG&gt;sqlite3.exe&lt;/STRONG&gt; to.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Start a command prompt at the directory you downloaded the SQLite to. My command prompt window is 80 characters wide, which makes the commands and output to wrap automatically to the following line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. Open the client connectivity tool to the database by the following command: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;D:\Download\SQLite&amp;gt;sqlite3.exe books.db&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;SQLite version 3.7.14.1 2012-10-04 19:37:12&lt;/P&gt;&lt;P&gt;Enter ".help" for instructions&lt;/P&gt;&lt;P&gt;Enter SQL statements terminated with a ";"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. Display the database schema:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sqlite&amp;gt; .tables&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;android_metadata&amp;nbsp; collection&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dic_histories&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; markups&lt;/P&gt;&lt;P&gt;annotation&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; collections&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; freehand&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; periodicals&lt;/P&gt;&lt;P&gt;bookmark&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; current_position&amp;nbsp; history&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; preference&lt;/P&gt;&lt;P&gt;books&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; deleted_markups&amp;nbsp;&amp;nbsp; layout_cache&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6. Display the columns available in the tables we are to use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sqlite&amp;gt; .schema collections&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;CREATE TABLE collections (_id INTEGER PRIMARY KEY AUTOINCREMENT,collection_id IN&lt;/P&gt;&lt;P&gt;TEGER,content_id INTEGER,added_order INTEGER);&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sqlite&amp;gt; .schema collection&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;CREATE TABLE collection (_id INTEGER PRIMARY KEY AUTOINCREMENT,title TEXT,kana_t&lt;/P&gt;&lt;P&gt;itle TEXT,source_id INTEGER,uuid TEXT);&lt;/P&gt;&lt;P&gt;CREATE TRIGGER collections_cleanup DELETE ON collection BEGIN DELETE FROM collec&lt;/P&gt;&lt;P&gt;tions WHERE collection_id = old._id;END;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sqlite&amp;gt; .schema books&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;CREATE TABLE books (_id INTEGER PRIMARY KEY AUTOINCREMENT,title TEXT,author TEXT&lt;/P&gt;&lt;P&gt;,kana_title TEXT,kana_author TEXT,title_key TEXT,author_key TEXT,source_id INTEG&lt;/P&gt;&lt;P&gt;ER,added_date INTEGER,modified_date INTEGER,reading_time INTEGER,purchased_date&lt;/P&gt;&lt;P&gt;INTEGER,file_path TEXT,file_name TEXT,file_size INTEGER,thumbnail TEXT,mime_type&lt;/P&gt;&lt;P&gt; TEXT,corrupted INTEGER,expiration_date INTEGER,prevent_delete INTEGER,sony_id T&lt;/P&gt;&lt;P&gt;EXT,periodical_name TEXT,kana_periodical_name TEXT,periodical_name_key TEXT,publ&lt;/P&gt;&lt;P&gt;ication_date INTEGER,conforms_to TEXT,description TEXT,logos TEXT);&lt;/P&gt;&lt;P&gt;CREATE TRIGGER books_cleanup DELETE ON books BEGIN DELETE FROM preference WHERE&lt;/P&gt;&lt;P&gt;content_id = old._id;DELETE FROM current_position WHERE content_id = old._id;DEL&lt;/P&gt;&lt;P&gt;ETE FROM layout_cache WHERE content_id = old._id;DELETE FROM history WHERE conte&lt;/P&gt;&lt;P&gt;nt_id = old._id;DELETE FROM bookmark WHERE content_id = old._id;DELETE FROM anno&lt;/P&gt;&lt;P&gt;tation WHERE content_id = old._id;DELETE FROM freehand WHERE content_id = old._i&lt;/P&gt;&lt;P&gt;d;DELETE FROM collections WHERE content_id = old._id;DELETE FROM deleted_markups&lt;/P&gt;&lt;P&gt; WHERE content_id = old._id;END;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7. From the output above, it is obvious which tables are to be used. Set the separator between each column by issuing the following command (type &lt;STRONG&gt;.separator "&lt;/STRONG&gt;, then press the tab key and type &lt;STRONG&gt;"&lt;/STRONG&gt; to finish the command):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sqlite&amp;gt; .separator "&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;8. Tell SQLite that you want the output to be saved to a file instead of displaying it to the standard output (in the command window):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sqlite&amp;gt; .output collections_books.txt&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;9. Type the following command to extract the collection name and the name of the book:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sqlite&amp;gt; select collection.title, books.title from collections inner join collect&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ion on collections.collection_id = collection._id inner join books on collection&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;s.content_id = books._id;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;10. Quit SQLite in the following manner:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sqlite&amp;gt; .exit&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now you should have a tab separated text file called "collection_books.txt".&lt;/P&gt;&lt;P&gt;The file can then be imported to e.g. Excel for easier overview.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just a tip! &lt;img class="lia-deferred-image lia-image-emoji" src="https://community.sony.ie/html/@3191CA7235A406D833094BA2DD1CF2FF/images/smilies/011.png" alt=":slight_smile:" title=":slight_smile:" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regard,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thomas J. Ekman&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: drDubbelklick&lt;/P&gt;&lt;P&gt;Just highlighted the word SQLite at the beginning&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Nov 2012 14:49:20 GMT</pubDate>
      <guid>https://community.sony.ie/t5/ereaders/a-tip-transferring-collections-from-one-computer-to-another/m-p/545115#M1321</guid>
      <dc:creator>drDubbelklick</dc:creator>
      <dc:date>2012-11-22T14:49:20Z</dc:date>
    </item>
  </channel>
</rss>

