﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>SQLServerCentral / Article Discussions / Article Discussions by Author / Discuss content posted by Dee Pavali  / NULL Values and Joins / Latest Posts</title><generator>InstantForum.NET v2.9.0</generator><description>SQLServerCentral</description><link>http://www.sqlservercentral.com/Forums/</link><webMaster>notifications@sqlservercentral.com</webMaster><lastBuildDate>Sun, 19 May 2013 22:37:43 GMT</lastBuildDate><ttl>20</ttl><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>Whoever posts question in QoD column, always makes sure your question is correct with zero syntax and semantic errors and also make sure when you ignore for syntax/semantic error atleast do not put the answer which evaluates according to SQL parser.E.g., Error : can not insert NULL in column b. This should be removed from being selected. People who answer the SQL puzzles always first look at the syntax first.</description><pubDate>Mon, 28 Feb 2011 03:50:04 GMT</pubDate><dc:creator>vinod.andani-874416</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>sir you can help to me and send to my account the total marks just i have untill now</description><pubDate>Tue, 04 Jan 2011 00:14:18 GMT</pubDate><dc:creator>idiras17</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>why you give me that without beeing before responding</description><pubDate>Tue, 04 Jan 2011 00:12:10 GMT</pubDate><dc:creator>idiras17</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>Thanks for the question, and the explanation of why the explanation seemed so weird.</description><pubDate>Tue, 28 Dec 2010 11:04:42 GMT</pubDate><dc:creator>UMG Developer</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>:) don't worry, it happened to me too, I did not read carefully the question. Morale of the story: it is better to pay attention at the requirements and just not knowing the  correct answer, than missing the question and answer the wrong thing. However, the explanation they provided,  that 'no rows are inserted in the Table2' is completely bizarre. (repairing frozen pipes qualify for not reading carefully)</description><pubDate>Sun, 26 Dec 2010 17:01:58 GMT</pubDate><dc:creator>SQLZealot</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>This was an ... interesting question.I don't call it a good question, because of the complexity - not the complexity of the subject matter, but that of the number of statements, and the number of rows. We had to deal with behaviour of a failed insert in a transaction, then the behaviour of two kinds of joins, union, ordering, and the position of NULL values in an order by (which, for the record, is not the same in all RDBMS's; whether NULLs go first or last is not defined in the ANSI standard, but left as an implementation-dependant choice). And all that on tables with three or four rows.I think a good QotD should test one, maybe two subjects only. And preferably with a combination of statement complexity and number of rows that enables those with an understanding of the subject to work out the results in their head. This one severely pushed my ability to work it out in my head.SanDroid, I'd love to see more questions from you, as the idea for this question is great - but as a suggestion for the next time, consider using two or three rows in the tables, not more. And don't add extra complexity by adding weird primary keys, failed inserts, etc. Just giving the table population, a query with a join on nullable columns, and some believable but incorrect answer options would have been enough.As to the erroneous explanation - well, you already explained that this is the result of changes to question and explanation getting out of sync. Stuff like that happens, 'nuff said.</description><pubDate>Thu, 23 Dec 2010 03:31:29 GMT</pubDate><dc:creator>Hugo Kornelis</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>[quote][b]volter_ddun-856145 (12/23/2010)[/b][hr]first thing it can't insert null value in to Table1 AND after running that query in sqlserver i didn't get result as mentioned Correct answer.[b]Correct answer:  7 rows where column d = three [/b]can any body explain how it is possible?thanks[/quote]Please, read the last post of the first page.</description><pubDate>Thu, 23 Dec 2010 01:04:03 GMT</pubDate><dc:creator>Carlo Romagnano</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>same result i got:-)</description><pubDate>Thu, 23 Dec 2010 00:31:56 GMT</pubDate><dc:creator>volter_ddun-856145</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>first thing it can't insert null value in to Table1 AND after running that query in sqlserver i didn't get result as mentioned Correct answer.[b]Correct answer:  7 rows where column d = three [/b]can any body explain how it is possible?thanks</description><pubDate>Thu, 23 Dec 2010 00:15:11 GMT</pubDate><dc:creator>volter_ddun-856145</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>[quote][b]Bradley Deem (12/20/2010)[/b][hr]Ian, I know you've received an explanation already, but I wanted to add to that.  You can control the behavior on error as follows in the comments below.[code="sql"]BEGIN TRAN INSERT INTO [Table1]( a,b) VALUES(1 ,'one') INSERT INTO [Table1]( a,b)	-- Insert fails because the NOT NULL constraint on column [a] VALUES(NULL ,'five') -- Even though the above insert [b]STATEMENT[/b] fails, execution of the [b]BATCH [/b]continues.   -- To halt execution after error use SET XACT_ABORT = ON (stops the [b]BATCH [/b]from executing) -- To reroute execution after error use TRY CATCH ([b]recommended[/b]) or check @@Error and use GOTO  INSERT INTO [Table1]( a,b) VALUES(4 ,'join1') INSERT INTO [Table1]( a,b]) VALUES(2 ,'join3')COMMIT TRANGO[/code][/quote]That's a good explanation, thank you.  I'm usually a bit lazy with my error handling and use of transactions, hence my confusion.</description><pubDate>Wed, 22 Dec 2010 03:47:56 GMT</pubDate><dc:creator>ian.grace</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>I got to wrong by misunderstanding the answer.</description><pubDate>Wed, 22 Dec 2010 01:09:50 GMT</pubDate><dc:creator>malleswarareddy_m</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>[quote][b]Seth Kramer (12/18/2010)[/b][hr]I accept I got it wrong, but what do you mean the second transaction fails? Only the insert null into the primary key field statement fails. There are no failed inserts on Table2.[/quote]It looks to me as if the explanation paragraph following the reference to BoL has got sucked in from some other explanation, as it certainly has no connection with this question. Also, the wording of the possible answers is horrible and could easily have been fixed by changing "where" to "last" and sticking a comma in front of it.At first I thought I would have to rack my brains and remember how nulls are treated by ORDER BY, but then I noticed that there were only two options with 7 rows and neither of them had NULL as the last d value, so the ordering of nulls was irrelevant after all and it was actually a no-brainer question.</description><pubDate>Tue, 21 Dec 2010 08:53:29 GMT</pubDate><dc:creator>L' Eomot Inversé</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>The question was very good!  I almost answered it wrong because I thought it was left outer join instead of FULL outer join.  For some reason the explanation does not match the correct answer.</description><pubDate>Tue, 21 Dec 2010 07:46:48 GMT</pubDate><dc:creator>Enigma475</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>A confusing question, with a confusing explanation!I read it several times and couldn't work out if it was a true test or some kind of trick ;-)So I didn't learn anything today :-(</description><pubDate>Tue, 21 Dec 2010 05:10:46 GMT</pubDate><dc:creator>jts_2003</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>Thanks for the question.</description><pubDate>Mon, 20 Dec 2010 10:03:08 GMT</pubDate><dc:creator>SQLRNNR</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>[quote][b]Carlo Romagnano (12/20/2010)[/b][hr][quote][b]ian.grace (12/20/2010)[/b][hr]I don't understand how the first transaction could succeed given the attempt to insert the null value into the not-null field "a".  Also, why is the last insert of the second transaction, VALUES(2 ,'one'), invalid?  Help, I'm confused.[/quote]As posted above by vk-kirov and others, the explanation is terrible with a lot of mistakes.[/quote]Ian, I know you've received an explanation already, but I wanted to add to that.  You can control the behavior on error as follows in the comments below.[code="sql"]BEGIN TRAN INSERT INTO [Table1]( a,b) VALUES(1 ,'one') INSERT INTO [Table1]( a,b)	-- Insert fails because the NOT NULL constraint on column [a] VALUES(NULL ,'five') -- Even though the above insert [b]STATEMENT[/b] fails, execution of the [b]BATCH [/b]continues.   -- To halt execution after error use SET XACT_ABORT = ON (stops the [b]BATCH [/b]from executing) -- To reroute execution after error use TRY CATCH ([b]recommended[/b]) or check @@Error and use GOTO  INSERT INTO [Table1]( a,b) VALUES(4 ,'join1') INSERT INTO [Table1]( a,b]) VALUES(2 ,'join3')COMMIT TRANGO[/code]</description><pubDate>Mon, 20 Dec 2010 08:51:03 GMT</pubDate><dc:creator>Bradley Deem</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>[code="plain"]a	b	c	d4	join1	4	join24	join1	4	join22	join3	2	one2	join3	2	one1	one	NULL	NULLNULL	NULL	NULL	twoNULL	NULL	NULL	three[/code]The reason I missed the answer is that I thought if you order by column d, "two" would be at the bottom.  Doesn't "two" come after "three" in an order clause?  Well, I ignored the "desc" after the order by.  Darn it.  Details, details.</description><pubDate>Mon, 20 Dec 2010 08:36:22 GMT</pubDate><dc:creator>cengland0</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>[quote][b]mtassin (12/20/2010)[/b][hr]They should be listed as 7 rows returned, the last row has column d = threeor something like that.[/quote]You are absolutely right about that.</description><pubDate>Mon, 20 Dec 2010 07:58:15 GMT</pubDate><dc:creator>SanDroid</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>[quote][b]Carlo Romagnano (12/20/2010)[/b][hr][quote][b]philip.cullingworth (12/20/2010)[/b][hr][quote][b]da-zero (12/20/2010)[/b][hr]Your output has 7 rows and the column d contains "three" for the 7th row, so it should be answer D.[/quote]But Answer D is [quote]7 rows where column d = three[/quote]I only have 1 row where column d = three :ermm:[/quote]Please, read carefully the question: it asks how many rows are in the results and what is the value of column "d" on the last row.[/quote]Yes, and the answer, the correct answer, states in a sentance that there will be 7 rows where the value of column d will be three.</description><pubDate>Mon, 20 Dec 2010 07:49:46 GMT</pubDate><dc:creator>mtassin</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>The answer has the following text in it.7 rows where column d = threeThe wording of the answers were confusing as hell.They should be listed as 7 rows returned, the last row has column d = threeor something like that.I got it right, but I spent more time analyzing the answers trying to figure out what they meant than I did actually analyzing the question.  I kept looking at the code, and saying to myself, "None of the rows repeat enough time to get the word three seven times, etc etc... I ruled out the insert error because the error that comes back is about inserting into column a, not b.</description><pubDate>Mon, 20 Dec 2010 07:48:22 GMT</pubDate><dc:creator>mtassin</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>[quote][b]da-zero (12/20/2010)[/b][hr][quote][b]SanDroid (12/20/2010)[/b][hr]However there is a HUGE typo in the explination...  B not C is the Answer?Disapointing.[/quote]May I ask you a question:why is the first post in this thread from you? (announcing which question this thread belong to).I was under the impression that you made the question...[/quote]Sorry I should have worded this reply better.The disapointing thing is that this question is eaxactly like it was originaly submitted.It was edited twice for errors after that, but the corrected version is not what was posted today.At least the answers and the script match, even if the explination does not.I took the time to edit and correct my question so it was easy to read, and have a good explination.It would have been nice to have seen that posted, and not the original with mistakes.UPDATE: I sent Steve an email explaining to him what happend.  I asked that everyone get a free point for having to deal with such things on a Monday.</description><pubDate>Mon, 20 Dec 2010 07:27:19 GMT</pubDate><dc:creator>SanDroid</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>[quote][b]SanDroid (12/20/2010)[/b][hr]I agree that if you read the question the answer is obvious.However there is a HUGE typo in the explination...  B not C is the Answer?Disapointing.[/quote]May I ask you a question:why is the first post in this thread from you? (announcing which question this thread belong to).I was under the impression that you made the question...</description><pubDate>Mon, 20 Dec 2010 07:12:34 GMT</pubDate><dc:creator>Koen Verbeeck</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>I agree that if you read the question the answer is obvious.However there is a HUGE typo in the explination...  B not C is the Answer?Disapointing.</description><pubDate>Mon, 20 Dec 2010 07:08:01 GMT</pubDate><dc:creator>SanDroid</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>I'm completely confused by this explanation.  Especially this part:[quote]However, since the last insert in the second Transaction was invalid, no rows were inserted into table2. So B not C is the correct answer.[/quote]But D is given as the correct answer, and as far as I can tell, rows are inserted into table2.  What am I missing?Ron</description><pubDate>Mon, 20 Dec 2010 06:23:28 GMT</pubDate><dc:creator>ronmoses</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>Good Monday morning question - math test and logic while clearing the cobwebs and trying to get my first cup of coffee;-)Made me think, question and reread.</description><pubDate>Mon, 20 Dec 2010 06:11:19 GMT</pubDate><dc:creator>sjimmo</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>so the correct answer should be: "7 rows where [u]the last row's [/u]column d = three", not: "7 rows where column d = three", going by the way the question is phrased none of the answers are correct.</description><pubDate>Mon, 20 Dec 2010 05:44:29 GMT</pubDate><dc:creator>Marek Grzymala</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>Thanks for that</description><pubDate>Mon, 20 Dec 2010 04:14:03 GMT</pubDate><dc:creator>ian.grace</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>[quote][b]ian.grace (12/20/2010)[/b][hr]I don't understand how the first transaction could succeed given the attempt to insert the null value into the not-null field "a".  Also, why is the last insert of the second transaction, VALUES(2 ,'one'), invalid?  Help, I'm confused.[/quote]The first transaction succeeds because it is an explicit transaction. Those will only fail if you explicitly issue a ROLLBACK statement, which isn't the case. Since a COMMIT was issued, the 2 other INSERTS in the transaction are committed to the database.</description><pubDate>Mon, 20 Dec 2010 04:06:05 GMT</pubDate><dc:creator>Koen Verbeeck</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>[quote][b]ian.grace (12/20/2010)[/b][hr]I don't understand how the first transaction could succeed given the attempt to insert the null value into the not-null field "a".  Also, why is the last insert of the second transaction, VALUES(2 ,'one'), invalid?  Help, I'm confused.[/quote]As posted above by vk-kirov and others, the explanation is terrible with a lot of mistakes.</description><pubDate>Mon, 20 Dec 2010 03:57:58 GMT</pubDate><dc:creator>Carlo Romagnano</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>I don't understand how the first transaction could succeed given the attempt to insert the null value into the not-null field "a".  Also, why is the last insert of the second transaction, VALUES(2 ,'one'), invalid?  Help, I'm confused.</description><pubDate>Mon, 20 Dec 2010 03:53:59 GMT</pubDate><dc:creator>ian.grace</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>[quote][b]philip.cullingworth (12/20/2010)[/b][hr]But Answer D is [quote]7 rows where column d = three[/quote]I only have 1 row where column d = three :ermm:[/quote]I had read the answers several times before I realized there were some skipped words: "7 rows where [the value of] column d [in the last row] = three" :hehe:</description><pubDate>Mon, 20 Dec 2010 03:24:00 GMT</pubDate><dc:creator>vk-kirov</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>[quote][b]Carlo Romagnano (12/20/2010)[/b][hr]Please, read carefully the question: it asks how many rows are in the results and what is the value of column "d" on the last row.[/quote]:blush: That will teach me.  I read the code and assumed what the actual question would be.  Can I blame being up in the middle of the night defrosting water pipes?</description><pubDate>Mon, 20 Dec 2010 03:19:23 GMT</pubDate><dc:creator>philip.cullingworth</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>[quote][b]philip.cullingworth (12/20/2010)[/b][hr][quote][b]da-zero (12/20/2010)[/b][hr]Your output has 7 rows and the column d contains "three" for the 7th row, so it should be answer D.[/quote]But Answer D is [quote]7 rows where column d = three[/quote]I only have 1 row where column d = three :ermm:[/quote]Please, read carefully the question: it asks how many rows are in the results and what is the value of column "d" on the last row.</description><pubDate>Mon, 20 Dec 2010 02:45:57 GMT</pubDate><dc:creator>Carlo Romagnano</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>[quote][b]da-zero (12/20/2010)[/b][hr]Your output has 7 rows and the column d contains "three" for the 7th row, so it should be answer D.[/quote]But Answer D is [quote]7 rows where column d = three[/quote]I only have 1 row where column d = three :ermm:</description><pubDate>Mon, 20 Dec 2010 02:35:35 GMT</pubDate><dc:creator>philip.cullingworth</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>[quote][b]philip.cullingworth (12/20/2010)[/b][hr]I have to disagree with the answer.  I ran the code on SQL server 2005 and got the following output:[code="plain"]a	b	c	d4	join1	4	join24	join1	4	join22	join3	2	one2	join3	2	one1	one	NULL	NULLNULL	NULL	NULL	twoNULL	NULL	NULL	three[/code]As I had worked out the same output before running and answering the question I decided that A, B, D and E could not possibly be correct so went for C as the only remaining option.What have I missed?[/quote]Your output has 7 rows and the column d contains "three" for the 7th row, so it should be answer D.</description><pubDate>Mon, 20 Dec 2010 02:26:26 GMT</pubDate><dc:creator>Koen Verbeeck</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>I have to disagree with the answer.  I ran the code on SQL server 2005 and got the following output:[code="plain"]a	b	c	d4	join1	4	join24	join1	4	join22	join3	2	one2	join3	2	one1	one	NULL	NULLNULL	NULL	NULL	twoNULL	NULL	NULL	three[/code]As I had worked out the same output before running and answering the question I decided that A, B, D and E could not possibly be correct so went for C as the only remaining option.What have I missed?</description><pubDate>Mon, 20 Dec 2010 02:17:46 GMT</pubDate><dc:creator>philip.cullingworth</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>[quote][b]vk-kirov (12/20/2010)[/b][hr]No rows were inserted into table2? B not C is the correct answer? Terrible, terrible explanation :-)[/quote]The explanation is more terrible than the question: I should read it at least 7 times!:-D:-D:-D:-D:-D:-D:-D</description><pubDate>Mon, 20 Dec 2010 01:40:31 GMT</pubDate><dc:creator>Carlo Romagnano</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>No rows were inserted into table2? B not C is the correct answer? Terrible, terrible explanation :-)</description><pubDate>Mon, 20 Dec 2010 01:32:57 GMT</pubDate><dc:creator>vk-kirov</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>The question itself is acceptable, but, in my opunion, the explanation is somewhat lacking.</description><pubDate>Mon, 20 Dec 2010 01:26:17 GMT</pubDate><dc:creator>Stewart "Arturius" Campbell</dc:creator></item><item><title>RE: NULL Values and Joins</title><link>http://www.sqlservercentral.com/Forums/Topic1036927-2870-1.aspx</link><description>Nice question, but only 1 point?Transactions and the NULL insert in the primary key have actually nothing to do with the actual question, they just serve as trickery in my opinion.And I don't really get the last line of the explanation. B not C is the correct answer?</description><pubDate>Sun, 19 Dec 2010 06:37:13 GMT</pubDate><dc:creator>Koen Verbeeck</dc:creator></item></channel></rss>