<?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; EXCEPT Clause in SQL Server is Similar to MINUS Clause in Oracle</title>
	<atom:link href="http://blog.sqlauthority.com/2008/08/07/sql-server-except-clause-in-sql-server-is-similar-to-minus-clause-in-oracle/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2008/08/07/sql-server-except-clause-in-sql-server-is-similar-to-minus-clause-in-oracle/</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: Michael Pindrik</title>
		<link>http://blog.sqlauthority.com/2008/08/07/sql-server-except-clause-in-sql-server-is-similar-to-minus-clause-in-oracle/#comment-250706</link>
		<dc:creator><![CDATA[Michael Pindrik]]></dc:creator>
		<pubDate>Thu, 09 Feb 2012 21:55:14 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=791#comment-250706</guid>
		<description><![CDATA[I think the data returned by two SELECTs has match exactly in order for EXEPT to work. I was troubleshooting somebody&#039;s code where EXCEPt did not work because order of fields in the second SELECT did not match the order of field in the first SELECT.]]></description>
		<content:encoded><![CDATA[<p>I think the data returned by two SELECTs has match exactly in order for EXEPT to work. I was troubleshooting somebody&#8217;s code where EXCEPt did not work because order of fields in the second SELECT did not match the order of field in the first SELECT.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stan</title>
		<link>http://blog.sqlauthority.com/2008/08/07/sql-server-except-clause-in-sql-server-is-similar-to-minus-clause-in-oracle/#comment-235290</link>
		<dc:creator><![CDATA[Stan]]></dc:creator>
		<pubDate>Wed, 11 Jan 2012 13:29:28 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=791#comment-235290</guid>
		<description><![CDATA[in addition to what khan is saying, you may want to use for example:

tableA Except tableB

to return data in tableA that don&#039;t match with the data in tableB. Similarly, you can use:

tableB Except tableA

to return data in tableB that don&#039;t match with the data in tableA.]]></description>
		<content:encoded><![CDATA[<p>in addition to what khan is saying, you may want to use for example:</p>
<p>tableA Except tableB</p>
<p>to return data in tableA that don&#8217;t match with the data in tableB. Similarly, you can use:</p>
<p>tableB Except tableA</p>
<p>to return data in tableB that don&#8217;t match with the data in tableA.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rick Jackson</title>
		<link>http://blog.sqlauthority.com/2008/08/07/sql-server-except-clause-in-sql-server-is-similar-to-minus-clause-in-oracle/#comment-228167</link>
		<dc:creator><![CDATA[Rick Jackson]]></dc:creator>
		<pubDate>Thu, 29 Dec 2011 20:11:45 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=791#comment-228167</guid>
		<description><![CDATA[Can you use the except when comparing on 2 different database on same server?]]></description>
		<content:encoded><![CDATA[<p>Can you use the except when comparing on 2 different database on same server?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: loku</title>
		<link>http://blog.sqlauthority.com/2008/08/07/sql-server-except-clause-in-sql-server-is-similar-to-minus-clause-in-oracle/#comment-177422</link>
		<dc:creator><![CDATA[loku]]></dc:creator>
		<pubDate>Tue, 11 Oct 2011 07:10:14 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=791#comment-177422</guid>
		<description><![CDATA[Yes, you very inteligent, please]]></description>
		<content:encoded><![CDATA[<p>Yes, you very inteligent, please</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raghav</title>
		<link>http://blog.sqlauthority.com/2008/08/07/sql-server-except-clause-in-sql-server-is-similar-to-minus-clause-in-oracle/#comment-175141</link>
		<dc:creator><![CDATA[Raghav]]></dc:creator>
		<pubDate>Tue, 04 Oct 2011 19:29:14 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=791#comment-175141</guid>
		<description><![CDATA[Great Share. Thanks a lot.]]></description>
		<content:encoded><![CDATA[<p>Great Share. Thanks a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: zaheer khan</title>
		<link>http://blog.sqlauthority.com/2008/08/07/sql-server-except-clause-in-sql-server-is-similar-to-minus-clause-in-oracle/#comment-151487</link>
		<dc:creator><![CDATA[zaheer khan]]></dc:creator>
		<pubDate>Fri, 29 Jul 2011 05:37:20 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=791#comment-151487</guid>
		<description><![CDATA[Yes.
using sql server use two level of complement using the except operator
and in oracle there is alot of option.
using minus or intersection operator.
may this will be helpfull.]]></description>
		<content:encoded><![CDATA[<p>Yes.<br />
using sql server use two level of complement using the except operator<br />
and in oracle there is alot of option.<br />
using minus or intersection operator.<br />
may this will be helpfull.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: abhijeet</title>
		<link>http://blog.sqlauthority.com/2008/08/07/sql-server-except-clause-in-sql-server-is-similar-to-minus-clause-in-oracle/#comment-151058</link>
		<dc:creator><![CDATA[abhijeet]]></dc:creator>
		<pubDate>Wed, 27 Jul 2011 13:28:32 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=791#comment-151058</guid>
		<description><![CDATA[Hello sir
i have a query...
i want only selected column from all of the colum from the same table
i dont want to use the required column names from table 
can you suggest me the solution to that.
ex.
if there is a table having 30 fields
i want 28 field among them
then how can i fetch those 28 colunm 
without using
Select (28 column name) from table.

pls give the solution to that..]]></description>
		<content:encoded><![CDATA[<p>Hello sir<br />
i have a query&#8230;<br />
i want only selected column from all of the colum from the same table<br />
i dont want to use the required column names from table<br />
can you suggest me the solution to that.<br />
ex.<br />
if there is a table having 30 fields<br />
i want 28 field among them<br />
then how can i fetch those 28 colunm<br />
without using<br />
Select (28 column name) from table.</p>
<p>pls give the solution to that..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER – Interview Questions and Answers – Frequently Asked Questions – Day 16 of 31 Journey to SQLAuthority</title>
		<link>http://blog.sqlauthority.com/2008/08/07/sql-server-except-clause-in-sql-server-is-similar-to-minus-clause-in-oracle/#comment-148617</link>
		<dc:creator><![CDATA[SQL SERVER – Interview Questions and Answers – Frequently Asked Questions – Day 16 of 31 Journey to SQLAuthority]]></dc:creator>
		<pubDate>Sat, 16 Jul 2011 01:31:51 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=791#comment-148617</guid>
		<description><![CDATA[[...] EXCEPT clause is similar to MINUS operation in Oracle. The EXCEPT query and MINUS query return all rows in the first query that are not returned in the second query. Each SQL statement within the EXCEPT query and MINUS query must have the same number of fields in the result sets with similar data types. (Read more here) [...]]]></description>
		<content:encoded><![CDATA[<p>[...] EXCEPT clause is similar to MINUS operation in Oracle. The EXCEPT query and MINUS query return all rows in the first query that are not returned in the second query. Each SQL statement within the EXCEPT query and MINUS query must have the same number of fields in the result sets with similar data types. (Read more here) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: zaheer</title>
		<link>http://blog.sqlauthority.com/2008/08/07/sql-server-except-clause-in-sql-server-is-similar-to-minus-clause-in-oracle/#comment-136367</link>
		<dc:creator><![CDATA[zaheer]]></dc:creator>
		<pubDate>Tue, 24 May 2011 10:13:34 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=791#comment-136367</guid>
		<description><![CDATA[Dear pine.
1 thnks that you are there for help.

i have two CDR files and i want to compare the values of the both different CDR files that have the same no and types of column, some how all the values are the same but there is a difference in the durration column.
how can i get comparison report in sql server through query.

Please help]]></description>
		<content:encoded><![CDATA[<p>Dear pine.<br />
1 thnks that you are there for help.</p>
<p>i have two CDR files and i want to compare the values of the both different CDR files that have the same no and types of column, some how all the values are the same but there is a difference in the durration column.<br />
how can i get comparison report in sql server through query.</p>
<p>Please help</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Avida</title>
		<link>http://blog.sqlauthority.com/2008/08/07/sql-server-except-clause-in-sql-server-is-similar-to-minus-clause-in-oracle/#comment-133026</link>
		<dc:creator><![CDATA[Avida]]></dc:creator>
		<pubDate>Thu, 05 May 2011 08:55:21 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=791#comment-133026</guid>
		<description><![CDATA[Hi,
What if i have 2 tables and in each table there is 5 columns, but i want that my EXCEPT will be only on 3/5 columns(til here every thing is easy).
Now i want that the resoult that i will get will contains the all 5 columns and not only the 3 columns that the EXCEPT base on.

Is there a way to do it without using INNER JOIN?

TNK.]]></description>
		<content:encoded><![CDATA[<p>Hi,<br />
What if i have 2 tables and in each table there is 5 columns, but i want that my EXCEPT will be only on 3/5 columns(til here every thing is easy).<br />
Now i want that the resoult that i will get will contains the all 5 columns and not only the 3 columns that the EXCEPT base on.</p>
<p>Is there a way to do it without using INNER JOIN?</p>
<p>TNK.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ronald</title>
		<link>http://blog.sqlauthority.com/2008/08/07/sql-server-except-clause-in-sql-server-is-similar-to-minus-clause-in-oracle/#comment-125422</link>
		<dc:creator><![CDATA[Ronald]]></dc:creator>
		<pubDate>Mon, 28 Mar 2011 23:48:16 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=791#comment-125422</guid>
		<description><![CDATA[Hi Pinal Dave,

I have a query regarding indexed varchar field,

The situation is: currently I have a table called detalleplanilla
that contains a field called expenses and I need to get information.

In the field expenses I have this information:

EmpID &#124; Date1 &#124; Date2 &#124; Expenses
-------------------------------------------------- -------------------------------------------------- ---------------------+
    1 &#124; 2011-01 - 01 &#124; 1/15/2011 &#124;, Savings  1500.00, Loan  5000.00 &#124;
-------------------------------------------------- -------------------------------------------------- ---------------------+
    1 &#124; 2011-01 - 16 &#124; 1/31/2011 &#124;, Savings 1500.00, Loan  5000.00 &#124;
-------------------------------------------------- -------------------------------------------------- ---------------------+
n + ... &#124; ... &#124; ... &#124; ... &#124;
-------------------------------------------------- -------------------------------------------------- ---------------------+

Note: Expenses are separated by &quot;, &quot;

 I need a query that identifies you such as:
Total Savings of X employee in  January or range date.
The answer would be = Savings 3500.00  

What can I do?.
I need your help.

Thanks for your time.

Ronald Garcia]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal Dave,</p>
<p>I have a query regarding indexed varchar field,</p>
<p>The situation is: currently I have a table called detalleplanilla<br />
that contains a field called expenses and I need to get information.</p>
<p>In the field expenses I have this information:</p>
<p>EmpID | Date1 | Date2 | Expenses<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+<br />
    1 | 2011-01 &#8211; 01 | 1/15/2011 |, Savings  1500.00, Loan  5000.00 |<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+<br />
    1 | 2011-01 &#8211; 16 | 1/31/2011 |, Savings 1500.00, Loan  5000.00 |<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+<br />
n + &#8230; | &#8230; | &#8230; | &#8230; |<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+</p>
<p>Note: Expenses are separated by &#8220;, &#8221;</p>
<p> I need a query that identifies you such as:<br />
Total Savings of X employee in  January or range date.<br />
The answer would be = Savings 3500.00  </p>
<p>What can I do?.<br />
I need your help.</p>
<p>Thanks for your time.</p>
<p>Ronald Garcia</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Manikandan Dinakaran</title>
		<link>http://blog.sqlauthority.com/2008/08/07/sql-server-except-clause-in-sql-server-is-similar-to-minus-clause-in-oracle/#comment-120513</link>
		<dc:creator><![CDATA[Manikandan Dinakaran]]></dc:creator>
		<pubDate>Thu, 24 Feb 2011 09:42:58 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=791#comment-120513</guid>
		<description><![CDATA[Hi Uma, 

 operators will give you the best results only when you have only one source table where you are trying to find the results for employees falling under the salary category 1000&gt;&lt;2000. But consider the case, where you have a datawarehousing target which maintains the history, and before loading in to that table you wanna verify the records which are all new, in this case minus or except will work. 

Hope am clear. Please let me know if am wrong so that I can understand it in a best way from you. 

Regards
Mani]]></description>
		<content:encoded><![CDATA[<p>Hi Uma, </p>
<p> operators will give you the best results only when you have only one source table where you are trying to find the results for employees falling under the salary category 1000&gt;&lt;2000. But consider the case, where you have a datawarehousing target which maintains the history, and before loading in to that table you wanna verify the records which are all new, in this case minus or except will work. </p>
<p>Hope am clear. Please let me know if am wrong so that I can understand it in a best way from you. </p>
<p>Regards<br />
Mani</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://blog.sqlauthority.com/2008/08/07/sql-server-except-clause-in-sql-server-is-similar-to-minus-clause-in-oracle/#comment-103347</link>
		<dc:creator><![CDATA[Alex]]></dc:creator>
		<pubDate>Wed, 01 Dec 2010 22:10:58 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=791#comment-103347</guid>
		<description><![CDATA[Just wanted to clarify your terminology: both EXCEPT (and INTERSECT) should be referred to as &quot;operator&quot;, and not as &quot;clause&quot;.

A definition of a clause is &quot;group of [of words] containing subject and predicate&quot;; therefore WHERE, GROUP BY and ORDER BY are rightfully classified as clauses.

An operator is defined as &quot;something ... that ... performs a mathematical or logical operation&quot; (Merriam Webster definition). Therefore EXCEPT is an operator performing logical operation upon two sets of data returned by the queries.

thanks,
-alex]]></description>
		<content:encoded><![CDATA[<p>Just wanted to clarify your terminology: both EXCEPT (and INTERSECT) should be referred to as &#8220;operator&#8221;, and not as &#8220;clause&#8221;.</p>
<p>A definition of a clause is &#8220;group of [of words] containing subject and predicate&#8221;; therefore WHERE, GROUP BY and ORDER BY are rightfully classified as clauses.</p>
<p>An operator is defined as &#8220;something &#8230; that &#8230; performs a mathematical or logical operation&#8221; (Merriam Webster definition). Therefore EXCEPT is an operator performing logical operation upon two sets of data returned by the queries.</p>
<p>thanks,<br />
-alex</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yakub Tamboli</title>
		<link>http://blog.sqlauthority.com/2008/08/07/sql-server-except-clause-in-sql-server-is-similar-to-minus-clause-in-oracle/#comment-101854</link>
		<dc:creator><![CDATA[Yakub Tamboli]]></dc:creator>
		<pubDate>Wed, 24 Nov 2010 11:36:53 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=791#comment-101854</guid>
		<description><![CDATA[Hi Sir

i want Near operator in Sql Server  like oracle 
example 
&#039;near((lion, tiger), 10) 





Regards 

Yakub Tamboli]]></description>
		<content:encoded><![CDATA[<p>Hi Sir</p>
<p>i want Near operator in Sql Server  like oracle<br />
example<br />
&#8216;near((lion, tiger), 10) </p>
<p>Regards </p>
<p>Yakub Tamboli</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Balaji</title>
		<link>http://blog.sqlauthority.com/2008/08/07/sql-server-except-clause-in-sql-server-is-similar-to-minus-clause-in-oracle/#comment-81824</link>
		<dc:creator><![CDATA[Balaji]]></dc:creator>
		<pubDate>Tue, 27 Jul 2010 11:10:32 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=791#comment-81824</guid>
		<description><![CDATA[can we use EXCEPT clause in Oracle 10g? Though they say that EXCEPT in SQL server is the same as ORACLE&#039;s MINUS, in a situation where LHS data set has a duplicate record and RHS data set has one instance of the same record, then MINUS will not work as it will not even bring this up. 

Please help. 

Regards
Balaji Raja]]></description>
		<content:encoded><![CDATA[<p>can we use EXCEPT clause in Oracle 10g? Though they say that EXCEPT in SQL server is the same as ORACLE&#8217;s MINUS, in a situation where LHS data set has a duplicate record and RHS data set has one instance of the same record, then MINUS will not work as it will not even bring this up. </p>
<p>Please help. </p>
<p>Regards<br />
Balaji Raja</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anup</title>
		<link>http://blog.sqlauthority.com/2008/08/07/sql-server-except-clause-in-sql-server-is-similar-to-minus-clause-in-oracle/#comment-78199</link>
		<dc:creator><![CDATA[Anup]]></dc:creator>
		<pubDate>Tue, 29 Jun 2010 21:44:34 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=791#comment-78199</guid>
		<description><![CDATA[What should i do if i want to return only the columns that do not match for 2 tables ?

Any help is appreciated.]]></description>
		<content:encoded><![CDATA[<p>What should i do if i want to return only the columns that do not match for 2 tables ?</p>
<p>Any help is appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: uma</title>
		<link>http://blog.sqlauthority.com/2008/08/07/sql-server-except-clause-in-sql-server-is-similar-to-minus-clause-in-oracle/#comment-65240</link>
		<dc:creator><![CDATA[uma]]></dc:creator>
		<pubDate>Thu, 15 Apr 2010 11:37:07 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=791#comment-65240</guid>
		<description><![CDATA[Hi Sir,

We can use between, then &gt;,&lt; Operator also.
it is also given the same output.
which one is better performance.Please suggest me


Thank you.]]></description>
		<content:encoded><![CDATA[<p>Hi Sir,</p>
<p>We can use between, then &gt;,&lt; Operator also.<br />
it is also given the same output.<br />
which one is better performance.Please suggest me</p>
<p>Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2008/08/07/sql-server-except-clause-in-sql-server-is-similar-to-minus-clause-in-oracle/#comment-61771</link>
		<dc:creator><![CDATA[Pinal Dave]]></dc:creator>
		<pubDate>Thu, 25 Feb 2010 14:43:54 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=791#comment-61771</guid>
		<description><![CDATA[Hello Joe,

Yes, of course. Are you facing any issue?

Regards,
Pinal Dave]]></description>
		<content:encoded><![CDATA[<p>Hello Joe,</p>
<p>Yes, of course. Are you facing any issue?</p>
<p>Regards,<br />
Pinal Dave</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe DeMaro</title>
		<link>http://blog.sqlauthority.com/2008/08/07/sql-server-except-clause-in-sql-server-is-similar-to-minus-clause-in-oracle/#comment-61719</link>
		<dc:creator><![CDATA[Joe DeMaro]]></dc:creator>
		<pubDate>Wed, 24 Feb 2010 17:24:20 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=791#comment-61719</guid>
		<description><![CDATA[Hello Mr. Dave,

Is it possible to capture the results from the EXCEPT query and put them in a temporary table.

Thanks,

Joe]]></description>
		<content:encoded><![CDATA[<p>Hello Mr. Dave,</p>
<p>Is it possible to capture the results from the EXCEPT query and put them in a temporary table.</p>
<p>Thanks,</p>
<p>Joe</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sadjad Abbasnia</title>
		<link>http://blog.sqlauthority.com/2008/08/07/sql-server-except-clause-in-sql-server-is-similar-to-minus-clause-in-oracle/#comment-58828</link>
		<dc:creator><![CDATA[Sadjad Abbasnia]]></dc:creator>
		<pubDate>Sat, 19 Dec 2009 04:51:45 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=791#comment-58828</guid>
		<description><![CDATA[Hello, Mr. Dave
I am working as dba in Faragamara software company in Iran,
And want to thank you because of your trainings and solutions of SQL.
With best wishes]]></description>
		<content:encoded><![CDATA[<p>Hello, Mr. Dave<br />
I am working as dba in Faragamara software company in Iran,<br />
And want to thank you because of your trainings and solutions of SQL.<br />
With best wishes</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: anonymous</title>
		<link>http://blog.sqlauthority.com/2008/08/07/sql-server-except-clause-in-sql-server-is-similar-to-minus-clause-in-oracle/#comment-57649</link>
		<dc:creator><![CDATA[anonymous]]></dc:creator>
		<pubDate>Mon, 16 Nov 2009 18:43:41 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=791#comment-57649</guid>
		<description><![CDATA[What does &quot;exactly similar&quot; mean ? It two things are the same, or identical, they are not similar. They are alike.]]></description>
		<content:encoded><![CDATA[<p>What does &#8220;exactly similar&#8221; mean ? It two things are the same, or identical, they are not similar. They are alike.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gangadhar Naidu</title>
		<link>http://blog.sqlauthority.com/2008/08/07/sql-server-except-clause-in-sql-server-is-similar-to-minus-clause-in-oracle/#comment-53746</link>
		<dc:creator><![CDATA[Gangadhar Naidu]]></dc:creator>
		<pubDate>Thu, 16 Jul 2009 06:14:26 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=791#comment-53746</guid>
		<description><![CDATA[Hi Pinaldave,
below queries also get same out put. So, which is the best perpromance. Is it EXCEPT more performance then below queries.

SELECT EmpNo, EmpName,Salery
FROM EmployeeRecord
WHERE Salery &gt; 1000 and Salery &lt; 2000
ORDER BY EmpName; 

SELECT EmpNo, EmpName,Salery
FROM EmployeeRecord
WHERE Salery between 1000 and 2000
ORDER BY EmpName; 

Thank you,
Gangadhar.]]></description>
		<content:encoded><![CDATA[<p>Hi Pinaldave,<br />
below queries also get same out put. So, which is the best perpromance. Is it EXCEPT more performance then below queries.</p>
<p>SELECT EmpNo, EmpName,Salery<br />
FROM EmployeeRecord<br />
WHERE Salery &gt; 1000 and Salery &lt; 2000<br />
ORDER BY EmpName; </p>
<p>SELECT EmpNo, EmpName,Salery<br />
FROM EmployeeRecord<br />
WHERE Salery between 1000 and 2000<br />
ORDER BY EmpName; </p>
<p>Thank you,<br />
Gangadhar.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER - 2008 - Interview Questions and Answers - Part 7 Journey to SQL Authority with Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2008/08/07/sql-server-except-clause-in-sql-server-is-similar-to-minus-clause-in-oracle/#comment-47481</link>
		<dc:creator><![CDATA[SQL SERVER - 2008 - Interview Questions and Answers - Part 7 Journey to SQL Authority with Pinal Dave]]></dc:creator>
		<pubDate>Thu, 26 Feb 2009 12:07:26 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=791#comment-47481</guid>
		<description><![CDATA[[...] EXCEPT clause is similar to MINUS operation in Oracle. The EXCEPT query and MINUS query returns all rows in the first query that are not returned in the second query. Each SQL statement within the EXCEPT query and MINUS query must have the same number of fields in the result sets with similar data types. (Read More Here) [...]]]></description>
		<content:encoded><![CDATA[<p>[...] EXCEPT clause is similar to MINUS operation in Oracle. The EXCEPT query and MINUS query returns all rows in the first query that are not returned in the second query. Each SQL statement within the EXCEPT query and MINUS query must have the same number of fields in the result sets with similar data types. (Read More Here) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daud Khan</title>
		<link>http://blog.sqlauthority.com/2008/08/07/sql-server-except-clause-in-sql-server-is-similar-to-minus-clause-in-oracle/#comment-41855</link>
		<dc:creator><![CDATA[Daud Khan]]></dc:creator>
		<pubDate>Thu, 21 Aug 2008 04:56:01 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=791#comment-41855</guid>
		<description><![CDATA[SIR
 i have creataed a table in which i have inserted different students marks 
now i want to write a program(may be it is done through function or procedure) in oracle sql so that user is prompted to enter the top values i mean if user want to access top 10 students marks so he just need to write 10 in the box and result should be displayed similarly for top 15  in short from top 1- top 15
just like if i write the quuery

select * from stu where stu_marks=&#039;&amp;Entertop&#039;

so user is prompted to enter top values but i want to write a program for it in oracle sql(pl sql)
i shall be thankful to you]]></description>
		<content:encoded><![CDATA[<p>SIR<br />
 i have creataed a table in which i have inserted different students marks<br />
now i want to write a program(may be it is done through function or procedure) in oracle sql so that user is prompted to enter the top values i mean if user want to access top 10 students marks so he just need to write 10 in the box and result should be displayed similarly for top 15  in short from top 1- top 15<br />
just like if i write the quuery</p>
<p>select * from stu where stu_marks=&#8217;&amp;Entertop&#8217;</p>
<p>so user is prompted to enter top values but i want to write a program for it in oracle sql(pl sql)<br />
i shall be thankful to you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Giovanna</title>
		<link>http://blog.sqlauthority.com/2008/08/07/sql-server-except-clause-in-sql-server-is-similar-to-minus-clause-in-oracle/#comment-41716</link>
		<dc:creator><![CDATA[Giovanna]]></dc:creator>
		<pubDate>Fri, 15 Aug 2008 22:18:36 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=791#comment-41716</guid>
		<description><![CDATA[this worked like a charm!
much, much faster than NOT IN...
regards,
Giovanna]]></description>
		<content:encoded><![CDATA[<p>this worked like a charm!<br />
much, much faster than NOT IN&#8230;<br />
regards,<br />
Giovanna</p>
]]></content:encoded>
	</item>
</channel>
</rss>

