Viewing 15 posts - 1,141 through 1,155 (of 1,468 total)
Perhaps this will provide what you are looking for
sys.dm_exec_describe_first_result_set_for_object
April 26, 2017 at 12:49 pm
where AdmitDateTime is not...
April 26, 2017 at 12:23 pm
April 26, 2017 at 4:14 am
You need to create an additional variable with forced values for the NULLS.
--Create the dynamic date columns string
declare @cols AS NVARCHAR(MAX)
declare @vals AS NVARCHAR(MAX)
April 24, 2017 at 9:56 pm
April 24, 2017 at 12:19 pm
This seems to be the simplest form of the OP's requirement.
SELECT columns
FROM table
WHERE TYPE <> 14
OR VISIBLE = 0;
April 23, 2017 at 12:29 pm
April 23, 2017 at 12:24 pm
April 21, 2017 at 6:50 am
April 20, 2017 at 3:21 pm
You keep changing the XML. In one post it has a namespace, in the next it has an xsd.
Based on the latest sample, this will work
[code...
April 20, 2017 at 2:57 pm
I believe that this will meet your requirements
WITH T(N) AS (SELECT N FROM (VALUES (0),(0),(0),(0),(0),(0),(0),(0),(0),(0)) AS X(N))
, NUMS(N) AS (SELECT ROW_NUMBER() OVER (ORDER BY...
April 20, 2017 at 1:29 pm
Viewing 15 posts - 1,141 through 1,155 (of 1,468 total)