# Tuesday, September 20, 2005
"Internal Query Processor Error: The query processor could not produce a query plan. Contact your primary support provider for more information" when passing in C# DateTime value...
Tuesday, September 20, 2005 11:50:34 PM (GMT Daylight Time, UTC+01:00)  #    Disclaimer  |  Comments [0]  | 
# Friday, August 05, 2005
spammers!
Friday, August 05, 2005 2:33:34 PM (GMT Daylight Time, UTC+01:00)  #    Disclaimer  |  Comments [0]  | 
# Wednesday, July 20, 2005
When you have to eat your hat...
Wednesday, July 20, 2005 9:31:12 PM (GMT Daylight Time, UTC+01:00)  #    Disclaimer  |  Comments [0]  | 
# Tuesday, July 19, 2005
I hate LLBLGen, ask me why!!
Tuesday, July 19, 2005 5:49:51 AM (GMT Daylight Time, UTC+01:00)  #    Disclaimer  |  Comments [5]  | 
# Friday, May 27, 2005
(and maybe why Extreme Programming (XP) is also bad?)
Friday, May 27, 2005 6:28:46 PM (GMT Daylight Time, UTC+01:00)  #    Disclaimer  |  Comments [0]  | 
Need a good developer?
Friday, May 27, 2005 12:33:35 AM (GMT Daylight Time, UTC+01:00)  #    Disclaimer  |  Comments [2]  | 
Tired of cutting and pasting? Try CodeSmith...
Friday, May 27, 2005 12:19:32 AM (GMT Daylight Time, UTC+01:00)  #    Disclaimer  |  Comments [1]  | 
# Saturday, April 23, 2005
What the $*#(U$(? Where did the wse version go?
Saturday, April 23, 2005 9:36:27 PM (GMT Daylight Time, UTC+01:00)  #    Disclaimer  |  Comments [0]  | 
# Thursday, April 14, 2005
I am joining the fray....
Thursday, April 14, 2005 5:49:54 PM (GMT Daylight Time, UTC+01:00)  #    Disclaimer  |  Comments [1]  | 
# Monday, April 04, 2005
How to get them to reappear...
Monday, April 04, 2005 7:28:35 PM (GMT Daylight Time, UTC+01:00)  #    Disclaimer  |  Comments [1]  | 
# Monday, March 21, 2005

Let's talk resume's for a minute. You want that interview don't you? Well, sometimes all you have to get you there is your resume (although personal reference is the best way if you can get it, an area where networking and doing quality work can help).

There's a million places on the internet to help you decide how to structure your resume. I have only gotten one criticizm from my resume, and I am not sure if it's the content or the structure which works best. But here's a couple of pointers which I think have helped out my resume.

  1. Place a logo of any certifications you have if available (e.g. MCSD). These are real eye catchers. Make the images small though..
  2. Place your specific skills separate from your experience, preferably near the top. This makes it easy to survive the first pass from the recruiter/manager.
  3. Sell yourself! Research “power“ words and make any experience descriptions short and chock full of those words.

Now, there's a few easy tips of what to do. I have been helping staff for years, and here's some of the gems I have seen.

  • Horrible writing and spelling.
  • Obviously exagerated skills and experiences (4 years experience, 10 years at a certain skill)
  • Never say you are an expert at anything, even if you are. Humility goes a long way, and if the interviewer knows more, you'll be humbled by them, as I witnessed in the past week.
  • Use nice paper if submitting a hardcopy (I received one handwritten on a partial piece of paper -- I kid you not)

It's not tough... just use some common sense!

Monday, March 21, 2005 3:11:00 PM (GMT Standard Time, UTC+00:00)  #    Disclaimer  |  Comments [1]  | 
# Saturday, March 19, 2005
OK, so now you know wht might be asked.. how not to blow it.
Saturday, March 19, 2005 12:14:50 AM (GMT Standard Time, UTC+00:00)  #    Disclaimer  |  Comments [1]  | 
# Friday, March 18, 2005
WTF? Poor documentation...
Friday, March 18, 2005 9:15:58 PM (GMT Standard Time, UTC+00:00)  #    Disclaimer  |  Comments [4]  | 
# Thursday, March 17, 2005
wow... what was that? Some observations from helping with some technical interviews.
Thursday, March 17, 2005 8:19:01 PM (GMT Standard Time, UTC+00:00)  #    Disclaimer  |  Comments [3]  | 
# Wednesday, March 16, 2005
When you need to uniquely identify a file using the time and date stamp, use this!
Wednesday, March 16, 2005 3:26:57 PM (GMT Standard Time, UTC+00:00)  #    Disclaimer  |  Comments [3]  | 
# Friday, March 11, 2005

Someone asked me today if I knew that you couldn't use GETDATE() in functions in SQL Server. Well, I did, so I dug out this solution I had found a while back, and decided to post it, since I am sure others have come across the same issue.

Basically, you use a view to do the work for you... here you go!

CREATE VIEW Function_Assist_GETDATE

/********************************************************
*
* A view to return one row, with one column, the current
* date/time from the built-in function GETDATE().  This
* view allows a UDF to bypass the restriction on access to
* the non-deterministic getdate() function.
*
* Attribution: Based on a newsgroup posting in by Mikhail
*   Berlyant in microsoft.public.sqlserver.programming
*
* Common Usage:
DECLARE @dtVar datetime
select @dtVAr = [GetDate] from Function_Assist_GETDATE
**********************************************************/

AS
    SELECT getdate() as [GetDate]

GO

GRANT SELECT on Function_Assist_GETDATE to PUBLIC
GO

Friday, March 11, 2005 9:45:00 PM (GMT Standard Time, UTC+00:00)  #    Disclaimer  |  Comments [0]  |