Viewing 15 posts - 2,851 through 2,865 (of 3,396 total)
http://msdn.microsoft.com/en-us/library/ms179854.aspx explains how partition schemes and functions work. Read that first. Then maybe create a dummy table in a dummy DB to play with until you...
July 5, 2014 at 9:28 pm
You mean by creating two tablixes and filtering one for value 'A' and the other for value 'B'?
Just add a filter to your tablix and you should be off...
July 5, 2014 at 1:19 pm
Marco,
I'm confused. What is your ultimate goal? You say you want to delete data from your database, but there are no delete statements anywhere. Your stored procedure inserts...
July 3, 2014 at 10:12 pm
You are passing too many parameters to your stored procedure. It can only accept two:
create procedure [dbo].[AdventureWorks2008R2]
@severity int, -- param 1
@message nvarchar(max) -- param2
as
...
What do the @severity and...
July 3, 2014 at 7:48 pm
Might be a case of "when all you [know] is a hammer, everything looks like a nail."
June 25, 2014 at 8:16 pm
If you're going to output the results to Excel, you have to do it a single dataset at a time, so I don't know that you have any other option...
June 25, 2014 at 11:09 am
Global task is to present single screen to user, then he selects @Year and Press Run, system should direct flow based on @Year, if < 2010 then run Report02 else...
June 24, 2014 at 10:59 pm
Nice setup... makes sorting this stuff out not to hard! I would probably use a cursor because you have to process each combination of Version and Doc separately... ...
June 24, 2014 at 10:14 pm
Why can't you just do that in your SQL statement? You would probably have to do a lot of
COALESCE(MyColumn1,0) + COALESCE(MyColumn2,0)....
What are you trying to accomplish? can you...
June 23, 2014 at 11:59 pm
I think I just very carefully solved this using a 2012 solution... figured I would post it for people to tear apart...
the ROWS PRECEDING window function is new in 2012......
June 17, 2014 at 7:39 pm
Look it up in Active Directory
June 16, 2014 at 3:49 pm
Like this...
=MonthName(Month(Fields!DueDate.Value)) & " " & Year(Fields!DueDate.Value)
just change DueDate to your field name.
June 16, 2014 at 3:46 pm
If you are breaking up the year into 4-week "groups", then from what date are you starting the count? The first day of the year? If not, how...
June 15, 2014 at 6:22 pm
Remove Dates? Where?
Do you have a Calendar/Date dimension table? Could just be me, but I thought you had to add a column to your Fact table for the...
June 13, 2014 at 9:31 pm
Viewing 15 posts - 2,851 through 2,865 (of 3,396 total)