Viewing 15 posts - 2,911 through 2,925 (of 3,489 total)
If you go to PragmaticWorks.com, they post their videos on various SQL topics. Brian's stuff on SSIS is really good.
August 15, 2014 at 7:27 pm
http://stackoverflow.com/questions/1179082/ssrs-tracking-report-usage was interesting and probably will help you.
It mentions that once you determine the reports that nobody uses that you can move them to unclutter your RS instance.
August 14, 2014 at 5:31 pm
What is the source of your EDI data? Whoever supplies the data should have the format for you. I think there are folks that write EDI parsers too....
August 13, 2014 at 1:28 am
Did you specify a collation on one or more columns in one of your tables? It sounds like you're trying to get the collations to match, and they don't.
August 13, 2014 at 1:19 am
This exercise is a lot easier to understand if you have some data to work with. It's easier to see repeating fields if you have a table structure. ...
August 12, 2014 at 10:21 pm
sounds like you need to union one result to another so that they end up in the same dataset.
August 11, 2014 at 4:19 pm
Jason Selburg wrote something that does that:
http://db-pub.com/news-10013929/data-driven-subscriptions-in-sql-rs-standard.html
August 9, 2014 at 12:53 am
Ideally, you would have someone fix the dirty data for you, and your problems would go away. But if that's not an option, you could create a calculated field...
August 7, 2014 at 9:46 pm
Welcome!,
Did a little digging around both on here and the internet and found a couple of really good examples showing how to do exactly what you are asking about.
Kathi Kellenberger's...
August 7, 2014 at 8:46 pm
First things first - remove the NOLOCK hints. It's not a magic "accelerate my query" command. Do you get correct answers if you do that?
August 7, 2014 at 2:59 pm
Looks like your example data is wrong. Without an explanation of the rules, this is as close as I could get:
SELECT x.*, y.productID
FROM
(SELECT xState
, MAX(Sales) AS MaxSales
FROM salesData
GROUP BY...
August 6, 2014 at 4:05 pm
How can you get to 3NF if you don't go through 1NF and 2NF first? Interesting concept.
Here's a pretty easy primer on Normal Forms. If you apply them...
August 5, 2014 at 3:13 pm
Help us help you. Could you post some dummy data? Just something for us to start with instead of starting from scratch?
July 30, 2014 at 9:17 pm
If you make the parameter get its values from a dataset, it's pretty easy.
Right-click the parameter you want to show as a value list, go to Parameter Properties.
Select "Get values...
July 29, 2014 at 6:20 pm
I think you mean a tablix, but anyway...
If you click on one of two right columns (one of the Hours ones), you can right-click and from the context menu dropdown,...
July 29, 2014 at 5:25 pm
Viewing 15 posts - 2,911 through 2,925 (of 3,489 total)