Does Transaction log in Simple recovery model behave like Full during the transaction or it behaves like Bulk Logged
To make my Q simple, if I do BULK operation (BULK INSERT) & my DB is in simple recovery model, does T-Log records BUlk Operation OR it does it log FULL until the BULK operation is complete.

T-Log : Recovery Model
Chimme
Chen Hao
Computer Guy69146
sure:
SQL Server 2000 has three models: simple, full, and bulk-logged. Let's look at what each model means, starting with the easiest.
An added benefit is that it's possible to recover the database to a particular point in time. For example, if a user accidentally deletes all accounts in a database at 1 PM, it's possible to restore the database up to 12:59 PM, right before the deletion of the accounts occurred.
Under this mode, space in the transaction log is only reclaimed when a backup of the transaction log is made. When this occurs, all the changes stored in the transaction log are written to the backup and the space is freed up. Therefore, databases in this mode need to have enough space available for the transaction log to store all the transactions that occur between each backup. Additionally, non-logged operations are not allowed.
(from: http://www.devx.com/getHelpOn/10MinuteSolution/16532/1954 pf=true)
HTH, Jens K. Suessmeyer.
---
http://www.sqlserver2005.de
---
LostCoder
schmack
msadekd
papermater
Chris128