Backup MM Tracks v2.7 (01-11-08) [MM3]

Download and get help for different MediaMonkey for Windows 4 Addons.

Moderators: Peke, Gurus

MoDementia
Posts: 1321
Joined: Thu Jun 15, 2006 3:26 pm
Location: Geelong, Victoria, Australia

Backup MM Tracks v2.7 (01-11-08) [MM3]

Post by MoDementia »

No Longer Available
Last edited by MoDementia on Tue Feb 03, 2009 4:11 am, edited 19 times in total.
MoDementia
Posts: 1321
Joined: Thu Jun 15, 2006 3:26 pm
Location: Geelong, Victoria, Australia

Post by MoDementia »

I have only tested this with a handful of files.
I will be using it for a full backup but I have to reorganise my disk space and I'm not looking forward to fixing the mess other backup programs have made (many many duplicates).

The intial backup will take some time, as all files will need to be copied.
Subsequent backups should be relatively quick as it will only copy changed/moved tracks.

I suggest creating a playlist as a subset of your library and backing them up until you are happy with how it works before doing a full backup.

I just realised that external editors may not trigger a backup (the way I have written it) not sure if rescan/sync tags will change the trackmodified date.

If you edit files outside of MM please report if the files then get backed up. I can easily add some code to cater for it if not.
trixmoto
Posts: 10024
Joined: Fri Aug 26, 2005 3:28 am
Location: Hull, UK
Contact:

Post by trixmoto »

Any reason for the "zzz" on the end of the link? :lol:

Looks like a useful script now I've got a laptop with two harddrives big enough to backup everything! :)
Download my scripts at my own MediaMonkey fansite.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
MoDementia
Posts: 1321
Joined: Thu Jun 15, 2006 3:26 pm
Location: Geelong, Victoria, Australia

Post by MoDementia »

