Viewing 15 posts - 1,366 through 1,380 (of 8,416 total)
Revenant (1/4/2012)
SQL Kiwi (1/4/2012)
The weirdness of ISNUMERIC is just one more reason I am looking forward to SQL Server 2012:... coming on March 23rd
Is that official? I couldn't find...
January 5, 2012 at 12:33 am
The weirdness of ISNUMERIC is just one more reason I am looking forward to SQL Server 2012:
January 4, 2012 at 10:09 pm
Frank,
My prior post was written before I saw your latest, so it wasn't aimed at the points you raised. I'm going to decline getting into a debate about whether...
January 4, 2012 at 9:53 pm
The various schemes for encoding numbers all have advantages and disadvantages. SQL Server uses a decimal type that has fixed precision and scale. All expressions have a well-defined...
January 4, 2012 at 7:56 pm
Steve Jones - SSC Editor (1/4/2012)
I'm not sure the explanation is more clear than the word. Or maybe it's just my eyes that glazed over :w00t:
I had rather hoped the...
January 4, 2012 at 9:47 am
SKYBVI (1/4/2012)
Is this question applicable for sql server 2005? I mean, will it work concurrently in sql server 2005?
Yes. The change first occurred in SQL Server 2005.
January 4, 2012 at 6:29 am
Frank Hamersley (1/4/2012)
January 4, 2012 at 5:47 am
Although a procedure can return result set(s), you cannot use them directly that way. It is possible to use INSERT...EXECUTE to store the results of a procedure in a...
January 4, 2012 at 1:42 am
Dev (1/3/2012)
But it will do a search for identical rows, if I am not wrong here as well.
Well, the rows will be in the stream anyway (having been...
January 4, 2012 at 12:04 am
niclas-1082356 (1/3/2012)
1. Bulks the txt file into a temporary table source (SourceId,firstname,lastname,email) etc
2. Rows containing invalid and duplicate data are...
January 4, 2012 at 12:00 am
Dev (1/3/2012)
Paul, I canβt access these URLS (limited internet access π ). Would you mind sharing bullet points here?
The main point is that updates that don't change values...
January 3, 2012 at 11:43 pm
I wrote about the details of 'non-updating updates' here:
Also see this blog post by the SQL Server Query Optimization team:
http://blogs.msdn.com/b/queryoptteam/archive/2006/07/07/659453.aspx
January 3, 2012 at 11:01 pm
The MERGE statement can OUTPUT directly to an INSERT statement (this is sometimes referred to as 'composable DML'). You can add the required filtering to the INSERT statement's WHERE...
January 3, 2012 at 10:34 pm
Chrissy321 (1/3/2012)
DECLARE @InitiationDateTime datetime
SET @InitiationDateTime = getdate()
DECLARE @SheduledTime time(7)
SET @SheduledTime = '22:00:00.0000000'
It seems odd, on the face of it, to use the older DATETIME data type (with its millisecond resolution,...
January 3, 2012 at 10:07 pm
Viewing 15 posts - 1,366 through 1,380 (of 8,416 total)