Viewing 15 posts - 571 through 585 (of 645 total)
Hello David and thanks for a great article on yet another good use of SQL CLR.
The only issue I have is with your statement that "median" is not a good...
December 29, 2010 at 8:18 am
Being able to take action remotely, on top of monitoring the system, would make us all very productive. I am not sure if it already exists, but a port...
December 13, 2010 at 7:32 am
I have also run into the same problem with ISNUMERIC() that many people here have mentioned in terms of wanting something more like "IsReallyNumeric". So, I created a SQLCLR...
December 1, 2010 at 1:32 pm
Jeff Moden (10/17/2010)
If I were an App...
October 17, 2010 at 6:45 pm
Jeff Moden (10/17/2010)
October 17, 2010 at 4:04 pm
For anyone using SQL Server 2008, there is another option that is extremely efficient and does not require a splitter function:
http://www.sqlservercentral.com/articles/SQL+Server+2008/66554/
October 16, 2010 at 8:17 pm
Philippe Cand (5/1/2010)
October 1, 2010 at 8:35 am
fat wallet (6/29/2010)
Select min(field1) from partitionedtable1
The above statement on...
July 6, 2010 at 3:11 pm
Since someone mentioned using CLR to get this information I will say that my SQLCLR project, SQL# (SQLsharp), includes this function. It is usable in SQL Server 2005 and...
June 23, 2010 at 11:48 am
Paul White NZ (5/5/2010)
May 6, 2010 at 3:34 pm
Paul White NZ (5/5/2010)
Solomon Rutzky (5/5/2010)
...the WHILE loop shouldn't be the best performing option, but sadly it is.
Are you sure Solomon? I would expect the APPLY + $PARTITION approach...
May 5, 2010 at 9:43 am
aeternam (5/5/2010)
Using a while loop in combination with a table variable shouldn't, in general, be the best performing option.How would this query perform:
SELECT <something>
FROM <the partitioned table>
WHERE etp.PartitionID <= 10
..Håvard..
Hello...
May 5, 2010 at 5:34 am
matlani.dhiraj (5/5/2010)
How about this query ?SELECT MIN(etp.IntDate)
FROM dbo.ExampleTablePartitioned etp
WHERE etp.PartitionID in (1,2,3,4,5,6,7,8,9,10)
Hello Matlani. Unfortunately, using an IN list has the same performance problem....
May 5, 2010 at 5:27 am
UMG Developer (5/4/2010)
SELECT MIN(MinIntDate)
FROM (SELECT PartitionID, MIN(IntDate) MinIntDate
FROM...
May 4, 2010 at 10:07 am
alen teplitsky (5/4/2010)
we have a 2TB database we're going to be moving to new hardware soon ... but there is no way to test it since we don't have...
May 4, 2010 at 10:00 am
Viewing 15 posts - 571 through 585 (of 645 total)