Viewing 10 posts - 1 through 10 (of 10 total)
Forgive me if this sounded like a request. I was trying to point out that you're only calculating an arithmetic weekly return, which is not what's typically used in monitoring...
October 18, 2011 at 11:10 am
There are two different ways to calculate weekly returns. The methodology you're using implies holding for an entire week (using weekly prices). A more complicated methodology would compound daily, I'd...
October 18, 2011 at 7:14 am
Unlike your other readers, I tried to find the ugliest solution.
Here it is:
select
InvoiceID,
RandNumber = cast(rand(cast(right(replace(convert(varchar(24), dateadd(minute, Row_Number() OVER (Order by InvoiceID) , getdate()), 113), ':', ''), 9) as int))...
June 9, 2009 at 1:20 pm
There is nothing interesting presented in this article. Database tables are there to provide functionality that goes way beyond a simple array (even a multi-dimensional one). Obviously, you can simulate...
November 4, 2008 at 8:25 am
I noticed that the author uses this statement to grab the newly inserted identity:
set @INSERTED_IDENTITY_ID = IDENT_CURRENT('HIST_ERROR_LOG');
I think he meant to specify the table 'ERROR_LOG', not 'HIST_ERROR_LOG'.
Also, IDENT_CURRENT will...
July 7, 2008 at 2:26 pm
You should be able to pass the parameter RemoveHyperlinks=True to the report viewer before it displays the report...
Unfortunately, if you've shown the report with hyperlinks (if the parameter is missing...
June 6, 2008 at 10:18 pm
Yes, the use of CLR requires that you're on SQL 2005... Given that we're mid-way through the year 2008 and SQL 2008 is now available, I don't think it's unreanosable...
May 21, 2008 at 9:00 am
With SQL CLR you can build something more elegant if you truly wanted to be able to write files through your data engine. However, I think this type of activity...
May 20, 2008 at 11:01 am
Nevermind, found the syntax...
In the expression where you put your report name you would do something like:
=iif(Parameters!RemoveHyperlinks.Value, Nothing, "ReportName") instead of just ReportName
Assuming you had a parameter called RemoveHyperLinks
May 1, 2008 at 1:37 pm
Can you post the expression you're using to conditionally turn off hyperlinks? Do you have to modify each Navigation node one at a time or can it be done on...
May 1, 2008 at 1:22 pm
Viewing 10 posts - 1 through 10 (of 10 total)