What is Check point? Explain in Brief what it will do?
Answer Posted / samba shiva reddy . m
When we done operation on SQL SERVER that is not commited directly to the database example:we are deleting bulk records from server but in between power shut down or some thing happened then that transaction is not committed from our side if we create check point on that delete statement after deleting some records it will save as check point next no need to delete those records again if check point is not there means we have to start form scratch.All operation must be logged in to Transaction Log files after that they should be done on to the main database.CheckPoint are the point which alert Sql Server to save all the data to main database if no Check point is there then log files get full we can use Checkpoint command to commit all data in the SQL SERVER.When we stop the SQL Server it will take long time because Checkpoint is also fired.
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What are transactions and its controls?
How to insert data with null values?
What is the maximum rows in sql server table?
Do you know the cursor optimization tips?
What is self contained scalar sub query?
if no size is defined while creating the database, what size will the database have? : Sql server administration
What do you understand by replication in sql server?
Which tools are available to manage SQL Azure databases and servers?
Write a sql query to get zero records from a table having n number of records?
How to list all stored procedures in the current database using ms sql server?
What is provisioning, billing and metering, and connection routing concepts in the service layer?
Explain primary key in sql server?
why would you use sql agent? : Sql server database administration
What is the difference between join and inner join?
What are “lost updates”?