Viewing 15 posts - 2,356 through 2,370 (of 3,482 total)
can you upload your report (with an embedded SQL statement?)
hard to tell from here.
August 11, 2015 at 10:05 pm
The problem is that you have to remove the duplicates before you insert the batch of records.
This is one option:
insert into table_2 (col1,col2,col3)
select DISTINCT col1,col2,col3
from table_1 t1
where not exists (select...
August 11, 2015 at 3:59 pm
Are you sure that's the output you're expecting? Don't you mean you just want a normal output that you get from a comma-separated list of column names? Shouldn't the...
August 10, 2015 at 9:33 pm
Could you post some consumable sample data? It would make it a lot easier to answer your question. And include the correct answer based on the data provided.
August 10, 2015 at 3:22 pm
can you post the CREATE TABLE and INSERT scripts so we can reproduce the problem?
August 10, 2015 at 12:05 pm
You need to have two data values on your graph. In my example, I had two bars in my bar chart because I had two value fields.
In design mode,...
August 10, 2015 at 10:38 am
That's basically what I was trying to point out. I would explain to the person requesting this the kinds of issues this kind of design will cause. Like...
August 9, 2015 at 9:05 pm
Exercise your google-fu.
August 9, 2015 at 8:42 pm
The reason I prefer them as separate stored procedures is that I can grant rights to the SELECTS to one group, the INSERTS to another, etc. If you lump them...
August 9, 2015 at 6:18 pm
If you lump all the CRUD into one stored procedure, how do you control who can do what? If the objects are separate, you can add them to the proper...
August 9, 2015 at 5:48 pm
It's just my opinion, but why would you want one stored procedure per table? The problem this will cause down the road is if you want to deny one of...
August 9, 2015 at 5:28 pm
I did it with a plain Tablix, but you're missing the consumable data part. And how is 180+180+180=180?
So I'm not sure how to do this with a Matrix... (or...
August 5, 2015 at 1:30 pm
Terry,
before you do much of anything, I would recommend reading Jeff Moden's article[/url] (and borrow his code) for his DelimitedSplit8K TVF. It will split your data up really easily...
Here's...
August 5, 2015 at 12:49 pm
It's better to include the entire problem in your description, as well as any SQL necessary to reproduce your setup/problem. If you give people enough information to easily answer...
August 5, 2015 at 11:41 am
One option might be to add a calculated field that returns just the date (no time) to your dataset and then use that to filter your dates.
=DateValue(Fields!orderdate.Value)
August 5, 2015 at 11:38 am
Viewing 15 posts - 2,356 through 2,370 (of 3,482 total)