Viewing 15 posts - 1 through 15 (of 15 total)
Check out the attached report file. You'll need to change the Data Source "DS_Database" to point to a real server for the report to run.
This has an example of how...
March 2, 2015 at 2:19 pm
GilaMonster (2/16/2015)
On SQL 2005 (this forum), no.On SQL 2012, no.
On SQL 2014, yes.
That's embarrassing; I did a CTRL+F search for "Backup" without checking the forum title. Thanks for the information.
February 16, 2015 at 12:49 pm
On the "Chart Data" context menu that appears when you select on the chart, right-click the value under "Category Groups" (by default "= (Details)"),
Select "Category Group Properties"
Switch to the...
February 1, 2015 at 1:04 pm
Sure - it extracts the binary report data (the actual report) from the ReportServer database, converts it to XML and extracts the relevant fields for Query Text and Query Type...
January 29, 2015 at 3:47 pm
I'm not sure of a standard method - searching the solution in BIDS doesn't identify matches within queries.
There are two methods:
1. Download an application that can search file contents,...
January 29, 2015 at 1:23 pm
Here is how I would solve this problem, however there may be an easier solution:
CREATE FUNCTION [dbo].[SplitByXChars]
(
@string nvarchar(max),
@segmentLength int
) RETURNS @t TABLE
(
val nvarchar(max)
)
AS
BEGIN
...
January 28, 2015 at 1:03 pm
Consider the below - this is my preferred way of solving this type of issue. (Redundant brackets around the outside because I would then likely add another unrelated condition that...
January 27, 2015 at 1:15 am
What are you using to show your status matrix? Are you successfully retrieving tasks (the objects you are setting the status for) from an SQL query? Have you written an...
January 26, 2015 at 4:06 pm
Hi thammunhui, could you please upload some screenshots to give us a better understanding of this issue?
Andrew
January 26, 2015 at 3:56 pm
I suggest passing the parameter to SQL and letting SQL handle filters in its WHERE clause (if you can modify the query/stored procedure). I believe using a dataset query will...
January 25, 2015 at 12:52 pm
This issue has come up quite a few times at my work.
This is caused by Internet Explorer 11 identifying as Mozilla/Webkit and SSRS identifying it as a non-IE browser and...
January 22, 2015 at 8:33 pm
You may want to upload your image to an image sharing website - your attachments aren't opening.
To chain report parameters, in your second parameter's query's WHERE clause, refer to @<first...
January 22, 2015 at 8:23 pm
If I understand correctly, you're asking how can you stop BIDS from automatically generating the report when you open the "Preview" tab. I haven't been able to do this myself...
January 22, 2015 at 8:08 pm
Your expression is correct. Are you able to paste the SELECT statement and the query results when ran in SSMS?
January 22, 2015 at 7:31 pm
Viewing 15 posts - 1 through 15 (of 15 total)