SQL Server Interview Questions and Answers
<< Previous Question Next Question >>
 Question: 391 Page Views: 

What is the basic concept of Serialization?



Posted By: Avi Date: 1 October 2010 11:43:07 AM
 Answer:

Serialization is the highest level of isolation. When Serialization is implemented then there will be no dirty reads, nor there will be repeatable reads and nor the phantom reads will occur.


Posted By: avibtech


Date: 1 October 2010 11:43:07 AM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image OgEV5s
Related Questions
SQL Server : What is SQL injection attack?

What is SQL injection attack?

SQL injection is an attack in which malicious code is inserted into strings that are later passed to....
Category: SQL Server Date: 10/2/2009 7:12:03 AM
SQL Server : Why we use SET ROWCOUNT statement in SQL Server?

Why we use SET ROWCOUNT statement in SQL Server?

It causes SQL Server to stop processing the query after the specified number of rows (e.g. SET ROWCO....
Category: SQL Server Date: 10/2/2009 7:03:39 AM
SQL Server : How can we delete the duplicate rows from a  table?

How can we delete the duplicate rows from a table?

Lets consider if we have a table Employee with rowid, name and email columns. Then we can use follow....
Category: SQL Server Date: 9/19/2009 4:58:46 AM
SQL Server : How can we find the number of rows in a table?

How can we find the number of rows in a table?

Following SQL statements can be used to get the number of rows in a table: SQL Query - 1: SELECT CO....
Category: SQL Server Date: 9/19/2009 4:51:20 AM
SQL Server : Write down the general syntax for a SELECT statement covering all the options.

Write down the general syntax for a SELECT statement covering all the options.

SELECT select_list [INTO new_table] FROM table_source [WHERE search_condition] [GROUP BY group_by_ex....
Category: SQL Server Date: 9/19/2009 4:24:23 AM