<?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; 2005 NorthWind Database or AdventureWorks Database &#8211; Samples Databases</title>
	<atom:link href="http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Mon, 13 Feb 2012 15:11:24 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: madhivanan</title>
		<link>http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-177974</link>
		<dc:creator><![CDATA[madhivanan]]></dc:creator>
		<pubDate>Wed, 12 Oct 2011 13:32:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-177974</guid>
		<description><![CDATA[Refer this post and ask us if you have any specific doubt
http://beyondrelational.com/blogs/madhivanan/archive/2008/08/27/dynamic-pivot-in-sql-server-2005.aspx]]></description>
		<content:encoded><![CDATA[<p>Refer this post and ask us if you have any specific doubt<br />
<a href="http://beyondrelational.com/blogs/madhivanan/archive/2008/08/27/dynamic-pivot-in-sql-server-2005.aspx" rel="nofollow">http://beyondrelational.com/blogs/madhivanan/archive/2008/08/27/dynamic-pivot-in-sql-server-2005.aspx</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sushmita</title>
		<link>http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-177934</link>
		<dc:creator><![CDATA[sushmita]]></dc:creator>
		<pubDate>Wed, 12 Oct 2011 11:02:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-177934</guid>
		<description><![CDATA[hello pls can you help me regarding the post above as i am stuck and not able to do crosstab query or pivot

thanx in advance]]></description>
		<content:encoded><![CDATA[<p>hello pls can you help me regarding the post above as i am stuck and not able to do crosstab query or pivot</p>
<p>thanx in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sushmita</title>
		<link>http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-177933</link>
		<dc:creator><![CDATA[sushmita]]></dc:creator>
		<pubDate>Wed, 12 Oct 2011 10:59:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-177933</guid>
		<description><![CDATA[AUD		CHF		DKK		EUR			
AUD	1.3691	1		1.10634	0.18393	1.3691	

i want to calculate 	
aud / aud  (=1.3691000000/1.3691000000)	= 1
aud / chf (=1.3691000000/ 1.2375000000)	= 1.106343434
aud / dkk (=1.3691000000/ 7.4432) = 0.183939703
aud / eur (=1.3691000000/ 1) = 1.3691	

		          AUD	CHF	DKK		EUR	
CHF	1.2375	0.90387	1	0.16625   1.2375	
likewise
chf / chf (= 1.2375000000 / 1.2375000000 )= 1
chf / aud (= 1.2375000000 / 1.3691000000 )= 0.90387
chf / dkk (= 1.2375000000 /7.4432	) = 0.16625
chf / dkk (= 1.2375000000 /1	) 	  = 1.2375	


		         AUD	CHF	       DKK    EUR	
DKK	7.4432	5.43656	6.01470    1	7.4432
so..on

		AUD		CHF		DKK		EUR	
EUR	  1	0.73040	0.80808	0.13435      1	

My query is 
SELECT 
DISTINCT
Curncy_Info_Cur.Currency AS Curncy,	
Curncy_Info_Rate.Spot_Rate AS Spot_Rate
FROM 
Curncy_Info AS Curncy_Info_Cur
LEFT OUTER JOIN Curncy_Info AS Curncy_Info_Rate ON Curncy_Info_Cur.Currency=Curncy_Info_Rate.Currency
AND Curncy_Info_Rate.Period=(SELECT Net_Status.Netting_Period FROM Net_Status WHERE Net_Status.Netting_Status=&#039;1&#039; AND Net_Status.Phase=&#039;netting&#039; )
ORDER BY Curncy_Info_Cur.Currency												

gives output below													

AUD	1.3691												
CHF	1.2375												
DKK	7.4432												
EUR	1												
GBP	0.867												
JPY	103.896												
MXN	18.0583												
NZD	1.74431
PLN	4.328
THB	41.91
USD	1.3563
ZAR	0]]></description>
		<content:encoded><![CDATA[<p>AUD		CHF		DKK		EUR<br />
AUD	1.3691	1		1.10634	0.18393	1.3691	</p>
<p>i want to calculate<br />
aud / aud  (=1.3691000000/1.3691000000)	= 1<br />
aud / chf (=1.3691000000/ 1.2375000000)	= 1.106343434<br />
aud / dkk (=1.3691000000/ 7.4432) = 0.183939703<br />
aud / eur (=1.3691000000/ 1) = 1.3691	</p>
<p>		          AUD	CHF	DKK		EUR<br />
CHF	1.2375	0.90387	1	0.16625   1.2375<br />
likewise<br />
chf / chf (= 1.2375000000 / 1.2375000000 )= 1<br />
chf / aud (= 1.2375000000 / 1.3691000000 )= 0.90387<br />
chf / dkk (= 1.2375000000 /7.4432	) = 0.16625<br />
chf / dkk (= 1.2375000000 /1	) 	  = 1.2375	</p>
<p>		         AUD	CHF	       DKK    EUR<br />
DKK	7.4432	5.43656	6.01470    1	7.4432<br />
so..on</p>
<p>		AUD		CHF		DKK		EUR<br />
EUR	  1	0.73040	0.80808	0.13435      1	</p>
<p>My query is<br />
SELECT<br />
DISTINCT<br />
Curncy_Info_Cur.Currency AS Curncy,<br />
Curncy_Info_Rate.Spot_Rate AS Spot_Rate<br />
FROM<br />
Curncy_Info AS Curncy_Info_Cur<br />
LEFT OUTER JOIN Curncy_Info AS Curncy_Info_Rate ON Curncy_Info_Cur.Currency=Curncy_Info_Rate.Currency<br />
AND Curncy_Info_Rate.Period=(SELECT Net_Status.Netting_Period FROM Net_Status WHERE Net_Status.Netting_Status=&#8217;1&#8242; AND Net_Status.Phase=&#8217;netting&#8217; )<br />
ORDER BY Curncy_Info_Cur.Currency												</p>
<p>gives output below													</p>
<p>AUD	1.3691<br />
CHF	1.2375<br />
DKK	7.4432<br />
EUR	1<br />
GBP	0.867<br />
JPY	103.896<br />
MXN	18.0583<br />
NZD	1.74431<br />
PLN	4.328<br />
THB	41.91<br />
USD	1.3563<br />
ZAR	0</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pratima</title>
		<link>http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-167213</link>
		<dc:creator><![CDATA[Pratima]]></dc:creator>
		<pubDate>Sun, 11 Sep 2011 09:04:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-167213</guid>
		<description><![CDATA[Well when i tried connecting to adventure works database from visual studio 2008, i get many errors on the web browser, but when i connect to northwind or pubs database i get the orignal database on the browser,   why does it happen with adventureworks??]]></description>
		<content:encoded><![CDATA[<p>Well when i tried connecting to adventure works database from visual studio 2008, i get many errors on the web browser, but when i connect to northwind or pubs database i get the orignal database on the browser,   why does it happen with adventureworks??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Naveed Arain</title>
		<link>http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-154587</link>
		<dc:creator><![CDATA[Naveed Arain]]></dc:creator>
		<pubDate>Sun, 07 Aug 2011 06:20:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-154587</guid>
		<description><![CDATA[I am new in SQL Server 2005, I have installed SQL SErver 2005 standard edition in my PC and it is working fine but its not working in my Laptop
I have WIN 7 installed in my Laptop 
Please help and respond]]></description>
		<content:encoded><![CDATA[<p>I am new in SQL Server 2005, I have installed SQL SErver 2005 standard edition in my PC and it is working fine but its not working in my Laptop<br />
I have WIN 7 installed in my Laptop<br />
Please help and respond</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ahmad</title>
		<link>http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-149142</link>
		<dc:creator><![CDATA[Ahmad]]></dc:creator>
		<pubDate>Mon, 18 Jul 2011 12:28:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-149142</guid>
		<description><![CDATA[Hello!!!!!!!!!!!!!!!!!!!!
Just i wnt thanks you for your good website.
thanks..................]]></description>
		<content:encoded><![CDATA[<p>Hello!!!!!!!!!!!!!!!!!!!!<br />
Just i wnt thanks you for your good website.<br />
thanks&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Reza</title>
		<link>http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-129936</link>
		<dc:creator><![CDATA[Reza]]></dc:creator>
		<pubDate>Tue, 19 Apr 2011 08:13:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-129936</guid>
		<description><![CDATA[Good day Sir

I&#039;ve just started familiarising myself with SQL and programming in general again. I&#039;ve installed SQL Server 2005 Express successfully and downloaded the AdventureWorks sample database. I&#039;m sure you aware that the database cannot be attached using the Control Panel/Program Features in Windows 7 as there is no option to add to the current SQL 2005 Express installation. How else can I add the DB, is there a script I can run perhaps?


Thanks!]]></description>
		<content:encoded><![CDATA[<p>Good day Sir</p>
<p>I&#8217;ve just started familiarising myself with SQL and programming in general again. I&#8217;ve installed SQL Server 2005 Express successfully and downloaded the AdventureWorks sample database. I&#8217;m sure you aware that the database cannot be attached using the Control Panel/Program Features in Windows 7 as there is no option to add to the current SQL 2005 Express installation. How else can I add the DB, is there a script I can run perhaps?</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pratibha</title>
		<link>http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-123025</link>
		<dc:creator><![CDATA[pratibha]]></dc:creator>
		<pubDate>Sat, 12 Mar 2011 16:30:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-123025</guid>
		<description><![CDATA[how can i install sql server on windows 2007]]></description>
		<content:encoded><![CDATA[<p>how can i install sql server on windows 2007</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madhivanan</title>
		<link>http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-121652</link>
		<dc:creator><![CDATA[madhivanan]]></dc:creator>
		<pubDate>Thu, 03 Mar 2011 08:29:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-121652</guid>
		<description><![CDATA[You can try out the examples given in SQL Server help file on AdventureWorksDB]]></description>
		<content:encoded><![CDATA[<p>You can try out the examples given in SQL Server help file on AdventureWorksDB</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pawan</title>
		<link>http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-121363</link>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
		<pubDate>Tue, 01 Mar 2011 13:12:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-121363</guid>
		<description><![CDATA[Sir ,i want to know  that what is use of sample database. i installed AdventureWorksDB .how is it use for project/application
plz send mail for it.]]></description>
		<content:encoded><![CDATA[<p>Sir ,i want to know  that what is use of sample database. i installed AdventureWorksDB .how is it use for project/application<br />
plz send mail for it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: suhasini</title>
		<link>http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-106300</link>
		<dc:creator><![CDATA[suhasini]]></dc:creator>
		<pubDate>Fri, 17 Dec 2010 14:48:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-106300</guid>
		<description><![CDATA[dear sir,
   i need sample database for transaction database..if u can send it to my email.]]></description>
		<content:encoded><![CDATA[<p>dear sir,<br />
   i need sample database for transaction database..if u can send it to my email.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: baybilei</title>
		<link>http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-99287</link>
		<dc:creator><![CDATA[baybilei]]></dc:creator>
		<pubDate>Fri, 12 Nov 2010 10:41:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-99287</guid>
		<description><![CDATA[sir sql server 2008 already installed and i already create a sample database on it and create a table.but once i close it and open it again an error is occured here&#039;s the error:

Cannot connect to ST-AADO87B6E61E

Additional inforamation:
   Login failde for user &#039;ST-AADO87B6E61E\student&#039;
(Microsoft SQL Server, ERROR:18456)

Thank sir
&#039;]]></description>
		<content:encoded><![CDATA[<p>sir sql server 2008 already installed and i already create a sample database on it and create a table.but once i close it and open it again an error is occured here&#8217;s the error:</p>
<p>Cannot connect to ST-AADO87B6E61E</p>
<p>Additional inforamation:<br />
   Login failde for user &#8216;ST-AADO87B6E61E\student&#8217;<br />
(Microsoft SQL Server, ERROR:18456)</p>
<p>Thank sir<br />
&#8216;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madhivanan</title>
		<link>http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-99024</link>
		<dc:creator><![CDATA[madhivanan]]></dc:creator>
		<pubDate>Thu, 11 Nov 2010 08:20:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-99024</guid>
		<description><![CDATA[A good way is to read questions asked in the forums]]></description>
		<content:encoded><![CDATA[<p>A good way is to read questions asked in the forums</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: baybilei</title>
		<link>http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-98835</link>
		<dc:creator><![CDATA[baybilei]]></dc:creator>
		<pubDate>Wed, 10 Nov 2010 08:56:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-98835</guid>
		<description><![CDATA[gud day sir...
i&#039;m just a newbies regarding a sql server 2008..can you help me to find a site where i can download simple exercises on it..
thank you]]></description>
		<content:encoded><![CDATA[<p>gud day sir&#8230;<br />
i&#8217;m just a newbies regarding a sql server 2008..can you help me to find a site where i can download simple exercises on it..<br />
thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hung Pham</title>
		<link>http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-97802</link>
		<dc:creator><![CDATA[Hung Pham]]></dc:creator>
		<pubDate>Thu, 04 Nov 2010 11:14:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-97802</guid>
		<description><![CDATA[Hi dave:
I am new to SQL Server. I have successfully installed .Net Framework 3.5.1, SQL Server 2008 developer version (on Windows Vista Home edition) and AdventureWork sample database per your suggestions on your web site. But I just can’t see the diagrams. When I click at the DB on the left side, windows on the right side is Blank instead of showing the diagrams of each table.
What did I do wrong? or do I need more new SW missing?…. If so, please give me links for download. Any help it will be greatly appreciate!!!
Thanks!!!
Hung]]></description>
		<content:encoded><![CDATA[<p>Hi dave:<br />
I am new to SQL Server. I have successfully installed .Net Framework 3.5.1, SQL Server 2008 developer version (on Windows Vista Home edition) and AdventureWork sample database per your suggestions on your web site. But I just can’t see the diagrams. When I click at the DB on the left side, windows on the right side is Blank instead of showing the diagrams of each table.<br />
What did I do wrong? or do I need more new SW missing?…. If so, please give me links for download. Any help it will be greatly appreciate!!!<br />
Thanks!!!<br />
Hung</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fahad</title>
		<link>http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-78857</link>
		<dc:creator><![CDATA[fahad]]></dc:creator>
		<pubDate>Mon, 05 Jul 2010 22:36:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-78857</guid>
		<description><![CDATA[you are one of the good in SQL Thanks.
Fahad Ansari.]]></description>
		<content:encoded><![CDATA[<p>you are one of the good in SQL Thanks.<br />
Fahad Ansari.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: islam elkhadawey</title>
		<link>http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-78319</link>
		<dc:creator><![CDATA[islam elkhadawey]]></dc:creator>
		<pubDate>Wed, 30 Jun 2010 15:43:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-78319</guid>
		<description><![CDATA[my ( sample soft database.mdf ) is lost and i don&#039;t know what i can do to recover it please help me. sql server-2005]]></description>
		<content:encoded><![CDATA[<p>my ( sample soft database.mdf ) is lost and i don&#8217;t know what i can do to recover it please help me. sql server-2005</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ankit Shah</title>
		<link>http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-75377</link>
		<dc:creator><![CDATA[Ankit Shah]]></dc:creator>
		<pubDate>Thu, 10 Jun 2010 00:20:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-75377</guid>
		<description><![CDATA[If you get the solution of  your problem plz forward me the solution because having same problem i am facing with sql 2005 Adventureworks DB.
Thank you]]></description>
		<content:encoded><![CDATA[<p>If you get the solution of  your problem plz forward me the solution because having same problem i am facing with sql 2005 Adventureworks DB.<br />
Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian Tkatch</title>
		<link>http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-69667</link>
		<dc:creator><![CDATA[Brian Tkatch]]></dc:creator>
		<pubDate>Fri, 07 May 2010 12:57:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-69667</guid>
		<description><![CDATA[@sikha

DROP TRIGGER triggername;]]></description>
		<content:encoded><![CDATA[<p>@sikha</p>
<p>DROP TRIGGER triggername;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian Tkatch</title>
		<link>http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-69666</link>
		<dc:creator><![CDATA[Brian Tkatch]]></dc:creator>
		<pubDate>Fri, 07 May 2010 12:57:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-69666</guid>
		<description><![CDATA[@sikha

DREOP TRIGGER triggername;]]></description>
		<content:encoded><![CDATA[<p>@sikha</p>
<p>DREOP TRIGGER triggername;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sikha</title>
		<link>http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-69656</link>
		<dc:creator><![CDATA[sikha]]></dc:creator>
		<pubDate>Fri, 07 May 2010 11:50:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-69656</guid>
		<description><![CDATA[hi,

how i to delete  the triggers from a database in SQL Server 2005. pls reply]]></description>
		<content:encoded><![CDATA[<p>hi,</p>
<p>how i to delete  the triggers from a database in SQL Server 2005. pls reply</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rino raju</title>
		<link>http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-64878</link>
		<dc:creator><![CDATA[rino raju]]></dc:creator>
		<pubDate>Fri, 09 Apr 2010 06:27:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-64878</guid>
		<description><![CDATA[HI sir 

i need the Northwind sample database .mdf and ldf file for SQL Server 2005 where can i find it .pls reply]]></description>
		<content:encoded><![CDATA[<p>HI sir </p>
<p>i need the Northwind sample database .mdf and ldf file for SQL Server 2005 where can i find it .pls reply</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ranjie</title>
		<link>http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-63279</link>
		<dc:creator><![CDATA[ranjie]]></dc:creator>
		<pubDate>Fri, 19 Mar 2010 11:01:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-63279</guid>
		<description><![CDATA[Sir I have most perfusion of complexity with adventureworks.  Plenty times sql experience and most plentiful my knowledge.  Much much problem task take away good and timely running of the service not knowing how this can be,]]></description>
		<content:encoded><![CDATA[<p>Sir I have most perfusion of complexity with adventureworks.  Plenty times sql experience and most plentiful my knowledge.  Much much problem task take away good and timely running of the service not knowing how this can be,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ramprasad</title>
		<link>http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-63044</link>
		<dc:creator><![CDATA[ramprasad]]></dc:creator>
		<pubDate>Wed, 17 Mar 2010 07:04:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-63044</guid>
		<description><![CDATA[pls tell me the sql sever expression edition2005 in 64bit free download link 
and tell how to install that]]></description>
		<content:encoded><![CDATA[<p>pls tell me the sql sever expression edition2005 in 64bit free download link<br />
and tell how to install that</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jeyanthi</title>
		<link>http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-60081</link>
		<dc:creator><![CDATA[jeyanthi]]></dc:creator>
		<pubDate>Fri, 22 Jan 2010 08:58:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/23/sql-server-2005-northwind-database-or-adventureworks-database-samples-databases/#comment-60081</guid>
		<description><![CDATA[sir,
why we are using adventureworks,go in sql queries in sql 2005.but already we are using quries without &quot;Go  and AdventureWorks&quot;.
Please tell me the Reason sir
                        Thanks]]></description>
		<content:encoded><![CDATA[<p>sir,<br />
why we are using adventureworks,go in sql queries in sql 2005.but already we are using quries without &#8220;Go  and AdventureWorks&#8221;.<br />
Please tell me the Reason sir<br />
                        Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>

