Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeUsing DNN Platf...Using DNN Platf...Administration ...Administration ...Dtabase clean upDtabase clean up
Previous
 
Next
New Post
4/20/2010 2:29 PM
 

Your database may be rebuilding itself to the same size... the searchwords will be rebuilt every time your search engine scans the site.  Deleting it will just be a temporary fix.  Also I noted that you have over 2000 module records?  so I assume you have many pages with many modules on each page.  This is a rather large site for explicit pages and still be under 190MBs. 

You may need to consider relocated your site to different hosting company what will allow larger database without too much additional cost.   Most introductory DNN sites will provided larger DB sizes. 

Paul.

 
New Post
4/22/2010 12:27 PM
 

In case you're using MSSQL 2008 read this:

http://social.msdn.microsoft.com/Forums/en/sqldatabaseengine/thread/54e6e281-005a-4b07-8c85-3685441f4f3d

Take a look at the last reply which worked for me in 2008:

 

For shrinking log file in sql server 2008, first u have to change the recovery model of database to simple,shrink the log file and then change back to the previous recovery model. following is the code

 
USE dbname;
GO
-- Truncate the log by changing the database recovery model to SIMPLE.
ALTER DATABASE dbname
SET RECOVERY SIMPLE;
GO
-- Shrink the truncated log file to 1 MB.
DBCC SHRINKFILE (2, 1);  -- here 2 is the file ID for trasaction log file,you can also mention the log file name (dbname_log)
GO
-- Reset the database recovery model.
ALTER DATABASE dbname
SET RECOVERY FULL;
GO

 


Yehuda Tiram
AtarimTR
AtarimTR
972-2-5700114   |   972-54-4525492   |    http://www.atarimtr.co.il
 
New Post
5/22/2010 9:32 AM
 
Hi Guys, I have learned a lot from reading these posts. Last night I had a huge problem with database size that I was able to fix by downloading SQL server 2008. I basically used the TRUNCATE TABLE eventlog & TRUNCATE TABLE sitelog commands to solve my size issue. Here is my question: Can I use the TRUNCATE TABLE command for the tables below, they are very large? Can some onw twll me what they do? SearchItemWord SearchItemWordPosition SearchWord Thank you SO MUCH for your replies, you are all very helpful, Lou
 
New Post
5/22/2010 4:40 PM
 
Lou,
The issue with search tables size is that after you truncate the tables, the search engine will again repopulate the search tables.  So no real advantage in truncating them.   Also, once you truncate the tables, the search function will cease to work.   So, if you require search, then you will have to live with the tables sizes. 

If you do not want search, you should disable the search engine in the scheduled job then you can truncate the search tables.  Recheck the table sizes after a few hours to ensure the tables have not been repopulated.  If they are then you have not stopped all the Search engine jobs.

Hope this helps
Paul.

 
New Post
8/7/2011 10:55 AM
 
Thank you Yehuda Tiram, this worked GREAT!
 
Previous
 
Next
HomeHomeUsing DNN Platf...Using DNN Platf...Administration ...Administration ...Dtabase clean upDtabase clean up


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out