• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

MS SQL and transaction log

EmperorIQ

Platinum Member
From what I understand there is a transation log type of database in MS SQL where any changes to your database is stored in there incase you want a back up of some sort. Is there a way to turn this logging off? like some sort of command that says SET TRANSACLOG OFF; /* do something */ SET TRANSACLOG ON;


is there anything like that?

Thanks,
 
As far as I know, there is no way to disable the transaction log. You wouldn't want to anyway. It's necessary for SQL server to properly handle database transactions (commit, rollback).
 
Back
Top