<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: SQL SERVER &#8211; 2008 &#8211; Interview Questions and Answers Complete List Download</title>
	<atom:link href="http://blog.sqlauthority.com/2008/09/20/sql-server-2008-interview-questions-and-answers-complete-list-download/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2008/09/20/sql-server-2008-interview-questions-and-answers-complete-list-download/</link>
	<description>Notes of a SQL Server MVP and Database Administrator</description>
	<lastBuildDate>Sat, 21 Nov 2009 05:54:09 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Shyam Alban</title>
		<link>http://blog.sqlauthority.com/2008/09/20/sql-server-2008-interview-questions-and-answers-complete-list-download/#comment-57752</link>
		<dc:creator>Shyam Alban</dc:creator>
		<pubDate>Thu, 19 Nov 2009 21:17:05 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1134#comment-57752</guid>
		<description>Thanks a Lot :-)</description>
		<content:encoded><![CDATA[<p>Thanks a Lot :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian Tkatch</title>
		<link>http://blog.sqlauthority.com/2008/09/20/sql-server-2008-interview-questions-and-answers-complete-list-download/#comment-56861</link>
		<dc:creator>Brian Tkatch</dc:creator>
		<pubDate>Wed, 21 Oct 2009 14:04:45 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1134#comment-56861</guid>
		<description>@Ashwin

Without a WHERE clause? That&#039;s an interesting question. That answer is yes, though it is inefficient. If the only the second record is wanted:

DECLARE @A TABLE (A INT);
INSERT INTO @A SELECT 1 UNION ALL SELECT 2 UNION ALL SELECT 3;

SELECT TOP(1)
		A
FROM
		(
		 SELECT TOP(2)
				A
		 FROM
				@A
		 ORDER BY
				A
		) A
ORDER BY
		A DESC;</description>
		<content:encoded><![CDATA[<p>@Ashwin</p>
<p>Without a WHERE clause? That&#8217;s an interesting question. That answer is yes, though it is inefficient. If the only the second record is wanted:</p>
<p>DECLARE @A TABLE (A INT);<br />
INSERT INTO @A SELECT 1 UNION ALL SELECT 2 UNION ALL SELECT 3;</p>
<p>SELECT TOP(1)<br />
		A<br />
FROM<br />
		(<br />
		 SELECT TOP(2)<br />
				A<br />
		 FROM<br />
				@A<br />
		 ORDER BY<br />
				A<br />
		) A<br />
ORDER BY<br />
		A DESC;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ashwin Shende</title>
		<link>http://blog.sqlauthority.com/2008/09/20/sql-server-2008-interview-questions-and-answers-complete-list-download/#comment-56853</link>
		<dc:creator>Ashwin Shende</dc:creator>
		<pubDate>Wed, 21 Oct 2009 12:24:37 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1134#comment-56853</guid>
		<description>Hi Pinal,

I have a query for you, Can we write a select query to select only nth row from a table without using where clause?

This question was asked to me in one of my interview.

Regards,
Ashwin Shende</description>
		<content:encoded><![CDATA[<p>Hi Pinal,</p>
<p>I have a query for you, Can we write a select query to select only nth row from a table without using where clause?</p>
<p>This question was asked to me in one of my interview.</p>
<p>Regards,<br />
Ashwin Shende</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chús</title>
		<link>http://blog.sqlauthority.com/2008/09/20/sql-server-2008-interview-questions-and-answers-complete-list-download/#comment-56558</link>
		<dc:creator>Chús</dc:creator>
		<pubDate>Fri, 09 Oct 2009 12:43:07 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1134#comment-56558</guid>
		<description>nice job! your Q&amp;A is most appreciated
Thanks</description>
		<content:encoded><![CDATA[<p>nice job! your Q&amp;A is most appreciated<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sunil Grewal</title>
		<link>http://blog.sqlauthority.com/2008/09/20/sql-server-2008-interview-questions-and-answers-complete-list-download/#comment-56120</link>
		<dc:creator>Sunil Grewal</dc:creator>
		<pubDate>Thu, 24 Sep 2009 09:59:43 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1134#comment-56120</guid>
		<description>Hi Pinal ,

I have written the query in MDX Query Editor in SOL Server 2008 Successfully,
But the problem is when we implement the same query in Cube(as expression in calculated measure) its not working in SSAS 2008

The Error is:- Select statement is not correct in MDX Expression</description>
		<content:encoded><![CDATA[<p>Hi Pinal ,</p>
<p>I have written the query in MDX Query Editor in SOL Server 2008 Successfully,<br />
But the problem is when we implement the same query in Cube(as expression in calculated measure) its not working in SSAS 2008</p>
<p>The Error is:- Select statement is not correct in MDX Expression</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RAMBABU</title>
		<link>http://blog.sqlauthority.com/2008/09/20/sql-server-2008-interview-questions-and-answers-complete-list-download/#comment-55492</link>
		<dc:creator>RAMBABU</dc:creator>
		<pubDate>Tue, 01 Sep 2009 20:36:04 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1134#comment-55492</guid>
		<description>Hi Dave
             An excellent work and very useful material.
               thanks for providing
&amp;           Congrats on having baby</description>
		<content:encoded><![CDATA[<p>Hi Dave<br />
             An excellent work and very useful material.<br />
               thanks for providing<br />
&amp;           Congrats on having baby</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mansuri</title>
		<link>http://blog.sqlauthority.com/2008/09/20/sql-server-2008-interview-questions-and-answers-complete-list-download/#comment-55460</link>
		<dc:creator>Mansuri</dc:creator>
		<pubDate>Tue, 01 Sep 2009 09:34:34 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1134#comment-55460</guid>
		<description>Hi Pinal,

I want to get certification for SQL Server 2005/2008. Can you please provide me the reading material for the same.

Thanks,</description>
		<content:encoded><![CDATA[<p>Hi Pinal,</p>
<p>I want to get certification for SQL Server 2005/2008. Can you please provide me the reading material for the same.</p>
<p>Thanks,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Manohar</title>
		<link>http://blog.sqlauthority.com/2008/09/20/sql-server-2008-interview-questions-and-answers-complete-list-download/#comment-55137</link>
		<dc:creator>Manohar</dc:creator>
		<pubDate>Sun, 23 Aug 2009 17:38:50 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1134#comment-55137</guid>
		<description>Pinal sir.. great work ...</description>
		<content:encoded><![CDATA[<p>Pinal sir.. great work &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anks</title>
		<link>http://blog.sqlauthority.com/2008/09/20/sql-server-2008-interview-questions-and-answers-complete-list-download/#comment-54896</link>
		<dc:creator>Anks</dc:creator>
		<pubDate>Sun, 16 Aug 2009 18:30:00 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1134#comment-54896</guid>
		<description>Thanks so much for the Questions and Answers

Thanks again!!!!

Anks</description>
		<content:encoded><![CDATA[<p>Thanks so much for the Questions and Answers</p>
<p>Thanks again!!!!</p>
<p>Anks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shravan</title>
		<link>http://blog.sqlauthority.com/2008/09/20/sql-server-2008-interview-questions-and-answers-complete-list-download/#comment-54699</link>
		<dc:creator>Shravan</dc:creator>
		<pubDate>Mon, 10 Aug 2009 18:45:02 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1134#comment-54699</guid>
		<description>Hey!

Brilliant blog!
Thanks for the pdf!

Regards,
Shravan.</description>
		<content:encoded><![CDATA[<p>Hey!</p>
<p>Brilliant blog!<br />
Thanks for the pdf!</p>
<p>Regards,<br />
Shravan.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gangadhar Kotu</title>
		<link>http://blog.sqlauthority.com/2008/09/20/sql-server-2008-interview-questions-and-answers-complete-list-download/#comment-54412</link>
		<dc:creator>Gangadhar Kotu</dc:creator>
		<pubDate>Tue, 04 Aug 2009 10:42:49 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1134#comment-54412</guid>
		<description>Really awesome help.</description>
		<content:encoded><![CDATA[<p>Really awesome help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER – 2008 – Interview Questions and Answers – Part 5 Journey to SQL Authority with Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2008/09/20/sql-server-2008-interview-questions-and-answers-complete-list-download/#comment-54214</link>
		<dc:creator>SQL SERVER – 2008 – Interview Questions and Answers – Part 5 Journey to SQL Authority with Pinal Dave</dc:creator>
		<pubDate>Wed, 29 Jul 2009 15:56:38 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1134#comment-54214</guid>
		<description>[...] September 16, 2008 by pinaldave    SQL SERVER – 2008 – Interview Questions and Answers Complete List Download [...]</description>
		<content:encoded><![CDATA[<p>[...] September 16, 2008 by pinaldave    SQL SERVER – 2008 – Interview Questions and Answers Complete List Download [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sidd</title>
		<link>http://blog.sqlauthority.com/2008/09/20/sql-server-2008-interview-questions-and-answers-complete-list-download/#comment-54066</link>
		<dc:creator>Sidd</dc:creator>
		<pubDate>Fri, 24 Jul 2009 13:07:52 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1134#comment-54066</guid>
		<description>Dear @param,

It has been observed that microsoft copies the idea from other softwares or products and make their own one.

However, I&#039;d recommend that If you are really interested in database then you should go for Oracle.

There&#039;s so many reasons but I&#039;ll not going in depth.

Thanks!</description>
		<content:encoded><![CDATA[<p>Dear @param,</p>
<p>It has been observed that microsoft copies the idea from other softwares or products and make their own one.</p>
<p>However, I&#8217;d recommend that If you are really interested in database then you should go for Oracle.</p>
<p>There&#8217;s so many reasons but I&#8217;ll not going in depth.</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Imran Mohammed</title>
		<link>http://blog.sqlauthority.com/2008/09/20/sql-server-2008-interview-questions-and-answers-complete-list-download/#comment-53840</link>
		<dc:creator>Imran Mohammed</dc:creator>
		<pubDate>Sun, 19 Jul 2009 17:07:29 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1134#comment-53840</guid>
		<description>@Dinesh, 

If you want sample databases, on which you can learn some Good SQL. Then try installing sample databases. 

Here is a step by step pictorial explanation on how to install sample databases.

http://blog.sqlauthority.com/2008/08/10/sql-server-2008-download-and-install-samples-database-adventureworks-2005-detail-tutorial/

~ IM.</description>
		<content:encoded><![CDATA[<p>@Dinesh, </p>
<p>If you want sample databases, on which you can learn some Good SQL. Then try installing sample databases. </p>
<p>Here is a step by step pictorial explanation on how to install sample databases.</p>
<p><a href="http://blog.sqlauthority.com/2008/08/10/sql-server-2008-download-and-install-samples-database-adventureworks-2005-detail-tutorial/" rel="nofollow">http://blog.sqlauthority.com/2008/08/10/sql-server-2008-download-and-install-samples-database-adventureworks-2005-detail-tutorial/</a></p>
<p>~ IM.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dinesh Tiwari</title>
		<link>http://blog.sqlauthority.com/2008/09/20/sql-server-2008-interview-questions-and-answers-complete-list-download/#comment-53829</link>
		<dc:creator>Dinesh Tiwari</dc:creator>
		<pubDate>Sun, 19 Jul 2009 01:18:22 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1134#comment-53829</guid>
		<description>I have install sql server 2005 in vista ultmate without any problem but not any database is install tell me how can I intall the database and I am not able to write any sql query.</description>
		<content:encoded><![CDATA[<p>I have install sql server 2005 in vista ultmate without any problem but not any database is install tell me how can I intall the database and I am not able to write any sql query.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: udmalla</title>
		<link>http://blog.sqlauthority.com/2008/09/20/sql-server-2008-interview-questions-and-answers-complete-list-download/#comment-53784</link>
		<dc:creator>udmalla</dc:creator>
		<pubDate>Fri, 17 Jul 2009 05:43:21 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1134#comment-53784</guid>
		<description>I want to learn SQL 2008 and installed, but no front end, like query analyzer, or query developer installed, am I missing something, I tried installing the SQL Management Studio_x86_ENU studio but none looks like installed on my system, my operating system is Windows Vista Ultimate.
Please, guide me, your help is appreciated. - Thank you.

Best regards
udmalla</description>
		<content:encoded><![CDATA[<p>I want to learn SQL 2008 and installed, but no front end, like query analyzer, or query developer installed, am I missing something, I tried installing the SQL Management Studio_x86_ENU studio but none looks like installed on my system, my operating system is Windows Vista Ultimate.<br />
Please, guide me, your help is appreciated. &#8211; Thank you.</p>
<p>Best regards<br />
udmalla</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: param</title>
		<link>http://blog.sqlauthority.com/2008/09/20/sql-server-2008-interview-questions-and-answers-complete-list-download/#comment-53382</link>
		<dc:creator>param</dc:creator>
		<pubDate>Wed, 01 Jul 2009 17:08:43 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1134#comment-53382</guid>
		<description>i want to build my career in database.
could u tell me for which certification should i go?
i mean ORACLE or SQL2008.
someone told me that sqlserver2008 will be the best. i m getting confused. pls suggest me.
I  m pursuing MCA final year from regular.






thanks
paramjeet singh</description>
		<content:encoded><![CDATA[<p>i want to build my career in database.<br />
could u tell me for which certification should i go?<br />
i mean ORACLE or SQL2008.<br />
someone told me that sqlserver2008 will be the best. i m getting confused. pls suggest me.<br />
I  m pursuing MCA final year from regular.</p>
<p>thanks<br />
paramjeet singh</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rashmi</title>
		<link>http://blog.sqlauthority.com/2008/09/20/sql-server-2008-interview-questions-and-answers-complete-list-download/#comment-52941</link>
		<dc:creator>Rashmi</dc:creator>
		<pubDate>Thu, 11 Jun 2009 13:41:05 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1134#comment-52941</guid>
		<description>Thank you for the Q&amp;A pdf. This is really precise and very helpful.</description>
		<content:encoded><![CDATA[<p>Thank you for the Q&amp;A pdf. This is really precise and very helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rakesh Mishra</title>
		<link>http://blog.sqlauthority.com/2008/09/20/sql-server-2008-interview-questions-and-answers-complete-list-download/#comment-52726</link>
		<dc:creator>Rakesh Mishra</dc:creator>
		<pubDate>Thu, 04 Jun 2009 10:59:44 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1134#comment-52726</guid>
		<description>Hi, 
I was going thru your interview question collection. In your question &quot;What is difference between DELETE &amp; TRUNCATE commands?&quot; you have mentioned that &quot;TRUNCATE cannot be rolled back&quot;. But I believe this in NOT true and we can rollback a truncate statement. 
For example: 
Create table #test (I int)
Insert into #test values (1)
Begin tran
Truncate table #test
Rollback
Select * from #test
Drop table #test

The above code snippet returns a value 1. Could you please tell me how this is possible? 

Regards,
Rakesh</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I was going thru your interview question collection. In your question &#8220;What is difference between DELETE &amp; TRUNCATE commands?&#8221; you have mentioned that &#8220;TRUNCATE cannot be rolled back&#8221;. But I believe this in NOT true and we can rollback a truncate statement.<br />
For example:<br />
Create table #test (I int)<br />
Insert into #test values (1)<br />
Begin tran<br />
Truncate table #test<br />
Rollback<br />
Select * from #test<br />
Drop table #test</p>
<p>The above code snippet returns a value 1. Could you please tell me how this is possible? </p>
<p>Regards,<br />
Rakesh</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rinku</title>
		<link>http://blog.sqlauthority.com/2008/09/20/sql-server-2008-interview-questions-and-answers-complete-list-download/#comment-51995</link>
		<dc:creator>Rinku</dc:creator>
		<pubDate>Mon, 18 May 2009 04:38:26 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1134#comment-51995</guid>
		<description>I am getting this kind of  error.  during the installation i didnt give any login name and password . so what to enter here as login name i dont know.i tried some of them ur solution still give me same error. My Os is window vista and if i try to see service from computer management does not give me service of sql server.

please help me out.

TITLE: Connect to Server
------------------------------

Cannot connect to 76.194.236.194.

------------------------------
ADDITIONAL INFORMATION:

A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server) (Microsoft SQL Server, Error: 3)</description>
		<content:encoded><![CDATA[<p>I am getting this kind of  error.  during the installation i didnt give any login name and password . so what to enter here as login name i dont know.i tried some of them ur solution still give me same error. My Os is window vista and if i try to see service from computer management does not give me service of sql server.</p>
<p>please help me out.</p>
<p>TITLE: Connect to Server<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>Cannot connect to 76.194.236.194.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
ADDITIONAL INFORMATION:</p>
<p>A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 &#8211; Could not open a connection to SQL Server) (Microsoft SQL Server, Error: 3)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
