<?xml version="1.0" encoding="UTF-8" ?> 
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns="http://purl.org/rss/1.0/">
<channel rdf:about="http://dev.libresource.org/home/community/forum/database_cleanup_">
	<title>database cleanup...</title>
	<description><![CDATA[database cleanup...]]></description>
	<link>http://dev.libresource.org/home/community/forum/database_cleanup_</link>
	<items>
		<rdf:Seq><rdf:li rdf:resource="http://dev.libresource.org/home/community/forum/database_cleanup_/RE_database_cleanup_" />
		<rdf:li rdf:resource="http://dev.libresource.org/home/community/forum/database_cleanup_/database_cleanup_" />
		</rdf:Seq>
	</items>
</channel>
<item rdf:about="http://dev.libresource.org/home/community/forum/database_cleanup_/RE_database_cleanup_">
		<title>RE : database cleanup...</title>
		<link>http://dev.libresource.org/home/community/forum/database_cleanup_/RE_database_cleanup_</link>
		<dc:creator>Sebastien Jourdain</dc:creator>
		<dc:date>2008-01-22T17:21:32+01:00</dc:date>
		<description><![CDATA[Thanks a lot Manu !]]></description>
</item><item rdf:about="http://dev.libresource.org/home/community/forum/database_cleanup_/database_cleanup_">
		<title>database cleanup...</title>
		<link>http://dev.libresource.org/home/community/forum/database_cleanup_/database_cleanup_</link>
		<dc:creator>manu</dc:creator>
		<dc:date>2008-01-22T16:54:39+01:00</dc:date>
		<description><![CDATA[Just in case it might helps here is a first attempt to write a cleanup script for the LS database. It seems to work quite fine for my own LS.<p class="paragraph"/>Do not hesitate to contribute to make it more robust&#8230; ;)<p class="paragraph"/><div class="code"><pre>&#45;&#45; Database cleanup script first attempt
&#45;&#45; author : sartorius
&#45;&#45; date : 01/22/08
&#45;&#45;
&#45;&#45; Script Execution : psql &#45;U libresource &#45;f cleanup.sql &#45;L LogFile.log
&#45;&#45; On error =&#62; Dump reinstall :
&#45;&#45; &#42; dropdb libresource; 
&#45;&#45; &#42; createdb &#45;O libresource &#45;E UTF8 libresource; 
&#45;&#45; &#42; pg_restore &#45;d libresource dumpFile.dmp;
&#45;&#45; &#42; pg_restore template1 &#45;d template1 dumpFile.dmp;
&#45;&#45; &#42; pg_restore postgres &#45;d postgres dumpFile.dmp;<p class="paragraph"/>
&#45;&#45; User Deletion handling
&#45;&#45; &#42;&#42;&#42;&#42;&#42;&#42;&#42;&#42;&#42;&#42;&#42;&#42;&#42;&#42;&#42;&#42;&#42;&#42;<p class="paragraph"/>&#45;&#45; Change deprecated owner of resources to root
select &#42; from node_ where path_ like '/projects/%' and owner_ not in (select id_ from node_ where path_ like '/users/%');
update node_ set owner_ = (select id_ from node_ where path_='/users/root') where path_ like '/projects/%' and owner_ not in (select id_ from node_ where path_ like '/users/%');<p class="paragraph"/>&#45;&#45; Eliminates deprecated profiles
select &#42; from profileresource_ where id_ not in (select split_part(bindedresourceidentifier_,'/',3) from node_ where bindedresourceidentifier_ like '%Profile%');
delete from profileresource_ where id_ not in (select split_part(bindedresourceidentifier_,'/',3) from node_ where bindedresourceidentifier_ like '%Profile%');<p class="paragraph"/>&#45;&#45; Eliminates deprecated users
select &#42; from casusers_ where username_ not in ( select split_part(path_,'/',3) from node_ where path_ like '%/users/%');
delete from casusers_ where username_ not in ( select split_part(path_,'/',3) from node_ where path_ like '%/users/%');<p class="paragraph"/>
&#45;&#45; TODO Update groups members in <span class="java&#45;keyword">case</span> of errors
&#45;&#45; update groupresource_ SET memberslist_ = 'User:adminProject1' where id_ = '8d883b407f00010101cff2238d929f9c';<p class="paragraph"/>&#45;&#45; Database cleanup
&#45;&#45; &#42;&#42;&#42;&#42;&#42;&#42;&#42;&#42;&#42;&#42;&#42;&#42;&#42;&#42;&#42;&#42;<p class="paragraph"/>&#45;&#45; Deletes deprecated groups
select &#42; from groupresource_ where id_ not in ( select split_part(bindedresourceidentifier_,'/',3) from node_ where bindedresourceidentifier_ like '%Group%');
delete from groupresource_ where id_ not in (select split_part(bindedresourceidentifier_,'/',3) from node_ where bindedresourceidentifier_ like '%Group%');<p class="paragraph"/>&#45;&#45; Deletes deprecated pages
select &#42; from pageresource_ where id_ not in (select split_part(bindedresourceidentifier_,'/',3) from node_ where bindedresourceidentifier_ like '%/Page/%');
delete from pageresource_ where id_ not in (select split_part(bindedresourceidentifier_,'/',3) from node_ where bindedresourceidentifier_ like '%/Page/%');<p class="paragraph"/>&#45;&#45; TODO Delete deprecated pages tables
select tablename from pg_tables where tablename like 'page_history%' and split_part(tablename,'_',3) not in (select id_ from pageresource_);<p class="paragraph"/>&#45;&#45; Deletes deprecated files
select &#42; from fileresource_ where id_ not in (select split_part(bindedresourceidentifier_,'/',3) from node_ where bindedresourceidentifier_ like '%/File/%');
delete from fileresource_ where id_ not in (select split_part(bindedresourceidentifier_,'/',3) from node_ where bindedresourceidentifier_ like '%/File/%');<p class="paragraph"/>&#45;&#45; Deletes deprecated files content
select &#42;  from files_content_ where id not in (select split_part(bindedresourceidentifier_,'/',3) from node_ where bindedresourceidentifier_ like '%/File/%');
delete from files_content_ where id not in (select split_part(bindedresourceidentifier_,'/',3) from node_ where bindedresourceidentifier_ like '%/File/%');<p class="paragraph"/>&#45;&#45; Deletes deprecated bugtracker
select &#42; from bugtrackerresource_ where id_ not in (select split_part(bindedresourceidentifier_,'/',3) from node_ where bindedresourceidentifier_ like '%/BugTracker/%')
delete from bugtrackerresource_ where id_ not in (select split_part(bindedresourceidentifier_,'/',3) from node_ where bindedresourceidentifier_ like '%/BugTracker/%');<p class="paragraph"/>&#45;&#45; Deletes deprecated timelines
select &#42; from timelineresource_ where id_ not in (select split_part(bindedresourceidentifier_,'/',3) from node_ where bindedresourceidentifier_ like '%/Timeline/%');
delete from timelineresource_ where id_ not in (select split_part(bindedresourceidentifier_,'/',3) from node_ where bindedresourceidentifier_ like '%/Timeline/%');<p class="paragraph"/>&#45;&#45; TODO deletes deprecates timelines tables
select tablename from pg_tables where tablename like 'timeline_%' and tablename not like 'timelineresource_' and split_part(tablename,'_',3) not in (select id_ from timelineresource_);<p class="paragraph"/>&#45;&#45; Deletes deprecated templates
select &#42; from templateresource_ where id_ not in (select split_part(bindedresourceidentifier_,'/',3) from node_ where bindedresourceidentifier_ like '%/Template/%');
delete from templateresource_ where id_ not in (select split_part(bindedresourceidentifier_,'/',3) from node_ where bindedresourceidentifier_ like '%/Template/%');<p class="paragraph"/>&#45;&#45; Deletes deprecated templates content
select &#42; from templates_content_ where id not in (select split_part(bindedresourceidentifier_,'/',3) from node_ where bindedresourceidentifier_ like '%/Template/%');
delete from templates_content_ where id not in (select split_part(bindedresourceidentifier_,'/',3) from node_ where bindedresourceidentifier_ like '%/Template/%');<p class="paragraph"/>&#45;&#45; Deletes deprecated projects
select &#42; from projectresource_ where id_ not in (select split_part(bindedresourceidentifier_,'/',3) from node_ where bindedresourceidentifier_ like '%/Project/%');
delete from projectresource_ where id_ not in (select split_part(bindedresourceidentifier_,'/',3) from node_ where bindedresourceidentifier_ like '%/Project/%');<p class="paragraph"/>&#45;&#45; and so on...<p class="paragraph"/>&#45;&#45; Vacuum database
VACUUM;</pre></div><p class="paragraph"/>Cheers<p class="paragraph"/>Manu<p class="paragraph"/><p class="paragraph"/><p class="paragraph"/><p class="paragraph"/><p class="paragraph"/>
]]></description>
</item>
</rdf:RDF>