'log file'에 해당되는 글 1건

  1. 여러개 로그 파일이 좋을까???

http://www.sqlskills.com/BLOGS/PAUL/post/Multiple-log-files-and-why-theyre-bad.aspx

Multiple log files and why they're bad

Which brings me to the second thing I care about: why was the extra log file needed in the first place? Why did the transaction log run out of space, necessitating creating another log file? That's the only explanation I can think of for having more than one log file as there is no performance gain from multiple log files - SQL Server will write to them sequentially, never in parallel.

I blogged about the Importance of proper transaction log file size management more than three years ago (and here five years back), and many others have blogged about it too, but it's still one of the most common problems I see. Log growth can easily be monitored using the Log Growths performance counter in the Databases performance object and I'm sure someone's written code to watch for the log growth counter incrementing for databases and alerting the DBA.


SQL Server는 로그 파일을 쓸때 Sequentially하게 쓴다. 그렇다면, 여러개의 로그 파일을 분리할 필요가 없겠다.

'Etc' 카테고리의 다른 글

MongoDB MMS 설치  (0) 2012.10.16
Tempdb Checkpoint  (1) 2012.10.10
Spanner: Google’s Globally-Distributed Database  (1) 2012.09.17
mongodb index tools...  (4) 2012.09.13
제 2회 mongodb tech semina 참석 후기  (0) 2012.09.13