Viewing 15 posts - 1,756 through 1,770 (of 4,820 total)
March 8, 2018 at 7:59 am
March 8, 2018 at 7:52 am
I'm pretty sure your XML format is not actually valid XML. I don't think you can repeat the same tag at the same level.
March 8, 2018 at 7:34 am
i have a...
March 8, 2018 at 7:10 am
I recall that the original post wanted to add a CR/LF for each note. This would make the report easier to deal with than having to adjust to not repeat...
March 7, 2018 at 7:40 am
Try this "CROSS TAB" query:WITH TABLE1 (PATIENT, ID) AS (
SELECT 'PatientA', 1234 UNION ALL
SELECT 'PatientB', 5678
),
TABLE2 (ID, CODE, [VALUE]) AS (
SELECT 1234, 'Code1',...
March 6, 2018 at 1:55 pm
ALTER TABLE just doesn't work the way you might want it to, and if it did, would probably be far too dangerous. ALTER TABLE has to have the specific column...
March 5, 2018 at 6:35 am
We need a lot more detail. It appears likely that the data you have is not standard English characters, but just changing a datatype from varchar to nvarchar only provides...
March 5, 2018 at 6:19 am
March 2, 2018 at 1:05 pm
Try this:DECLARE @DriverData AS TABLE (
Drv int,
DOW varchar(9),
[Shift] varchar(13)
);
INSERT INTO @DriverData (Drv, DOW, [Shift])
VALUES (1, null, null),
(2, 'Sunday', '06:00-12:00'),
(2, 'Monday', '06:00 -11:00'),
(2,...
March 2, 2018 at 12:50 pm
Why are you trying to format the data within MDX? SSRS is where that formatting needs to be. Values coming from your MDX query that are actually dates instead of...
March 2, 2018 at 10:43 am
March 2, 2018 at 8:57 am
March 2, 2018 at 8:50 am
March 2, 2018 at 8:40 am
Viewing 15 posts - 1,756 through 1,770 (of 4,820 total)