update ATTACHMENTS a, usermigration u
set a.creator = u.newusername
where a.creator = u.oldusername;
update ATTACHMENTS a, usermigration u
set a.lastmodifier = u.newusername
where a.lastmodifier = u.oldusername;
update CONTENT a, usermigration u
set a.lastmodifier = u.newusername
where a.lastmodifier = u.oldusername;
update CONTENT a, usermigration u
set a.creator = u.newusername
where a.creator = u.oldusername;
update CONTENT a, usermigration u
set a.username = u.newusername
where a.username = u.oldusername;
update EXTRNLNKS a, usermigration u
set a.creator = u.newusername
where a.creator = u.oldusername;
update EXTRNLNKS a, usermigration u
set a.lastmodifier = u.newusername
where a.lastmodifier = u.oldusername;
update FOLLOW_CONNECTIONS a, usermigration u
set a.follower = u.newusername
where a.follower = u.oldusername;
update FOLLOW_CONNECTIONS a, usermigration u
set a.followee = u.newusername
where a.followee = u.oldusername;
update LABEL a, usermigration u
set a.owner = u.newusername
where a.owner = u.oldusername;
update CONTENT_LABEL a, usermigration u
set a.owner = u.newusername
where a.owner = u.oldusername;
update LINKS a, usermigration u
set a.lastmodifier = u.newusername
where a.lastmodifier = u.oldusername;
update LINKS a, usermigration u
set a.creator = u.newusername
where a.creator = u.oldusername;
update NOTIFICATIONS a, usermigration u
set a.lastmodifier = u.newusername
where a.lastmodifier = u.oldusername;
update NOTIFICATIONS a, usermigration u
set a.creator = u.newusername
where a.creator = u.oldusername;
update PAGETEMPLATES a, usermigration u
set a.lastmodifier = u.newusername
where a.lastmodifier = u.oldusername;
update PAGETEMPLATES a, usermigration u
set a.creator = u.newusername
where a.creator = u.oldusername;
update SPACES a, usermigration u
set a.creator = u.newusername
where a.creator = u.oldusername;
update SPACES a, usermigration u
set a.lastmodifier = u.newusername
where a.lastmodifier = u.oldusername;
update SPACEPERMISSIONS a, usermigration u
set a.permusername = u.newusername
where a.permusername = u.oldusername;
update SPACEPERMISSIONS a, usermigration u
set a.creator = u.newusername
where a.creator = u.oldusername;
update SPACEPERMISSIONS a, usermigration u
set a.lastmodifier = u.newusername
where a.lastmodifier = u.oldusername;
update CONTENTLOCK a, usermigration u
set a.creator = u.newusername
where a.creator = u.oldusername;
update CONTENTLOCK a, usermigration u
set a.lastmodifier = u.newusername
where a.lastmodifier = u.oldusername;
update os_user a, usermigration u
set a.username = u.newusername
where a.username = u.oldusername;
update TRACKBACKLINKS a, usermigration u
set a.creator = u.newusername
where a.creator = u.oldusername;
update TRACKBACKLINKS a, usermigration u
set a.lastmodifier = u.newusername
where a.lastmodifier = u.oldusername;
|