Viewing 4 posts - 1 through 4 (of 4 total)
Contest Entry:
For query 1
I would put an index on Time and Data for the analysis log table.
For query 2
The query 1 item would take care of this query as...
August 3, 2011 at 10:02 am
This article misses the fact that the tables will most likely be referenced by other tables. For instance, I have started working for a company where they didn't do...
October 25, 2010 at 12:05 pm
There are times to use them. I'm jaded because I work on a product where a lot of C developers wrote the database originally. There is dynamic sql...
January 1, 2009 at 9:23 pm
You don't have to use a cursor to concatenate a string.
DECLARE @myVar varchar(MAX)
SET @myVar = ''
SELECT @myVar = @myVar + mycolumn + ' '
FROM myTable
SELECT @myVar
January 1, 2009 at 12:44 pm
Viewing 4 posts - 1 through 4 (of 4 total)