Could someone tell me the role of transaction logs in SQL Server ?
I have a transaction log file, after making a lot of transactions for testing purpose I take the backup of it via command. Sometimes the size of it is around 200KB and sometimes its 10 MB ?
My concept of it is, when the transactions logs file is full it flushes the data/transactions to database if recovery mode is simple, isn't? But if the recovery mode is full then every time after the transaction log file is full the backup of log file has to be taken in order to empty the transactions logs file, but should the backup not be of uniform size ? How can it differ like 200KB and 10 MB ??
:)