Viewing 15 posts - 361 through 375 (of 938 total)
Just to play devil's advocate for a minute, I think there are some indicators of past performance outside of work that could indicate future performance on the job. For...
February 20, 2008 at 5:14 pm
peter (2/19/2008)
Also, I can't recall how the indexing issues related to the SQL 2000 generated uuids have translated into 2005...I vaguely recall some ideas about...
February 19, 2008 at 9:49 pm
I don't know about whether outside performance is an indicator of performance at work, but I definitely have the opposite problem that you have with productivity. I occasionally work...
February 18, 2008 at 11:46 pm
Brandie Tarvin (2/14/2008)
February 18, 2008 at 8:10 pm
Matt Miller (2/18/2008)
February 18, 2008 at 7:59 pm
Matt Miller (2/18/2008)
February 18, 2008 at 2:46 pm
What if your UDF is a scalar detereministic UDF with a constant value passed in? How many times is this UDF executed:
CREATE FUNCTION dbo.AbsoluteValue (@i INT)
RETURNS INT
WITH SCHEMABINDING
AS
BEGIN
...
February 18, 2008 at 2:18 pm
On the 1,000,000 row example with clustered and nonclustered index I get 16.7 seconds with this one:
DBCC FREEPROCCACHE
DBCC DROPCLEANBUFFERS
GO
SET STATISTICS TIME ON
GO
SELECT d.SomeID, dbo.fnConcatTest(d.SomeID) AS CSVString
FROM (
...
February 18, 2008 at 10:50 am
Matt Miller (2/13/2008)
I figured I might catch your attention with that one...:)
That you did! Pascal is the most delightful pseudo-academic with a grudge that I've ever had the pleasure of...
February 13, 2008 at 7:08 pm
Matt Miller (2/13/2008)
for what it's worth - that thread...
February 13, 2008 at 6:46 pm
chris.compton (2/12/2008)
I've been programming for almost two decades, and the terminology I...
February 12, 2008 at 3:35 pm
Cary Hower (2/12/2008)
February 12, 2008 at 7:31 am
SteveRowland (2/11/2008)
February 11, 2008 at 11:38 am
Matt Miller (2/11/2008)
That's an interesting thought, but there are times when you might get the same data (say - you're tracking outcomes of consecutive coin tosses). There really might...
February 11, 2008 at 11:02 am
jaholbrook (2/11/2008)
..."Super Size Me" ring a bell.
Basically a lack of understanding on the upfront work involved in modeling. Does...
February 11, 2008 at 10:05 am
Viewing 15 posts - 361 through 375 (of 938 total)