Viewing 14 posts - 1 through 14 (of 14 total)
If you had ever the fun to deal with the advanced quantum mechanics of oracle licensing you're really happy with the 'all inclusive' approach of sql server.
January 21, 2016 at 2:04 am
Hi,
if you can change the query of your report and the table it queries isn't to big, you can try to hide the easily guessed value for your parameter in...
January 16, 2012 at 8:45 am
Hi,
have you tried adding a row group to your tablix?
Lars
January 10, 2012 at 12:30 am
What kind of authentification do you use for your database? You should execute ist locally on the server where your SSRS is installed to get a better error message, but...
January 9, 2012 at 1:11 am
When you populate your available values with a dataset, you can use two different columns as the label and the value. So you can select the label or the value...
January 6, 2012 at 5:09 am
Hi
did you try the builtin SSRS GUI under http://yourservername/reports? You can easily manage your reports there, organize them in folders and set permissions to view items on folders...
January 4, 2012 at 11:54 pm
Hi,
have a look at your string, between seconds and milliseconds should be a "." not a ":"
Lars
December 27, 2011 at 1:47 am
Hi Randy,
you should have a look at the PIVOT function, in BOL it's documented somewhere under the FROM... clause.
Lars
December 1, 2011 at 12:09 am
Hi,
does this work for you?
DECLARE @fromdate DATETIME = '2011-01-20';
DECLARE @todate DATETIME = '2011-02-10';
DECLARE @productid INT =1;
WITH DateRange AS
(SELECT @fromdate AS [date]
UNION ALL
SELECT DATEADD(DAY,1,[date]) AS [date] FROM DateRange WHERE [date] <...
November 30, 2011 at 3:20 am
Hi,
this will get you all the dates from previous december:
BETWEEN DATEADD(MONTH,-1,DATEADD(YEAR,DATEDIFF(YEAR,0,@MyToMonth),0)) AND DATEADD(DAY,-1,DATEADD(YEAR,DATEDIFF(YEAR,0,@MyToMonth),0))
Lars
November 30, 2011 at 2:15 am
OK, sorry, just realized that this is the subforum for 2000, so the query above wouldn't work, cte is a feature of 2005 and above...
🙁
I'm just starting to find my...
November 30, 2011 at 1:01 am
Hello Oliver,
we used the possibility to generate reports via URL from many different applications written in java, powerbuilder , c++ and other languages. SSRS is a great way to manage...
November 30, 2011 at 12:54 am
Hello Rolf,
maybe this way:
DECLARE @startdate DATE;
DECLARE @daytofind INT;
SET @startdate = '2011-11-29';
SET @daytofind = 2;
WITH myWeek AS
(SELECT @startdate AS myDay, DATEPART(WEEKDAY, @startdate) as MyDayofWeek
UNION ALL
SELECT DATEADD(dd,1,myDay) AS myDay, DATEPART(WEEKDAY, DATEADD(dd,1,myDay))...
November 30, 2011 at 12:33 am
Maybe this project can help you:
http://sqlmetadata.codeplex.com/
it's still in development for 2008, but there is also a version for 2005
November 30, 2011 at 12:17 am
Viewing 14 posts - 1 through 14 (of 14 total)