<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	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>Sunita Beck's Blog</title>
	<atom:link href="http://sunitabeck.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sunitabeck.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Thu, 12 Jan 2012 22:48:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='sunitabeck.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Sunita Beck's Blog</title>
		<link>http://sunitabeck.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://sunitabeck.wordpress.com/osd.xml" title="Sunita Beck&#039;s Blog" />
	<atom:link rel='hub' href='http://sunitabeck.wordpress.com/?pushpress=hub'/>
		<item>
		<title>SQL &#8211; Finding tokens in comma-delimited strings</title>
		<link>http://sunitabeck.wordpress.com/2011/08/02/sql-finding-tokens-in-comma-delimited-strings/</link>
		<comments>http://sunitabeck.wordpress.com/2011/08/02/sql-finding-tokens-in-comma-delimited-strings/#comments</comments>
		<pubDate>Wed, 03 Aug 2011 01:41:53 +0000</pubDate>
		<dc:creator>sunitabeck</dc:creator>
				<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://sunitabeck.wordpress.com/?p=51</guid>
		<description><![CDATA[Assume that you have a table with a column that contains comma-delimited strings &#8211; for example, like this: You are probably saying &#8220;Bleh! That should not happen!! It violates the very basics of a good database design&#8221;.  And, you would be absolutely right &#8211; but unfortunately, while you and I are on the same page, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sunitabeck.wordpress.com&#038;blog=6319476&#038;post=51&#038;subd=sunitabeck&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Assume that you have a table with a column that contains comma-delimited strings &#8211; for example, like this:</p>
<p><pre class="brush: sql;">CREATE TABLE #tmpA(strId VARCHAR(32));
INSERT INTO #tmpA
	SELECT '1,2,3' UNION ALL
	SELECT '1,3,4' UNION ALL
	SELECT '2,3,4' UNION ALL
	SELECT '3,4,5';</pre></p>
<p>You are probably saying &#8220;Bleh! That should not happen!! It violates the very basics of a good database design&#8221;.  And, you would be absolutely right &#8211; but unfortunately, while you and I are on the same page, the guy or girl who designed the original database might have been on a different planet. And for better or for worse, you are forced to adopt that problem child.</p>
<p>In any case, if you want to find all the rows in the table that have a specific item in the comma-delimited list, you can use the LIKE operator. For example, to find all the rows that have a &#8220;2&#8243; in the string, I could write a select statement like this:</p>
<p><pre class="brush: sql;">DECLARE @id INT; SET @id = 2;
SELECT   strId
FROM     #tmpA
WHERE    ','+strId+',' LIKE '%,'+CAST(@id AS VARCHAR(32))+',%';</pre></p>
<p>On the left side of the LIKE operator, adding those commas to the beginning and end of strId column ensures that every token has a comma before and after it. On the right side, we again add commas to the beginning and end of the value we want to search for.</p>
<p>You can extend this to search against column values in another table. As an example:</p>
<p><pre class="brush: sql;">
-- CREATE A TEST TABLE WITH VALUES TO LOOK FOR
CREATE TABLE #tmpB( id INT );
INSERT INTO #tmpB
	SELECT 1 UNION ALL
	SELECT 2;

-- LOOK FOR ROWS IN TABLE A WHICH HAVE OCCURRENCES OF
-- VALUES IN TABLE A
SELECT
	a.strId,
	b.Id
FROM
	#tmpA a
	INNER JOIN #tmpB b ON
		','+a.strId+',' LIKE '%,'+CAST(b.Id AS VARCHAR(32)) + ',%'</pre><br />
Another way of doing this would be to split the comma-separated string into a virtual table and then join with that table.  But, call me crazy, I find this approach using the LIKE keyword much simper and easier to use!!</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sunitabeck.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sunitabeck.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sunitabeck.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sunitabeck.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sunitabeck.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sunitabeck.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sunitabeck.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sunitabeck.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sunitabeck.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sunitabeck.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sunitabeck.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sunitabeck.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sunitabeck.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sunitabeck.wordpress.com/51/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sunitabeck.wordpress.com&#038;blog=6319476&#038;post=51&#038;subd=sunitabeck&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sunitabeck.wordpress.com/2011/08/02/sql-finding-tokens-in-comma-delimited-strings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8d578baa9587471236d94a0780173bc2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sunitabeck</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL &#8211; My wishlist for next version of SQL Server</title>
		<link>http://sunitabeck.wordpress.com/2011/08/02/sql-my-wishlist-for-next-version-of-sql-server/</link>
		<comments>http://sunitabeck.wordpress.com/2011/08/02/sql-my-wishlist-for-next-version-of-sql-server/#comments</comments>
		<pubDate>Wed, 03 Aug 2011 01:32:48 +0000</pubDate>
		<dc:creator>sunitabeck</dc:creator>
				<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://sunitabeck.wordpress.com/?p=92</guid>
		<description><![CDATA[If a fairy Godmother appeared and offered me everything I wanted in the next version of SQL Server, what would I ask for? Hm&#8230;. I will have to ask for more time to decide &#8211; and she probably will say &#8220;No, you have to decide now!!&#8221;.  So I want to be prepared &#8211; this is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sunitabeck.wordpress.com&#038;blog=6319476&#038;post=92&#038;subd=sunitabeck&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If a fairy Godmother appeared and offered me everything I wanted in the next version of SQL Server, what would I ask for? Hm&#8230;. I will have to ask for more time to decide &#8211; and she probably will say &#8220;No, you have to decide now!!&#8221;.  So I want to be prepared &#8211; this is the start of my wishlist.</p>
<ol>
<li>A way to organize objects in SSMS explorer &#8211; organize by schema, ability to create folders etc.</li>
<li>Ability to document tables (just like you can document stored procedures and views in the scripts that create them).</li>
<li>A &#8220;TimeSpan&#8221; data type (sort of like the TimeSpan structure in .Net) that would allow you to do arithmetic.</li>
</ol>
<p>Dear Fairy Godmother, in case you decided to drop by and peek, this is by no means a complete list. I reserve the right to add items as I remember them.  Think of this as a living document for now.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sunitabeck.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sunitabeck.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sunitabeck.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sunitabeck.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sunitabeck.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sunitabeck.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sunitabeck.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sunitabeck.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sunitabeck.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sunitabeck.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sunitabeck.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sunitabeck.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sunitabeck.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sunitabeck.wordpress.com/92/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sunitabeck.wordpress.com&#038;blog=6319476&#038;post=92&#038;subd=sunitabeck&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sunitabeck.wordpress.com/2011/08/02/sql-my-wishlist-for-next-version-of-sql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8d578baa9587471236d94a0780173bc2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sunitabeck</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL &#8211; SSMS Keyboard Shortcuts (and a rather curious way of interviewing)</title>
		<link>http://sunitabeck.wordpress.com/2011/07/30/sql-ssms-keyboard-shortcuts-and-a-rather-curious-way-of-interviewing/</link>
		<comments>http://sunitabeck.wordpress.com/2011/07/30/sql-ssms-keyboard-shortcuts-and-a-rather-curious-way-of-interviewing/#comments</comments>
		<pubDate>Sat, 30 Jul 2011 23:21:20 +0000</pubDate>
		<dc:creator>sunitabeck</dc:creator>
				<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://sunitabeck.wordpress.com/?p=78</guid>
		<description><![CDATA[SQL Server Management Studio has a lot of keyboard shortcuts that allow you to accomplish various tasks quickly and easily.  They are all listed here: http://msdn.microsoft.com/en-us/library/ms174205.aspx Among all of those, of my most favorite shortcuts (for SQL 2005) are the following: 1. control-k,control-c to comment a block of code and control-k,control-u to uncomment. 2. control-r to hide or show the output window [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sunitabeck.wordpress.com&#038;blog=6319476&#038;post=78&#038;subd=sunitabeck&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>SQL Server Management Studio has a lot of keyboard shortcuts that allow you to accomplish various tasks quickly and easily.  They are all listed here: <a href="http://msdn.microsoft.com/en-us/library/ms174205.aspx">http://msdn.microsoft.com/en-us/library/ms174205.aspx</a></p>
<p>Among all of those, of my most favorite shortcuts (for SQL 2005) are the following:</p>
<ul>
<li>1. <strong>control-k,control-c</strong> to comment a block of code and <strong>control-k,control-u</strong> to uncomment.</li>
<li>2. <strong>control-r</strong> to hide or show the output window</li>
<li>3. <strong>control-f6 </strong>to cycle through the open windows.</li>
</ul>
<p>Try them out. You will love them!</p>
<p>While we are on the topic of keyboard shortcuts: At my previous employer one of the ways in which we used to judge an interview candidate was by their typing skills and whether or not they used keyboard short cuts.  We would give them a simple programming problem and give them half an hour or so to do it.  Even though we would not be sitting there watching over their shoulder while they did it, we observed them casually; and some of the things we watched for were typing skills and use of keyboard shortcuts.</p>
<p>I am not commenting on the merits or demerits of putting someone on the spot by asking them to write a program as part of a job interview, or whether or not use of keyboard shortcuts has any correlation to one&#8217;s skills as a software developer.  Nonetheless, I have to admit it, I made judgements based on the way in which they typed and used keyboard shortcuts.</p>
<p>By the way, if you use Visual Studio or BIDS, the same keyboard short cuts for commenting and cycling through windows that I listed above work there as well.</p>
<p>Another one that has turned out to be my favorite (thanks to <a title="Madhivanan's T-SQL blog" href="http://beyondrelational.com/blogs/madhivanan/" target="_blank">Madhivanan</a> for telling me about it) is Alt+F1 to view the definition of objects.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sunitabeck.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sunitabeck.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sunitabeck.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sunitabeck.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sunitabeck.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sunitabeck.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sunitabeck.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sunitabeck.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sunitabeck.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sunitabeck.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sunitabeck.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sunitabeck.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sunitabeck.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sunitabeck.wordpress.com/78/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sunitabeck.wordpress.com&#038;blog=6319476&#038;post=78&#038;subd=sunitabeck&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sunitabeck.wordpress.com/2011/07/30/sql-ssms-keyboard-shortcuts-and-a-rather-curious-way-of-interviewing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8d578baa9587471236d94a0780173bc2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sunitabeck</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL &#8211; Creating a Calendar Table</title>
		<link>http://sunitabeck.wordpress.com/2011/07/30/sql-creating-a-calendar-table/</link>
		<comments>http://sunitabeck.wordpress.com/2011/07/30/sql-creating-a-calendar-table/#comments</comments>
		<pubDate>Sat, 30 Jul 2011 23:10:34 +0000</pubDate>
		<dc:creator>sunitabeck</dc:creator>
				<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://sunitabeck.wordpress.com/?p=67</guid>
		<description><![CDATA[It is very useful to have a calendar table in a variety of SQL progamming tasks.  You really should have a Numbers table or Calendar table in your database, but if you don&#8217;t or can&#8217;t, this script will create a calendar table. Because it uses a recursive CTE, it will work only on SQL 2005 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sunitabeck.wordpress.com&#038;blog=6319476&#038;post=67&#038;subd=sunitabeck&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It is very useful to have a calendar table in a variety of SQL progamming tasks.  You really should have a Numbers table or Calendar table in your database, but if you don&#8217;t or can&#8217;t, this script will create a calendar table.</p>
<p>Because it uses a recursive CTE, it will work only on SQL 2005 or higher.</p>
<p><pre class="brush: sql;">
-- Calendar table, with a single column.
CREATE TABLE #tmpCalendar
(
   [Dt] DATETIME NOT NULL PRIMARY KEY CLUSTERED
);

DECLARE @start_date DATETIME;
DECLARE @end_date DATETIME;

-- I want to generate the calendar for Jan 1, 2011 to today.
SET @start_date = '20110101';
SET @end_date = GETDATE();

-- Calculate the number of days in the calendar
DECLARE @days INT;
SET @days = DATEDIFF(DAY,@start_date,@end_date)+1;

-- Recursive CTE to generate sequence of numbers, and use
-- that to insert the dates into the calendar table.
WITH N(n) AS
(
	SELECT 1
	UNION ALL
	SELECT n+1 FROM N WHERE n &lt; @days
)
INSERT INTO	#tmpCalendar
SELECT DATEADD(DAY,n-1,@start_date) FROM N OPTION (MAXRECURSION 0);

-- See what is in the table; and then cleanup.
--SELECT * FROM #tmpCalendar;
--DROP TABLE #tmpCalendar;
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sunitabeck.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sunitabeck.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sunitabeck.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sunitabeck.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sunitabeck.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sunitabeck.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sunitabeck.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sunitabeck.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sunitabeck.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sunitabeck.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sunitabeck.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sunitabeck.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sunitabeck.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sunitabeck.wordpress.com/67/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sunitabeck.wordpress.com&#038;blog=6319476&#038;post=67&#038;subd=sunitabeck&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sunitabeck.wordpress.com/2011/07/30/sql-creating-a-calendar-table/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8d578baa9587471236d94a0780173bc2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sunitabeck</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello world!!</title>
		<link>http://sunitabeck.wordpress.com/2009/01/27/hello-world-2/</link>
		<comments>http://sunitabeck.wordpress.com/2009/01/27/hello-world-2/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 04:15:42 +0000</pubDate>
		<dc:creator>sunitabeck</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://sunitabeck.wordpress.com/?p=3</guid>
		<description><![CDATA[Hello world! This is my first blog post to this forum. Come to think of it, this is my very first blog post ever!! And to think that I am 28 years old and never had a blog post up until now!! I am of Indian origin &#8211; that would be the tech support, cardiologist, motel [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sunitabeck.wordpress.com&#038;blog=6319476&#038;post=3&#038;subd=sunitabeck&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hello world!</p>
<p>This is my first blog post to this forum.</p>
<p>Come to think of it, this is my very first blog post ever!! And to think that I am 28 years old and never had a blog post up until now!!</p>
<p>I am of Indian origin &#8211; that would be the tech support, cardiologist, motel owner type of Indian, not the native American kind.</p>
<p>Currently, I live in Stamford, CT with my husband.</p>
<p>I used to be a software engineer until about 3 months ago, working for the financial industry. When the rug got pulled from underneath the industry, I was standing smack in the middle of the rug!  I fell down, and have not been able to get up yet.</p>
<p>My interests are C# (I love LINQ!!) and to some extent, SQL.  I think I am pretty good at both.  Don&#8217;t ask me why I am unemployed if I am so smart.  I am unemployed because I perform horribly in interviews.  The only thing I can think of to describe my interviewing skills is &#8220;deer caught in the headlight&#8221;.</p>
<p>Well, I think this is enough for my first post. Who in the world is going to read this anyway!!</p>
<p>Love, Sunita</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sunitabeck.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sunitabeck.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sunitabeck.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sunitabeck.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sunitabeck.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sunitabeck.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sunitabeck.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sunitabeck.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sunitabeck.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sunitabeck.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sunitabeck.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sunitabeck.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sunitabeck.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sunitabeck.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sunitabeck.wordpress.com&#038;blog=6319476&#038;post=3&#038;subd=sunitabeck&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sunitabeck.wordpress.com/2009/01/27/hello-world-2/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8d578baa9587471236d94a0780173bc2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sunitabeck</media:title>
		</media:content>
	</item>
	</channel>
</rss>
