You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: plex-db-sync
+7-9
Original file line number
Diff line number
Diff line change
@@ -108,7 +108,7 @@ function checkForDBs() {
108
108
if [ "${DEBUG}"=="true" ];then
109
109
echoD "version db1: ${VPLEXDB1} db2: ${VPLEXDB2}"
110
110
fi
111
-
if [ [ "${VPLEXDB1}"!="${VPLEXDB2}" ];then
111
+
if [ "${VPLEXDB1}"!="${VPLEXDB2}" ];then
112
112
echoD "Versions of plex databases not equal"
113
113
exit
114
114
fi
@@ -160,14 +160,12 @@ function getIgnore() {
160
160
}
161
161
162
162
functioncreateTmpDB() {
163
-
sqlite3 "${PLEXDB1}"".schema metadata_item_settings"|grep CREATE\ TABLE |sed -e 's,CREATE TABLE IF NOT EXISTS "metadata_item_settings",CREATE TABLE IF NOT EXISTS "metadata_item_settings1",g'| sqlite3 "${TMPDB}"
164
-
sqlite3 "${PLEXDB1}"".schema metadata_item_settings"|grep CREATE\ TABLE |sed -e 's,CREATE TABLE IF NOT EXISTS "metadata_item_settings",CREATE TABLE IF NOT EXISTS "metadata_item_settings2",g'| sqlite3 "${TMPDB}"
165
-
sqlite3 "${PLEXDB1}"".schema metadata_items"|grep CREATE\ TABLE |sed -e 's,CREATE TABLE IF NOT EXISTS "metadata_items",CREATE TABLE IF NOT EXISTS "metadata_items1",g'| sqlite3 "${TMPDB}"
166
-
sqlite3 "${PLEXDB1}"".schema metadata_items"|grep CREATE\ TABLE |sed -e 's,CREATE TABLE IF NOT EXISTS "metadata_items",CREATE TABLE IF NOT EXISTS "metadata_items2",g'| sqlite3 "${TMPDB}"
167
-
sqlite3 "${PLEXDB1}"".schema taggings"|grep CREATE\ TABLE |sed -e 's,CREATE TABLE IF NOT EXISTS "taggings",CREATE TABLE IF NOT EXISTS "etadata_taggings1",g'| sqlite3 "${TMPDB}"
168
-
sqlite3 "${PLEXDB1}"".schema taggings"|grep CREATE\ TABLE |sed -e 's,CREATE TABLE IF NOT EXISTS "taggings",CREATE TABLE IF NOT EXISTS "taggings2",g'| sqlite3 "${TMPDB}"
169
-
sqlite3 "${PLEXDB1}"".schema tags"|grep CREATE\ TABLE |sed -e 's,CREATE TABLE IF NOT EXISTS "tags",CREATE TABLE IF NOT EXISTS "tags1",g'| sqlite3 "${TMPDB}"
170
-
sqlite3 "${PLEXDB1}"".schema tags"|grep CREATE\ TABLE |sed -e 's,CREATE TABLE IF NOT EXISTS "tags",CREATE TABLE IF NOT EXISTS "tags2",g'| sqlite3 "${TMPDB}"
sqlite3 "${PLEXDB1}""select sql from sqlite_master where name = '${TableTmpDB}'"| sed -e "s,${TableTmpDB},${TableTmpDB}1,g"| sqlite3 "${TMPDB}"
167
+
sqlite3 "${PLEXDB1}""select sql from sqlite_master where name = '${TableTmpDB}'"| sed -e "s,${TableTmpDB},${TableTmpDB}2,g"| sqlite3 "${TMPDB}"
168
+
done
171
169
echo"attach '${PLEXDB1}' as plexdb; attach '${TMPDB}' as tmpdb; insert into tmpdb.metadata_item_settings1 select * from plexdb.metadata_item_settings; insert into tmpdb.metadata_items1 select * from plexdb.metadata_items; insert into tmpdb.taggings1 select * from plexdb.taggings; insert into tmpdb.tags1 select * from plexdb.tags;"| sqlite3
172
170
echo"attach '${PLEXDB2}' as plexdb; attach '${TMPDB}' as tmpdb; insert into tmpdb.metadata_item_settings2 select * from plexdb.metadata_item_settings; insert into tmpdb.metadata_items2 select * from plexdb.metadata_items; insert into tmpdb.taggings2 select * from plexdb.taggings; insert into tmpdb.tags2 select * from plexdb.tags;"| sqlite3
0 commit comments