Viewing 15 posts - 151 through 165 (of 8,416 total)
dwain.c (11/29/2012)
Paul - Thanks for stopping by and making the CLR suggestion. Haven't seen you posting much of late so seeing your name pop up surprised me.
I don't answer...
November 29, 2012 at 11:46 pm
dwain.c (11/29/2012)
fregatepallada (11/29/2012)
IMHO this task would be better implemented in CLR UDF rather than in pure T-SQL. CLR UDF easily allows to apply REGULAR EXPRESSIONS.
So how about an example?
I'd love...
November 29, 2012 at 11:30 pm
tony.price.uk (11/29/2012)
From SSMSTools>Options>Text Editor>Transact SQL>Intellisense> Enable/Disable
This works, of course, but it doesn't address the requirement in the first post.
November 29, 2012 at 11:00 pm
Meow Now (11/26/2012)
November 26, 2012 at 10:23 am
Lokesh Vij (11/26/2012)
SELECT Isnull(a.id, b.id)
FROM t1 a
FULL OUTER JOIN t2 b
...
November 26, 2012 at 4:11 am
I like this way of expressing the solution:
SELECT t1.ID FROM dbo.T1 AS t1
UNION
SELECT t2.ID FROM dbo.T2 AS t2
EXCEPT
SELECT t1.ID FROM dbo.T1 AS t1
INTERSECT
SELECT t2.ID FROM dbo.T2 AS t2;
November 25, 2012 at 8:27 pm
Steve Jones - SSC Editor (11/1/2012)
November 6, 2012 at 2:05 am
derek.colley (11/1/2012)
November 1, 2012 at 4:29 am
Interesting question, shame about the explanation.
October 31, 2012 at 6:32 am
GilaMonster (10/31/2012)
Andrew Diniz (10/31/2012)
After all, it is possible to observe 'Halloween Protection' in DELETE and INSERT plans too :hehe:
No, the Halloween problem is exclusively for updates. You can't insert or...
October 31, 2012 at 6:19 am
If Microsoft ever decide to replace the T-SQL parser with a human, they won't choose me.
October 26, 2012 at 7:40 am
Hugo Kornelis (10/17/2012)
I think the choice will be integer, but I'm not sure.
Yes it is integer.
USE tempdb;
SELECT NULL AS n INTO #z
EXEC sys.sp_columns
@table_name = N'#z',
...
October 19, 2012 at 4:19 am
I found this a good and quite straightforward question (though it is SQL Server 2012 not SQL Server 2011).
October 19, 2012 at 3:21 am
Aleksl-294755 (10/16/2012)
I concur with kapil190588 that the version should somehow be mentioned.Please see http://msdn.microsoft.com/en-us/library/ms142551(v=sql.90).aspx - noise-word list (LIST!)
Not NoiseList then? 😉
October 16, 2012 at 6:09 am
Hugo Kornelis (10/15/2012)
October 16, 2012 at 6:05 am
Viewing 15 posts - 151 through 165 (of 8,416 total)