Mailing List Archive

Is it possible to delete a page permanently from the database?
As the database of my Wiki grows biger and biger in size, I wonder if I can
delete some useless pages permanently from the database.

Thank you for your comment!

Cheers,
Collin
Re: Is it possible to delete a page permanently from the database? [ In reply to ]
Collin Hsu wrote:
> As the database of my Wiki grows biger and biger in size, I wonder if I can
> delete some useless pages permanently from the database.

Delete the page using the normal page deletion feature, then clear out
the archive table (where deleted revisions are stored):

DELETE FROM archive;

-- brion vibber (brion @ pobox.com)
RE: Is it possible to delete a (history) page permanently from the database? [ In reply to ]
Thank you!

But can I just delete some earlier histories of a page and keep the later
and current page?


Collin
-----Original Message-----
From: mediawiki-l-bounces@Wikimedia.org
[mailto:mediawiki-l-bounces@Wikimedia.org] On Behalf Of Brion Vibber
Sent: Saturday, August 07, 2004 12:59 PM
To: MediaWiki announcements and site admin list
Subject: Re: [Mediawiki-l] Is it possible to delete a page permanently
fromthe database?

Collin Hsu wrote:
> As the database of my Wiki grows biger and biger in size, I wonder if
> I can delete some useless pages permanently from the database.

Delete the page using the normal page deletion feature, then clear out the
archive table (where deleted revisions are stored):

DELETE FROM archive;

-- brion vibber (brion @ pobox.com)