Viewing 15 posts - 5,641 through 5,655 (of 6,395 total)
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
as a next step in the product lifecycle is our service in a box which comes with a set of reports specific to that client.
we have a current user base...
March 12, 2012 at 9:12 am
something like this
create table #temp (id int, number int, value int)
insert into #temp (id, number, value) values (1,1,0),(2,1,1),(3,1,0),(4,2,0),(5,2,0)
with cte1 as
(
select
number
from
#temp
where
value > 0
group by
number
)
select
#temp.*
from
#temp
join
cte1
on
#temp.number = cte1.number
March 12, 2012 at 9:04 am
Thanks Basit, I'm diving deeper into this when I get a moment aside from the other things I'm working on.
One thing I would like to know is say I have...
March 12, 2012 at 8:53 am
the only gripe i have with SSIS is when you change the destination to a different column length or type as the meta data references the old type until you...
March 12, 2012 at 8:03 am
Viewing 15 posts - 5,641 through 5,655 (of 6,395 total)