Reply to thread

Hi all,


I would like to change the path of the already stored and imported movies.


For instance:


I imported the move geh.avi with the following path: X:\abc\def\geh.avi and want to chance it to \\server\def\geh.avi


To change the path I edited the tables local_media and import_path. I've done this with the following two statements:


update local_media

set fullpath = replace(fullpath, 'X:\abc', '\\server')

where fullpath like 'X:\abc%'


update import_path

set path = replace(path, 'X:\abc', '\\server')

where path like 'X:\abc%'


BUT if I start the configuration of MovingPictures the movie geh.avi will be imported again.


Have I forgotten anything? Is there another table I have to edit?


Would be great if anyone could help me.


thx and regards,

JohnDoe


Top Bottom