Yeah I realised I forgot something, will post again once i fix it :(
Bex
Posts: 6316
Joined: Fri May 21, 2004 5:44 am
Location: Sweden

Post by Bex »

Great idea and useful script, thanks!

PS I saw that you are indexing the primary key. That's not a good idea:
http://www.sqlite.org/cvstrac/wiki?p=PerformanceTuning
Indexes on INTEGER PRIMARY KEY columns (don't do it)

When you create a column with INTEGER PRIMARY KEY, SQLite uses this column as the key for (index to) the table structure. This is a hidden index (as it isn't displayed in SQLite_Master table) on this column. Adding another index on the column is not needed and will never be used. In addition it will slow INSERT, DELETE and UPDATE operations down.
Also, you should always use COLLATE IUNICODE on all your text fields so you don't get any strange results due to Unicode characters.
Advanced Duplicate Find & Fix Find More From Same - Custom Search. | Transfer PlayStat & Copy-Paste Tags/AlbumArt between any tracks.
Tagging Inconsistencies Do you think you have your tags in order? Think again...
Play History & Stats Node Like having your Last-FM account stored locally, but more advanced.
Case & Leading Zero Fixer Works on filenames too!

All My Scripts
MoDementia
Posts: 1321
Joined: Thu Jun 15, 2006 3:26 pm
Location: Geelong, Victoria, Australia

Post by MoDementia »

Bugger, was just about to release it :P

Ok I'll fix the index and the unicode stuff wtf :( could take a little while

If anyone has the original ...Bex... :P please uninstall it and wait for the new one
Bex
Posts: 6316
Joined: Fri May 21, 2004 5:44 am
Location: Sweden

Post by Bex »

Just use DROP XX IF EXIST to delete the index. You can do the same with the table but then you need to give the new corrected table it a new name.
These drop statements should also be present in the uninstall sub together with one for the trigger as well as a additional one for the new table. (Haven't checked the uninstall sub so it might already be there.)
Advanced Duplicate Find & Fix Find More From Same - Custom Search. | Transfer PlayStat & Copy-Paste Tags/AlbumArt between any tracks.
Tagging Inconsistencies Do you think you have your tags in order? Think again...
Play History & Stats Node Like having your Last-FM account stored locally, but more advanced.
Case & Leading Zero Fixer Works on filenames too!

All My Scripts
nynaevelan
Posts: 5559
Joined: Wed Feb 07, 2007 11:07 pm
Location: New Jersey, USA
Contact:

Post by nynaevelan »

Being a backup junkie, I am looking forward to seeing the updated version of this script. I have a minor question, will the continued use of my backup program (Syncback) interfere if I decide to use this script?? I also have two versions of my backups, which would you suggest as the best to use, my primary backup or my secondary backup?

Nyn
3.2x - Win7 Ultimate (Zen Touch 2 16 GB/Zen 8GB)
Link to Favorite Scripts/Skins

Join Dropbox, the online site to share your files
MoDementia
Posts: 1321
Joined: Thu Jun 15, 2006 3:26 pm
Location: Geelong, Victoria, Australia

Post by MoDementia »

Ok deleted the index and added COLLATE IUNICODE to the CREATE TABLE TEXT Fields

Hope that was all ?
MoDementia
Posts: 1321
Joined: Thu Jun 15, 2006 3:26 pm
Location: Geelong, Victoria, Australia

Post by MoDementia »

The uninstall has the drop code, as long as you answer yes to remove it :)

@ Nyn
It probably will especially if you try and use it to restore in between backups
Backup 1
SyncBack (just guessing)
Backup\Artist\Title.mp3

Script
Backup\Artist\Title.mp3

Backup 2
SyncBack (just guessing)
Backup\Artist\Title.mp3
Backup\Artist\NewCaseChangeTitle.mp3

Script
Backup\Artist\NewCaseChangeTitle.mp3

So if you try and restore Backup\Artist\Title.mp3 using SyncBack Backup 1 it won't be there

And this is why I gave up trying to use "normal" backup software on my music
From 60gig database I eneded up with a 200gig backup :(
Bex
Posts: 6316
Joined: Fri May 21, 2004 5:44 am
Location: Sweden

Post by Bex »

What I meant was that if people had installed the script then they would have the table, index and trigger created in the database. To delete those you need to add some code to remove them. Such code should also be present in your uninstall sub, they might already be there I haven't checked.

But you need to do it in a smart way so the code doesn't delete the newly corrected table. I would do it by giving the corrected table a new name. But then you need to correct the trigger which leads to that you need to rename that as well. So you need to do the same thing with the trigger as with the table.

The drop statement for the index can always be present.

Or you can just hope that no one installed the script the first time! :D
Advanced Duplicate Find & Fix Find More From Same - Custom Search. | Transfer PlayStat & Copy-Paste Tags/AlbumArt between any tracks.
Tagging Inconsistencies Do you think you have your tags in order? Think again...
Play History & Stats Node Like having your Last-FM account stored locally, but more advanced.
Case & Leading Zero Fixer Works on filenames too!

All My Scripts
MoDementia
Posts: 1321
Joined: Thu Jun 15, 2006 3:26 pm
Location: Geelong, Victoria, Australia

Post by MoDementia »

Bex wrote:Or you can just hope that no one installed the script the first time! :D
There is a slim chance that someone got the file before i changed the link to zzz, I hope they reread this post and uninstall and reinstall the current link :)
Last edited by MoDementia on Tue Apr 15, 2008 6:41 am, edited 1 time in total.
Bex
Posts: 6316
Joined: Fri May 21, 2004 5:44 am
Location: Sweden

Post by Bex »

:D
Advanced Duplicate Find & Fix Find More From Same - Custom Search. | Transfer PlayStat & Copy-Paste Tags/AlbumArt between any tracks.
Tagging Inconsistencies Do you think you have your tags in order? Think again...
Play History & Stats Node Like having your Last-FM account stored locally, but more advanced.
Case & Leading Zero Fixer Works on filenames too!

All My Scripts
nynaevelan
Posts: 5559
Joined: Wed Feb 07, 2007 11:07 pm
Location: New Jersey, USA
Contact:

Post by nynaevelan »

MoDementia wrote:
@ Nyn
It probably will especially if you try and use it to restore in between backups
Backup 1
SyncBack (just guessing)
Backup\Artist\Title.mp3

Script
Backup\Artist\Title.mp3

Backup 2
SyncBack (just guessing)
Backup\Artist\Title.mp3
Backup\Artist\NewCaseChangeTitle.mp3

Script
Backup\Artist\NewCaseChangeTitle.mp3

So if you try and restore Backup\Artist\Title.mp3 using SyncBack Backup 1 it won't be there

And this is why I gave up trying to use "normal" backup software on my music
From 60gig database I eneded up with a 200gig backup :(
Thanks for the explanation, I think I will give this a try, because like you I end up having to cleanup my backups more times than necessary. Especially since Bex keeps updating the TI and ADFFscripts :) :evil: and thanks to Trixmoto's Backup script, I have lots of backups to revert back to. 8)

Nyn
3.2x - Win7 Ultimate (Zen Touch 2 16 GB/Zen 8GB)
Link to Favorite Scripts/Skins

Join Dropbox, the online site to share your files
nynaevelan
Posts: 5559
Joined: Wed Feb 07, 2007 11:07 pm
Location: New Jersey, USA
Contact:

Post by nynaevelan »

I like the potential of this, I will run it overnight for my entire database. One more question, once I've completed my initial backup and I add files to my library, and then rerun the script will it only look at any new or changed entries or will it reevaluate the entire database? Also, will it make any updates to changed files automatically or will it need to be run by the user? Sorry for my ignorance :cry:

Nyn
3.2x - Win7 Ultimate (Zen Touch 2 16 GB/Zen 8GB)
Link to Favorite Scripts/Skins

Join Dropbox, the online site to share your files
Post Reply