DennisTheMenace
IS-IT--Management
My website is nearly 99.9% database driven. Virtually every page you view is data from the SQL server. 90% of that is simply retrieving data. The only time you write to the DB is if you add to your basket, and then more is done when you check out. My ISP is telling me that my Transaction Log keeps filling up.
Is there some guidance that someone(s) can give me to help me keep my transactions down - and understand what/why my log is filling? What "transactions" are there when retrieving data from SQL?
FYI: I was careful to make sure that all of my ASP pages included not leaving open recordsets and database connections -
rs.close
set rs=nothing
db.close
set db=nothing
Thanks for everyone's input!
) =====================
Dennis B
Is there some guidance that someone(s) can give me to help me keep my transactions down - and understand what/why my log is filling? What "transactions" are there when retrieving data from SQL?
FYI: I was careful to make sure that all of my ASP pages included not leaving open recordsets and database connections -
rs.close
set rs=nothing
db.close
set db=nothing
Thanks for everyone's input!

Dennis B