<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>Technical Interview Questions &#187; Ms Sql Server Interview Questions</title>
	<atom:link href="http://www.technicalinterview.info/category/ms-sql-server-interview-questions/feed" rel="self" type="application/rss+xml" />
	<link>http://www.technicalinterview.info</link>
	<description>Java Interview Questions &#124; IT interview questions &#124; Software Testing Interview questions &#124; .Net Interview Questions &#124; Job Interview Questions &#38; Answers &#124; Tough Interview Questions &#124; Technology Interview Questions &#124; Tech Interview Questions &#124; Testing Interview Questions &#124; SAP Interview Questions &#124; ABAP Interview Questions &#124; Data Warehousing Interview Questions</description>
	<pubDate>Tue, 02 Sep 2008 08:33:19 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>What is Isolation Level?</title>
		<link>http://www.technicalinterview.info/what-is-isolation-level/</link>
		<comments>http://www.technicalinterview.info/what-is-isolation-level/#comments</comments>
		<pubDate>Thu, 15 Mar 2007 11:30:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Ms Sql Server Interview Questions]]></category>

		<guid isPermaLink="false">http://www.technicalinterview.info/what-is-isolation-level.html</guid>
		<description><![CDATA[An isolation level determines the degree of isolation of data between concurrent transactions. The default SQL Server isolation level is Read Committed. A lower isolation level increases concurrency, but at the expense of data correctness. Conversely, a higher isolation level ensures that data is correct, but can affect concurrency negatively. The isolation level required by [...]]]></description>
			<content:encoded><![CDATA[<p>An isolation level determines the degree of isolation of data between concurrent transactions. The default SQL Server isolation level is Read Committed. A lower isolation level increases concurrency, but at the expense of data correctness. Conversely, a higher isolation level ensures that data is correct, but can affect concurrency negatively. The isolation level required by an application determines the locking behavior SQL Server uses. SQL-92 defines the following isolation levels, all of which are supported by SQL Server:</p>
<p>Read uncommitted (the lowest level where transactions are isolated only enough to ensure that physically corrupt data is not read).</p>
<p>Read committed (SQL Server default level).  Repeatable read.  Serializable (the highest level, where transactions are completely isolated from one another).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technicalinterview.info/what-is-isolation-level/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What is Transaction?</title>
		<link>http://www.technicalinterview.info/what-is-transaction/</link>
		<comments>http://www.technicalinterview.info/what-is-transaction/#comments</comments>
		<pubDate>Thu, 15 Mar 2007 11:29:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Ms Sql Server Interview Questions]]></category>

		<guid isPermaLink="false">http://www.technicalinterview.info/what-is-transaction.html</guid>
		<description><![CDATA[A transaction is a sequence of operations performed as a single logical unit of work. A logical unit of work must exhibit four properties, called the ACID (Atomicity, Consistency, Isolation, and Durability) properties, to qualify as a transaction.
]]></description>
			<content:encoded><![CDATA[<p>A transaction is a sequence of operations performed as a single logical unit of work. A logical unit of work must exhibit four properties, called the ACID (Atomicity, Consistency, Isolation, and Durability) properties, to qualify as a transaction.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technicalinterview.info/what-is-transaction/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What are the constraints?</title>
		<link>http://www.technicalinterview.info/what-are-the-constraints/</link>
		<comments>http://www.technicalinterview.info/what-are-the-constraints/#comments</comments>
		<pubDate>Thu, 15 Mar 2007 11:29:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Ms Sql Server Interview Questions]]></category>

		<guid isPermaLink="false">http://www.technicalinterview.info/what-are-the-constraints.html</guid>
		<description><![CDATA[Table Constraints define rules regarding the values allowed in columns and are the standard mechanism for enforcing integrity. SQL Server 2000 supports five classes of constraints. NOT NULL , CHECK, UNIQUE, PRIMARY KEY, FOREIGN KEY.
]]></description>
			<content:encoded><![CDATA[<p>Table Constraints define rules regarding the values allowed in columns and are the standard mechanism for enforcing integrity. SQL Server 2000 supports five classes of constraints. NOT NULL , CHECK, UNIQUE, PRIMARY KEY, FOREIGN KEY.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technicalinterview.info/what-are-the-constraints/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What are defaults? Is there a column to which a default can&#8217;t be bound?</title>
		<link>http://www.technicalinterview.info/what-are-defaults-is-there-a-column-to-which-a-default-cant-be-bound/</link>
		<comments>http://www.technicalinterview.info/what-are-defaults-is-there-a-column-to-which-a-default-cant-be-bound/#comments</comments>
		<pubDate>Thu, 15 Mar 2007 11:28:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Ms Sql Server Interview Questions]]></category>

		<guid isPermaLink="false">http://www.technicalinterview.info/what-are-defaults-is-there-a-column-to-which-a-default-cant-be-bound.html</guid>
		<description><![CDATA[A default is a value that will be used by a column, if no value is supplied to that column while inserting data. IDENTITY columns and timestamp columns can&#8217;t have defaults bound to them.
]]></description>
			<content:encoded><![CDATA[<p>A default is a value that will be used by a column, if no value is supplied to that column while inserting data. IDENTITY columns and timestamp columns can&#8217;t have defaults bound to them.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technicalinterview.info/what-are-defaults-is-there-a-column-to-which-a-default-cant-be-bound/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What is DTS?</title>
		<link>http://www.technicalinterview.info/what-is-dts/</link>
		<comments>http://www.technicalinterview.info/what-is-dts/#comments</comments>
		<pubDate>Thu, 15 Mar 2007 11:27:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Ms Sql Server Interview Questions]]></category>

		<guid isPermaLink="false">http://www.technicalinterview.info/what-is-dts.html</guid>
		<description><![CDATA[Microsoft® SQL Server™ 2000 Data Transformation Services (DTS) is a set of graphical tools and programmable objects that lets you extract, transform, and consolidate data from disparate sources into single or multiple destinations.
]]></description>
			<content:encoded><![CDATA[<p>Microsoft® SQL Server™ 2000 Data Transformation Services (DTS) is a set of graphical tools and programmable objects that lets you extract, transform, and <a href="http://www.nodebttoday.com/">consolidate</a> data from disparate sources into single or multiple destinations.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technicalinterview.info/what-is-dts/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What is DTC?</title>
		<link>http://www.technicalinterview.info/what-is-dtc/</link>
		<comments>http://www.technicalinterview.info/what-is-dtc/#comments</comments>
		<pubDate>Thu, 15 Mar 2007 11:27:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Ms Sql Server Interview Questions]]></category>

		<guid isPermaLink="false">http://www.technicalinterview.info/what-is-dtc.html</guid>
		<description><![CDATA[The Microsoft Distributed Transaction Coordinator (MS DTC) is a transaction manager that allows client applications to include several different sources of data in one transaction. MS DTC coordinates committing the distributed transaction across all the servers enlisted in the transaction.
]]></description>
			<content:encoded><![CDATA[<p>The Microsoft Distributed Transaction Coordinator (MS DTC) is a transaction manager that allows client applications to include several different sources of data in one transaction. MS DTC coordinates committing the distributed transaction across all the servers enlisted in the transaction.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technicalinterview.info/what-is-dtc/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Does SQL Server 2000 clustering support load balancing?</title>
		<link>http://www.technicalinterview.info/does-sql-server-2000-clustering-support-load-balancing/</link>
		<comments>http://www.technicalinterview.info/does-sql-server-2000-clustering-support-load-balancing/#comments</comments>
		<pubDate>Thu, 15 Mar 2007 11:26:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Ms Sql Server Interview Questions]]></category>

		<guid isPermaLink="false">http://www.technicalinterview.info/does-sql-server-2000-clustering-support-load-balancing.html</guid>
		<description><![CDATA[SQL Server 2000 clustering does not provide load balancing; it provides failover support. To achieve load balancing, you need software that balances the load between clusters, not between servers within a cluster.
]]></description>
			<content:encoded><![CDATA[<p>SQL Server 2000 clustering does not provide load balancing; it provides failover support. To achieve load balancing, you need software that balances the load between clusters, not between servers within a cluster.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technicalinterview.info/does-sql-server-2000-clustering-support-load-balancing/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to restart SQL Server in single user mode?</title>
		<link>http://www.technicalinterview.info/how-to-restart-sql-server-in-single-user-mode/</link>
		<comments>http://www.technicalinterview.info/how-to-restart-sql-server-in-single-user-mode/#comments</comments>
		<pubDate>Thu, 15 Mar 2007 11:26:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Ms Sql Server Interview Questions]]></category>

		<guid isPermaLink="false">http://www.technicalinterview.info/how-to-restart-sql-server-in-single-user-mode.html</guid>
		<description><![CDATA[From Startup Options :- Go to SQL Server Properties by right-clicking on the Server name in the Enterprise manager. Under the &#8216;General&#8217; tab, click on &#8216;Startup Parameters&#8217;. Enter a value of -m in the Parameter.
]]></description>
			<content:encoded><![CDATA[<p>From Startup Options :- Go to SQL Server Properties by right-clicking on the Server name in the Enterprise manager. Under the &#8216;General&#8217; tab, click on &#8216;Startup Parameters&#8217;. Enter a value of -m in the Parameter.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technicalinterview.info/how-to-restart-sql-server-in-single-user-mode/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What is a LiveLock?</title>
		<link>http://www.technicalinterview.info/what-is-a-livelock/</link>
		<comments>http://www.technicalinterview.info/what-is-a-livelock/#comments</comments>
		<pubDate>Thu, 15 Mar 2007 11:26:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Ms Sql Server Interview Questions]]></category>

		<guid isPermaLink="false">http://www.technicalinterview.info/what-is-a-livelock.html</guid>
		<description><![CDATA[A livelock is one, where a request for an exclusive lock is repeatedly denied because a series of overlapping shared locks keeps interfering. SQL Server detects the situation after four denials and refuses further shared locks. A livelock also occurs when read transactions monopolize a table or page, forcing a write transaction to wait indefinitely.
]]></description>
			<content:encoded><![CDATA[<p>A livelock is one, where a request for an exclusive lock is repeatedly denied because a series of overlapping shared locks keeps interfering. SQL Server detects the situation after four denials and refuses further shared locks. A livelock also occurs when read transactions monopolize a table or page, forcing a write transaction to wait indefinitely.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technicalinterview.info/what-is-a-livelock/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What is a deadlock?</title>
		<link>http://www.technicalinterview.info/what-is-a-deadlock/</link>
		<comments>http://www.technicalinterview.info/what-is-a-deadlock/#comments</comments>
		<pubDate>Thu, 15 Mar 2007 11:25:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Ms Sql Server Interview Questions]]></category>

		<guid isPermaLink="false">http://www.technicalinterview.info/what-is-a-deadlock.html</guid>
		<description><![CDATA[Deadlock is a situation when two processes, each having a lock on one piece of data, attempt to acquire a lock on the other&#8217;s piece. Each process would wait indefinitely for the other to release the lock, unless one of the user processes is terminated. SQL Server detects deadlocks and terminates one user&#8217;s process.
]]></description>
			<content:encoded><![CDATA[<p>Deadlock is a situation when two processes, each having a lock on one piece of data, attempt to acquire a lock on the other&#8217;s piece. Each process would wait indefinitely for the other to release the lock, unless one of the user processes is terminated. SQL Server detects deadlocks and terminates one user&#8217;s process.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technicalinterview.info/what-is-a-deadlock/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
