Viewing 15 posts - 1 through 15 (of 151 total)
mburbea (5/25/2014)
Hybrid performs about TWICE as fast as Paul White's Split CLR function. And...
May 26, 2014 at 10:18 am
BTW, can someone test the physical tally table splitters as well? @paul-2 Can you be so kind to me :unsure:
SELECT TOP 11000
...
May 14, 2014 at 1:41 pm
Paul White (5/14/2014)
Eirikur Eiriksson (5/14/2014)
A thought, should we put together a data set for this purpose, at least we can eliminate one variable from the equation?
I have no objections. See...
May 14, 2014 at 1:37 pm
Paul White (5/14/2014)
If so, you might not be testing what you think you are. There is a...
May 14, 2014 at 1:30 pm
mburbea (5/14/2014)
May 14, 2014 at 11:14 am
mburbea (5/14/2014)
May 14, 2014 at 9:16 am
mburbea (5/13/2014)
After playing with the new Lead variant, my conclusion is that it seems to be slower than the mister.magoo collate latin1_general_bin version. That seems to be the...
May 14, 2014 at 12:22 am
OK, I am dragged in again by so many notifications received for this excellent never ending thread :-). After looking at the recent comments it is really fascinating to...
May 14, 2014 at 12:06 am
In case you are connecting to a source using x32 drivers, you have to use the x86 version of dtexec utility located under the Program Files (x86) folder.
March 9, 2013 at 6:15 am
kk1173 (3/8/2013)
Here is my indexed view.
ALTER VIEW dbo.vFact WITH SCHEMABINDING
AS
SELECT a.MinorMkt
, SUM(ISNULL(admits,0))...
March 9, 2013 at 6:07 am
Without knowing much details, It would be all guess work. Please post DDL of the tables, some data and the required output to get better help.
But seeing your code I...
March 9, 2013 at 4:00 am
I would be tempted to use UNION ALL for such case i.e. something like
Select p.Year, p.Month, SUM(p.cramount) As Credit, SUM(q.dramount) As Debit From
(
Select b.voucherno, DATENAME(YY, a.dt) As Year,...
March 9, 2013 at 3:43 am
I guess you are missing GROUPing BY YEAR clause. Shoud not it be something like this
DECLARE @FromDate DATETIME
DECLARE @EndDate DATETIME
SET @FromDate = '2013-01-01 00:00:00.000'
SET @EndDate = '2013-02-13 00:00:00.000'
SELECT year(sd.FKDAT) As...
March 9, 2013 at 3:21 am
mister.magoo (2/22/2013)
Usman Butt (2/22/2013)
L' Eomot Inversé (2/22/2013)
mister.magoo (2/22/2013)
Always makes me nervous when that...
February 22, 2013 at 1:24 pm
L' Eomot Inversé (2/22/2013)
mister.magoo (2/22/2013)
What bothered me was that feeling that "someone should have thought of this ages ago, shouldn't they"?Always makes me nervous when that is the case...
That...
February 22, 2013 at 1:08 pm
Viewing 15 posts - 1 through 15 (of 151 total)