Viewing 15 posts - 1 through 15 (of 22 total)
Thanks Jeffrey, the linked article provided me what I was looking for.
Phil, I knew about the .rdl files. However, I was looking for a way to search all the reports...
March 20, 2017 at 12:23 pm
My apologies. I missed that line in your post where you mentioned the difference in format. I thought you were talking about the same thing everyone else was talking about....
November 10, 2014 at 7:42 am
rabih_karam (11/10/2014)
What about this function with this date format?
CREATE FUNCTION dbo.[fnGetMonthDays]
(
@DATE DATE
)
RETURNS INT
AS
BEGIN
RETURN DAY(DATEADD(DAY,-1,DATEADD(MONTH,1,CONVERT(DATE,@DATE,101))))
END
SELECT dbo.fnGetMonthDays(CONVERT(DATE,'Feb 2012'))
--29
This doesn't work. Test it for '2012-2-28 5:33:21'.
November 10, 2014 at 7:16 am
Thanks. I see that now.
It didn't occur to me that setting up default email profile will be under Security tab/page!
A little clarification about my question. What I have understood so...
October 11, 2012 at 2:44 pm
William,
I tried adding version as you mentioned and it worked. Thanks.
August 8, 2012 at 11:02 am
After fixing a few typos, I was able to get the expected result.Thanks.
One think I noticed is that, in the profile script, $Host.Name is appended twice. I guess it was...
August 8, 2012 at 9:54 am
Thanks for the nice series. I wanted to learn this since a long time. I think that time has arrived now.
I tried the examples in this first article. Everything worked...
August 8, 2012 at 9:10 am
Thanks. I realized that requirement and changed the structure of the dataset to the one you mentioned. Actually, this was an existing report in which the stored procedure used to...
March 16, 2012 at 7:45 am
With your help, I was able to figure out the final query. Here it is for your review.
SELECTv.Dept, v.Project, ProjDesc, Period01, Period02, Period03,
Period04, Period05, Period06, Total , ROUND(m.StdDev,...
March 7, 2012 at 4:28 pm
Thanks. I think I know how it should be done but it would require me to go through some trial and error (this pivot/ unpivot command is confusing for me.)....
March 7, 2012 at 1:01 pm
Here is part of the report:
Jul 11Aug 11Sep 11Oct 11Nov 11Dec 11TotalStd Dev
11-62137404414719.50
-4-10000-51.60
000000.00
888888480.00
00-5000-52.04
The report doesn't have Std Dev column. I exported report to Excel and added Std Dev column. The...
March 7, 2012 at 11:44 am
Thanks. Worked perfect!.
October 26, 2010 at 3:01 pm
Thanks Alastair. I am looking into buying this book.
October 9, 2009 at 8:49 am
Viewing 15 posts - 1 through 15 (of 22 total)