Viewing 15 posts - 571 through 585 (of 769 total)
I'm also curious if anyone knows if MS is working on any future Mask() function for T-SQL that would do this kind of thing but on a much more flexible...
April 16, 2009 at 3:13 pm
First off let me thank everyone who took the time to repy back on this; I know the whole NULL issue can ofetn be as dangerous to discuss as politics....
April 13, 2009 at 4:05 pm
Jack Corbett (2/9/2009)
SELECT
...
April 13, 2009 at 3:53 pm
Thanks for the feedback Vishal.
April 13, 2009 at 12:33 pm
Jason Miller (4/7/2009)
Michael Valentine Jones (4/6/2009)
YSLGuru (4/6/2009)
Jason Miller (4/6/2009)
GSquared (4/3/2009)
For example, why doesn't this work:
select Col1, count(*)
from dbo.MyTable;
And the follow-up where,
-SNIP-
I don't see how the example you gave would give...
April 7, 2009 at 9:23 am
Jason Miller (4/6/2009)
GSquared (4/3/2009)
For example, why doesn't this work:
select Col1, count(*)
from dbo.MyTable;
And the follow-up where,
select Col1, Col2, count(*)
from dbo.MyTable
GROUP BY Col1, Col2;
select Col1, Col2, count(*)
from dbo.MyTable
GROUP BY Col2, Col1;
Are not...
April 6, 2009 at 11:39 am
GSquared (4/3/2009)
YSLGuru (4/3/2009)
GSquared (4/3/2009)
select Col1, count(*)
from dbo.MyTable;
SQL Server will raise an error that Col1 is neither contained in...
April 3, 2009 at 3:03 pm
I believe you'll find most who complain about SET based languages are those who first learned procedural based language(s) and therefore have a hard time transitioning to a SET BASED...
April 3, 2009 at 2:05 pm
GSquared (4/3/2009)
select Col1, count(*)
from dbo.MyTable;
SQL Server will raise an error that Col1 is neither contained in a Group...
April 3, 2009 at 1:58 pm
GilaMonster (3/24/2009)
select dateadd(mm, datediff(mm,0, getdate()),0)
Then the formatting to not...
March 24, 2009 at 8:24 am
Another great question posted by Michael Valentine Jones
Why not at least produce the year and month in a sortable form?
select YearMonth = convert(varchar(7),getdate(),121)
Results:
YearMonth
---------
2009-03
I have links to a lot...
March 23, 2009 at 4:56 pm
Below was posted in response to a copy of this posting that was not supposed to have gone up yet:
From Bruce W Cassidy:
Okay, some thoughts:
The first is, do you really...
March 23, 2009 at 4:51 pm
BTW ... I must be the only person on the planet, aside from the actors in the Vista commercials, who has had no problems with Vista and likes...
March 17, 2009 at 10:20 am
While everyone & every entity is cost conscious, the Enterprise level users place far greater value on consistency. To a corporation running SQL Server Farms with terabyte sixed data...
March 17, 2009 at 10:16 am
Viewing 15 posts - 571 through 585 (of 769 total)