Archive for August, 2007

The MS SQL Server transaction log

Tuesday, August 7th, 2007

The transaction log grows, grows, grows and quite often fills up.

I know two ways of shrinking it:

  • With backup:

backup log netmeter(db_name) to disk=’specify the filename’

  • Without backup:

backup log netmeter with truncate_only

[Slashdot] [Digg] [Reddit] [del.icio.us] [Facebook] [Technorati] [Google]

WORM - aka how to write things in stone

Wednesday, August 1st, 2007

WORM stands for Write Once, Read Many - it’s usually used for archival storage systems, and it’s actually sometimes a legal requirement (typically in SOX).

At least three solutions can be commonly found on the market:

  • Centera, by EMC, is a WORM solution featuring a retention policy
  • Network Appliance (NetApp) has a software solution which runs on their systems called SnapLock
  • HP sells WORM Tape Drives

But there is no Open Source filesystem doing this yet AFAIK…

[Slashdot] [Digg] [Reddit] [del.icio.us] [Facebook] [Technorati] [Google]