Viewing 15 posts - 2,971 through 2,985 (of 26,488 total)
Just a little OCD when it comes to formatting code:select top 1
t.*
from (select
4 as slot,
UDCONT4,
'Record' as RC,
...
March 23, 2017 at 9:42 am
No create statement for the #Sessions table.
March 21, 2017 at 12:35 pm
First, is there a reason for this: cast(sbo.docentry as nvarchar(50)) = cast( lv.docentry...
March 21, 2017 at 12:30 pm
March 21, 2017 at 12:19 pm
Only thing I could suggest is BINARY_CHECKSUM.
March 21, 2017 at 9:31 am
March 21, 2017 at 8:46 am
Based on the pictures, not really. For real assistance we would need the execution plans as .sqlplan files, the deadlock graph as an .xml file (may need to upload as...
March 21, 2017 at 8:41 am
Depends on SQL Server version, from BOL:
For SQL Server 2014 and earlier, allowed input values are limited to 8000 bytes.
March 21, 2017 at 8:32 am
This:
if OBJECT_ID('tempdb..#answers') is not null
drop table #answers;
Create table #answers
(
id int,
value varchar(50),
)
go
INSERT INTO #answers
VALUES(1,'1,2,3,4'),
(2,'5,2'),
(3,'3,4')
GO
March 20, 2017 at 3:36 pm
March 20, 2017 at 3:30 pm
Great, emoticans in the code posted above, hope you all can decipher it.
March 20, 2017 at 11:17 am
The requirement for the XML coming from external sources is that the XML must include the cidneNS namespace. If this namespace is not included in the XML (as I showed) it...
March 20, 2017 at 11:08 am
March 20, 2017 at 10:15 am
The other issue I did see is that if node elements were missing the nodes() returned empty strings for character columns, 0 for integer columns, 1900-01-01 for date columns all...
March 20, 2017 at 10:02 am
Viewing 15 posts - 2,971 through 2,985 (of 26,488 total)