Viewing 12 posts - 1 through 12 (of 12 total)
I am new to SSRS also, but this book helped me "Applied Microsoft SQL Server 2008 Reporting Services" by Teo Lachev
The extra to the book is the video's he has...
July 14, 2009 at 10:13 am
Can you insert a screenshot of what you are talking about?
July 8, 2009 at 8:35 am
Thanks for all your help I ended up using a negative in SSRS.
(SELECT CONVERT(VARCHAR(12), TimeStart, 114)) AS timestart,
(SELECT CONVERT(VARCHAR(12), TimeEnd, 114)) AS timeend
And this in SSRS:
=Fields!TimeEnd.Value-Fields!TimeStart.Value
Thank's again for this great...
June 2, 2009 at 1:24 pm
I got it to work:
SELECT [NAME],
SUBSTRING([NAME], CHARINDEX(',', [NAME]) + 1, LEN([NAME])) AS FName,
SUBSTRING([NAME], 1, CHARINDEX(',', [NAME] )-1) AS LName
FROM dbo.MyTable
I would have liked 3 rows, but 2...
May 12, 2009 at 9:30 am
That seems to be working just as this:
SELECT SUBSTRING(NAME, 1, CHARINDEX(',', NAME )-1) AS LName,
CASE WHEN CHARINDEX(' ',REVERSE(NAME)) = 2
THEN ...
May 12, 2009 at 6:32 am
No the data is more like this:
CULLER,PETER O
FRAZIER,BRANDON
MCNEAL,CHRIS Z
LIBBY,JOHN L
BASS,BILL
I just want to split up the data, so I can use it in Reporting Services.
FName+' '+MName+' '+LName ...
May 11, 2009 at 2:03 pm
When you are creating a report in SSRS right click on the non-table part of the report and, point to Insert, and then click Header or Footer.
April 6, 2009 at 12:39 pm
Do you have "DROP TABLE #BASE" at the bottom of your Stored Procedure?
If so highlight the DROP TABLE #???? and Execute in SQL Server
If I am working on a...
March 31, 2009 at 9:04 am
You might want to check this out also:
Also new at SQL - Reporting Services
March 31, 2009 at 8:54 am
Try This from http://support.microsoft.com/default.aspx?scid=kb;en-us;896861
Method 1: Disable the loopback check
Follow these steps:1. Click Start, click Run, type regedit, and then click OK.
2. In Registry Editor, locate and...
November 17, 2008 at 1:49 pm
Viewing 12 posts - 1 through 12 (of 12 total)