Viewing 12 posts - 1 through 12 (of 12 total)
Folks,
changing it is the easy bit.
Making use of the renamed pipe is another matter.
For a local instance, where a '2' has been added to the end of the default name,...
May 11, 2015 at 6:03 am
I'm with Grasshopper, whilst I'm aware that you can configure a Memory Optimized Table to be Not-Durable, as it is just an optional setting, it is NOT a consequence of...
March 11, 2014 at 4:04 pm
BTW, you get a different result on SQL Server 2000 - both queries return in the same order.
The only way to sort by the actual table column (in SQL Server...
March 5, 2014 at 3:58 pm
Steve,
you state 'NOTE: You will notice that James was case insenstive (COLLATE SQL_Latin1_General_CP1_CI_AS )' in your answer but this is very much site specific.
(I answered on the basis that you...
November 6, 2013 at 10:31 pm
I think it would have been fairer to point out what SP version of SQL Server 2005 the question related to.
Given one tries to keep SQL Server updated are far...
July 28, 2011 at 9:44 pm
I think that this question is ambiguous and should be withdrawn.
There is NO query returning zero rows in the question.
There is one insert statement yielding five rows affected.
You might have...
July 19, 2011 at 9:18 pm
Unusual to had two dud QotD's in a row ...
At least there is very little point arguing about / discussing today's QotD.
June 29, 2011 at 2:26 am
In regards to SSChasing Mays concerns about committed transactions being rolled out, 'Committing inner transactions is ignored by the SQL Server Database Engine' (http://msdn.microsoft.com/en-us/library/ms189336.aspx).
Real committed transactions can't be...
September 21, 2010 at 4:42 am
Another way of getting to this information is via ...
SELECT * FROM sys.sysperfinfo WHERE object_name LIKE ('%deprecated%')
... but don't use it because this view itself is on the deprecated...
August 5, 2010 at 10:54 pm
Good question.
A better (more explicit) MSDN reference would be:
http://msdn.microsoft.com/en-us/library/ms188059(v=SQL.90).aspx
The following extract from the 'Remarks' section covers the issue:
'If the value inserted is larger than the current identity value...
May 30, 2010 at 9:58 pm
Answering Carla's question directly - try the following:
SELECT
*
FROM OPENXML (@hdoc, '/test/value',3)
WITH (id int,
name varchar(10),
class int,
flag char(1))
i.e. the flags Argument can be a combination of Byte...
June 2, 2009 at 5:25 pm
Viewing 12 posts - 1 through 12 (of 12 total)