Viewing 14 posts - 1 through 14 (of 14 total)
tim.short (8/3/2011)
...and do you know who River Song is yet? You'll fall off your chair -...
August 3, 2011 at 8:56 am
LightVader (29/07/2011)
July 29, 2011 at 9:34 am
Steve mentioned Doctor Who, which I love. Torchwood is now filling the gap in the current Doctor Who series. I think the current Torchwood series seemed to off...
July 29, 2011 at 9:21 am
The card & password used my the US military sounds like a good idea. I presume this is very similar (though, maybe more sophisticated) to the chip & PIN...
November 8, 2010 at 10:26 am
Craig-315134 (11/8/2010)
'Security based on biometric data is not a good idea because just like any other data, your biometric data can stolen - and if it is, you cannot...
November 8, 2010 at 10:05 am
Dennis Wagner-347763 (4/1/2010)
Pretty cool, but what is it?
It is pretty cool :-). It's a text representation of the Mandelbrot Set.
I ran it in SSMS, then right clicked the results...
April 6, 2010 at 9:47 am
I agree with bitbucket. It seems that even doing a clean install of the same version of SQL Server produces different results for some people. It's probably due...
April 1, 2010 at 11:10 am
mhr1971 (3/25/2010)
Question is Bad in that everyone may get different results based on custom settings.
In hindsight, the question may seem bad. But the default behaviours of SSMS should be...
March 25, 2010 at 8:57 am
Dave62 (3/24/2010)
nigelg99 (3/24/2010)
I use SSMS 2008 and I get the pop-up....
That's interesting since a number of people have posted that with SSMS 2008 no pop-up happens. Are you using 10.0.2531?...
March 24, 2010 at 12:29 pm
I use SSMS 2008 and I get the pop-up.
My default browser is Chrome. The web-page still shows in an SSMS tab, but I think it's using IE to render...
March 24, 2010 at 9:14 am
Another quick note. To make sure that the function works, even if there are no rows in the table yet, change the Select statement to:
SELECT @intLookupTextId = IsNull(max(Id),0) from...
January 6, 2010 at 2:33 pm
Firstly, you don't need the parameter because this can be defined as a local variable:
CREATE FUNCTION GetTextId ()
RETURNS int AS
BEGIN
Declare @intLookupTextId int
SELECT @intLookupTextId = max(Id) from schema.tablename
SET @intLookupTextId = @intLookupTextId...
January 6, 2010 at 1:22 pm
Viewing 14 posts - 1 through 14 (of 14 total)