Viewing 15 posts - 1,006 through 1,020 (of 4,820 total)
June 21, 2018 at 2:17 pm
not sure if this is possible but i am trying to build a query that...
June 21, 2018 at 1:50 pm
June 21, 2018 at 7:01 am
June 20, 2018 at 3:28 pm
June 20, 2018 at 3:25 pm
Here's a slightly better formatted version of the query:DECLARE @TicketNo AS bigint = NULL;
DECLARE @Group_Assignment AS nvarchar(50) = NULL;
DECLARE @status AS nvarchar(50) = NULL;
DECLARE @Urgency AS nvarchar(50) = NULL;
DECLARE @Ticket_Category AS...
June 20, 2018 at 1:34 pm
And another with the same technique:CREATE TABLE #Template (
TaskName VARCHAR(20),
TemplateName VARCHAR(20)
);
INSERT INTO #Template (TaskName, TemplateName)
SELECT 'Task1', 'Template 1' UNION ALL
SELECT 'Task2', 'Template 1'...
June 20, 2018 at 12:57 pm
If you are going to do dynamic SQL, please do that in your stored procedure. Don't try to do this in SSRS. It's extremely difficult to troubleshoot, and a genuine...
June 20, 2018 at 12:27 pm
This kind of thing should be handled in your dataset, as opposed to SSRS. You can also make a parameter multi-valued, and use the JOIN function within SSRS to construct...
June 20, 2018 at 11:50 am
wendy elizabeth - Wednesday, June 20, 2018 9:46 AMnot an issue
How did you resolve the problem? Someone else may hope to find...
June 20, 2018 at 11:45 am
Use the JOIN function in SSRS and you can get a comma delimited list. Just be sure to change your dataset to use a text query that adds the JOIN...
June 20, 2018 at 11:43 am
jcobb 20350 - Wednesday, June 20, 2018 9:58 AMThank you. I will work on this.
You're welcome.
June 20, 2018 at 11:21 am
Papil - Wednesday, June 20, 2018 9:43 AMBoth of these query not giving me correct result when there are NULLs.
Show me the...
June 20, 2018 at 9:46 am
first off all thanks for taking time to look into it and respond and...
June 20, 2018 at 9:42 am
Viewing 15 posts - 1,006 through 1,020 (of 4,820 total)