Viewing 15 posts - 1 through 15 (of 20 total)
Without seeing your actual script the error could be caused by a permissions issue...
September 1, 2014 at 7:31 am
Using SSMS, does this work:?
EXEC master..xp_readerrorlog
July 26, 2013 at 12:50 pm
I answered all the questions correctly but it still scored me as wrong!
What's up with that?
November 9, 2011 at 10:43 am
Yet again the answers don't match the questions, so it is impossible to get right.
Can SSC fix this one?
( I choose three answers, since the fourth correct answer is unavailable...
September 14, 2011 at 7:02 am
Have SSC fixed the problem of questions not matching the answers?
August 10, 2011 at 9:37 am
I got 0.46875 when I ran the script.
What's up with that?
August 10, 2011 at 8:41 am
use except to find the records you need
wrap that up as a sub query
use the sub query as a filter for the records you want all columns from
April 17, 2009 at 10:03 am
If you consider that SSRS 2008 has many of the fancy Dundas charts (along with many other features) you can kind of understand why it's not simple to have that...
September 5, 2008 at 8:37 am
You cannot deploy SSRS 2008 reports to SSRS 2005
September 5, 2008 at 8:04 am
Try
select
case
when vCurrencyValue < 1 then replace(convert(varchar,cast(vCurrencyValue*100 as decimla(20,2)),1),'.00','')
else replace(convert(varchar,cast(vCurrencyValue as decimal(20,2)),1),'.00','')
end as vCurrencyValues,
iDYNCurrencyId,vCurrencyType,vCurrencyDesc,bFCurImagePath,bBCurImagePath,vAltName
from DYNCurrency
where iDYNCatId=6
order by iOrderNo,vCurrencyValue
June 19, 2008 at 7:13 am
Your are casting to a money type which may not hold the result of a decimal(18.2) * 100
Try casting to a larger decimal type.
June 19, 2008 at 6:29 am
have you tried a full outer join?
November 20, 2007 at 6:38 am
If you could group your products in some way that would help. Then you could have two dropdowns, the first would select the product group and the second would display...
October 26, 2006 at 7:07 am
There is a mistake in the article.
Where it says "Returns a value of 5.", the line above should be scope_identity() instead of @@identity
Jim.
August 1, 2005 at 6:59 am
Viewing 15 posts - 1 through 15 (of 20 total)