Viewing 15 posts - 2,476 through 2,490 (of 3,500 total)
I suppose you could, but the downside to doing it in SSRS is that you pull back a bigger dataset, and T-SQL will run circles around SSRS doing this any...
June 22, 2015 at 11:51 am
June 20, 2015 at 7:17 pm
I would probably see if HappyCat59 knows.
June 20, 2015 at 7:08 pm
Before I get into possible solutions, if you're just starting on this database, I would advise you to reconsider your design. Basically you're storing more than one fact in...
June 20, 2015 at 12:55 am
I'm assuming you're using Access 2013 (it's what I have installed, sorry!) so if this doesn't work, you might need to specify the version of Access you're using.
If you're querying...
June 19, 2015 at 7:16 pm
June 19, 2015 at 6:36 pm
Maybe something like this, assuming you're using 2008.
http://www.rafael-salas.com/2008/05/t-sql-lead-and-lag-functions.html
June 18, 2015 at 1:08 pm
If the data comes from different tables, you have to union the two queries together.
SELECT...
FROM tableA
UNION [ALL]
SELECT ...
FROM tableB;
Why are the history records in another table? Did this come from...
June 17, 2015 at 7:22 pm
Maybe this article[/url] will help.
Or maybe use this to get the average?
COUNT(Fields!enrollmentID.Value)/CountDistinct(Fields!EnrollMonth.Value)
I added it to a new column outside the normal matrix group
June 17, 2015 at 4:27 pm
Please post consumable data -- in the form of CREATE TABLE/INSERT statements or a SELECT statement with UNIONS...
http://www.sqlservercentral.com/articles/Best+Practices/61537/
June 15, 2015 at 10:54 pm
mwill172 (6/11/2015)
June 11, 2015 at 4:22 pm
Create another table of just the unique SSNs. Add an autonumber to the table. It will populate with unique numbers (might have gaps). Add another column to the...
June 11, 2015 at 3:41 pm
Orange is a running sum? If you're using 2012, use a windowing function to create the running total, then just base the report on your stored procedure.
June 11, 2015 at 2:59 am
Maybe you should read this. Most people don't want to download files from people they don't know...
http://www.sqlservercentral.com/articles/Best+Practices/61537/
June 10, 2015 at 4:14 pm
Viewing 15 posts - 2,476 through 2,490 (of 3,500 total)