Viewing 15 posts - 4,756 through 4,770 (of 5,111 total)
Your question is quite vague. Sample data, DDL, and what you want as a final result is going to help here.
December 2, 2016 at 2:33 am
What is the logic for showing/not showing the tablix? is it purely based on it there are rows in the dataset? If so, you can simply set the visibility of...
December 2, 2016 at 2:12 am
wendy elizabeth (12/1/2016)
December 2, 2016 at 1:50 am
Ok. That's a good start. What your reasoning for choosing to do this via SSIS? I asked as send dbmail is very good at achieving this, especially as your data...
December 1, 2016 at 11:17 am
Welsh Corgi (12/1/2016)
Thom A (12/1/2016)
Welsh Corgi (12/1/2016)
I just ask for guidance.I think that it is pretty clear what I want.
All you've asked is "How do you get all the rows...
December 1, 2016 at 10:09 am
Welsh Corgi (12/1/2016)
I just ask for guidance.I think that it is pretty clear what I want.
All you've asked is "How do you get all the rows from a table in...
December 1, 2016 at 9:41 am
AS Luis said, you don't need an execute, you need a dataflow. Place a dataflow task on your contro,l flow, open it up. Place an OLE DB source, and an...
December 1, 2016 at 9:34 am
That article there is talking about returning a single row and then inserting those values into variables. Is that your aim here? Your title says that you want to put...
December 1, 2016 at 9:22 am
I tend do use the RIGHT function. For example, we have something called "branches" which should be displayed as two digit integer values. Therefore, if I need then ensure branches...
December 1, 2016 at 9:07 am
1) SSRS can return any data you really ask it to. It can be the entire contents of Table, a Stored procedure, or SQL. If you're running SQL in the...
December 1, 2016 at 8:44 am
December 1, 2016 at 7:54 am
This is quite a vague question, and solutions can vary depending on what you're doing and where the data is coming from. Could you give a little more information about...
December 1, 2016 at 2:08 am
declare @str varchar(max)=''
select @str=@str+'exec [dbo].[usptest]' + ' '''+abc.name+'''; '
from abc
exec(@str)
There isn't a loop in the SQL you've given us here. Your code will simply concatenate your strings, and then EXECs...
November 30, 2016 at 3:55 am
robert.wiglesworth (11/29/2016)
November 30, 2016 at 3:01 am
Like I asked before, can we please get some DDL and sample data? This would really make things a lot easier. Could you perhaps give a more detailed explanation of...
November 30, 2016 at 1:58 am
Viewing 15 posts - 4,756 through 4,770 (of 5,111 total)