Viewing 15 posts - 2,461 through 2,475 (of 3,489 total)
Imran,
Given that you're a novice and haven't posted much here before, it's a good idea that you read Jeff Moden's article Forum Etiquette: How to post data/code on a forum...
June 22, 2015 at 6:44 pm
meerack11 (6/4/2015)
store procedure which is use in SSRS report and that store procedure use MDX Query how to extract the data from store procedure to report.?
If you specify the...
June 22, 2015 at 2:41 pm
Please don't cross-post. I think this is a better place for your original question, which is here:
http://www.sqlservercentral.com/Forums/Topic1696469-150-1.aspx#bm1696655
If you post the same question in several forums, responses are harder to...
June 22, 2015 at 1:23 pm
This parameter limits the data specific to IT related costs which is correct but I want to see IT costs that appear on an invoice which may have costs other...
June 22, 2015 at 12:55 pm
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
Viewing 15 posts - 2,461 through 2,475 (of 3,489 total)