Viewing 15 posts - 2,371 through 2,385 (of 3,489 total)
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
Any chance you could post some data (it can be fake... just representative) in the form of either a CREATE TABLE and INSERT scripts or a union query....
SELECT TxDate, Fraction,...
August 5, 2015 at 10:40 am
I guess you need to explain the context in which you are doing this. Why is creating a stored procedure and executing it not an option? Seems silly...
August 5, 2015 at 6:53 am
Googlefu turned up this:
select
Catalog.name,
cat1.Name datasource
from
Catalog
join DataSource
on Catalog.ItemID = DataSource.ItemID
join Catalog cat1
on DataSource.Link...
August 5, 2015 at 5:41 am
So how do you identify the records you want to save?
TOP 50 (with a cross apply).
then delete the rest... so either NOT IN ... or outer join...
August 4, 2015 at 8:56 am
Can't help without understanding the question. What does this mean?
"Need to put this into single SQL statement without update command."
What is the query supposed to do? Is it supposed...
August 4, 2015 at 7:27 am
If you open the report as an XML file, you'll see the <DataSets> section with <Query> delimiter. So you'd just use XQuery to grab the contents of that part.
August 4, 2015 at 7:03 am
Now that I've finally gotten this to work, this is how I did it. (I'm using 2012 but compatibility is 2008).
In all honesty, since I completely forgot how to...
August 3, 2015 at 12:01 pm
make the boolean parameters calculated? (based on whatever is in the other dataset(s))
July 31, 2015 at 7:12 pm
Viewing 15 posts - 2,371 through 2,385 (of 3,489 total)