Can you explain about buffer cash and log Cache in sql server?

Can you explain about buffer cash and log Cache in sql server?

Buffer Cache: Buffer cache is a memory pool in which data pages are read. It performance of the buffer cache is indicated as follows: 95% indicates that pages that were found in the memory are 95% of time. Another 5% is needed for physical disk access. If the value falls below 90%, it is the indication of more physical memory requirement on the server.

Log Caches: Log cache is a memory pool used to read and write the log pages. A set of cache pages are available in each log cache. The synchronization is reduced between log and data buffers by managing log caches separately from the buffer cache.
What is a Trace frag? Where do we use it? - Sql server
What is a Trace frag? - Temporary setting of specific server characteristics is done by trace tags. DBCC TRACEON is the command to set the trace flags......
Describe how to use Linked Server - Sql server
Linked Server - MS SQL Server supports the connection to different OLE DB on an ad hoc basis. This persistent connection is referred as Linked Server.......
Explain how to send email from database - Sql server
Send email from database - SQL Server has a feature for sending mail. Stored procedures can also be used for sending mail on demand. With SQL Server 2005, MAPI client is not needed for sending mails.......
Post your comment