Viewing 15 posts - 5,641 through 5,655 (of 6,400 total)
you need an end after the first case
CONVERT(CHAR(4), YEAR(EffectiveDate))+
CASE
WHEN LEN(MONTH(EffectiveDate)) = 1
THEN '0'+CONVERT(CHAR(1),MONTH(EffectiveDate))
ELSE CONVERT(CHAR(2),MONTH(EffectiveDate))
...
March 13, 2012 at 7:33 am
yep that would work, one thing I would try though is doing the count in the data set in one report and doing the runningtotal in another and see if...
March 13, 2012 at 7:22 am
SELECT
CONVERT(CHAR(4), YEAR(GetDate()))+
CASE WHEN LEN(MONTH(GetDate())) = 1
THEN '0'+CONVERT(CHAR(1),MONTH(GetDate()))
ELSE CONVERT(CHAR(2),MONTH(GetDate()))
END
March 13, 2012 at 6:55 am
the bottom part of the script which marcus provided does the memory utilisation checking
March 13, 2012 at 6:51 am
doh, sorry early morning, I thought you meant a SSC article.
I dont believe there is a way as the MSArticles table in the distribution database doesnt have a datetime or...
March 13, 2012 at 3:23 am
check the error log to see which database is being recovered and then run DBCC CHECKDB across all your databases to check for corruption
the error log should give a percentage...
March 13, 2012 at 3:00 am
Are you wanting the number of orders per day for a month and then passing that back into the report.
I would say you would want a type of count in...
March 13, 2012 at 2:54 am
i would format the parameter into an iso date standard
so when you pass it into the dataset use an expression like this
=CDate(Format(Parameters!StartDate.Value, "yyyy-MM-dd"))
One thing I learnt the hard way is...
March 13, 2012 at 2:45 am
yeah it can be a bit tricky SSRS in some places. luckily I had the joy of the 3 day SSRS admin course along with working along side a...
March 13, 2012 at 2:42 am
What edition of SQL is this on? Express? Std? Ent?
March 13, 2012 at 2:34 am
There is a tool called RSScriptor which will script out and restore them but you will need to modify the batch file it creates to restore to the right server.
Alternativly...
March 13, 2012 at 2:30 am
I've also seen this also happens when SQL starts before AD.
In an old job, the AD servers took ages to come up after testing a scheduled power outage, say they...
March 13, 2012 at 2:28 am
you might want to take a look at full text indexing and the contains function then, otherwise you will be wrapping the variable in a multiple of replace statements for...
March 12, 2012 at 9:47 am
you could wrap the variable in a replace function before passing it into the like clause
March 12, 2012 at 9:30 am
Viewing 15 posts - 5,641 through 5,655 (of 6,400 total)