Viewing 11 posts - 61 through 71 (of 71 total)
Considering nobody has responded, I'm wondering if the question was phrased poorly, placed in the wrong forum, or simply not interesting. But for what it's worth, I did find a...
August 14, 2009 at 10:13 am
Here is my take:
SET NOCOUNT ON
--
-- Build calendar table
--
IF OBJECT_ID('tempdb..#Calendar') IS NOT NULL
DROP TABLE #Calendar
--
CREATE TABLE #Calendar (
CalendarDate datetime not null primary key,
...
June 24, 2009 at 2:56 pm
If you want a great learning resource for Profiler, I would recommend Brad McGehee's free e-book "Mastering SQL Server Profiler."
http://www.red-gate.com/products/SQL_Response/offers/mastering_sql_profiler_ebook.htm
June 17, 2009 at 10:43 pm
It looks like the Type 3 approach has won out. But on the flipside, if management changes their mind for new features in the future, I have a much better...
June 17, 2009 at 9:36 pm
Here is my understanding of the Slowly Changing Dimension article as applied to the original example. There are multiple methodologies used to track historical data and each one is specified...
June 17, 2009 at 12:01 am
First off, thanks for the replies. Your answers made me feel confident about the approach and helped me sell the concept to the team leads. I have begun working on...
June 11, 2009 at 10:09 am
I appreciate the explanations. I came across some SELECT statements written by a co-worker with keyword columns in at least five different places and I realized that while I knew...
May 23, 2009 at 12:08 am
Have you considered having a conversation about this with your hiring manager? I think you have a valid concern and work experience is very important in this business.
It would...
October 11, 2008 at 1:22 am
I knew about MSDN but not Developer's edition...that sounds like the best idea so far. Thanks for the advice.
October 9, 2008 at 10:56 pm
I find this article to be exemplary of what I believe to be an inexplicable hostility in many technical interviewers. Over the past three months, I've been on multiple interviews...
September 19, 2005 at 10:29 am
Viewing 11 posts - 61 through 71 (of 71 total)