Viewing 8 posts - 1 through 8 (of 8 total)
I haven't really try this either, just an idea
1. Backup Strategy
If you use full recovery model, maybe you can seperate the tables you want to backup into a new filegroup...
February 12, 2013 at 9:20 pm
Actually the initial size is only affecting your initialization time for the replication to take place, what really count is the changes that happened in the database.
The strategy will be...
February 12, 2013 at 12:05 am
What I mean is not a combination temp table and while loop but temp table with an bulk update statement with help of variable, is it the same as while...
February 7, 2013 at 7:38 pm
Not really looking in detail but
I think it should be a store procedure.
And I quite sure we can eliminated the cursor using temp table and update and set variables in...
February 6, 2013 at 5:31 am
Yeah you should check the actual query plan.
One more thing maybe you should check the amount of IO or scanning actually happened using Set statistics io on then execute your...
February 6, 2013 at 1:47 am
Hi Pratap,
Sory i didn't give you the full formula, here it is :
select convert(varchar(10),dateadd(dd,-datepart(dw,SalesDate)+2,SalesDate),101) + '-' + convert(varchar(10),dateadd(dd,datepart(dw,SalesDate)+2,SalesDate),101)
The formula will be like that but the constanta 2 is depend on...
December 30, 2003 at 3:36 am
I think when you want the report month wise you can use group by datepart(yyyy, SalesDate), datepart(mm, SalesDate), also the same for week group by datepart(yyyy, SalesDate), datepart(wk, SalesDate)
But...
December 30, 2003 at 2:34 am
you can try,
select a.* from Table2 a left join Table1 b on a.email like '%' + b.domain
where b.id is null
rgds,
ZL
December 9, 2003 at 7:40 pm
Viewing 8 posts - 1 through 8 (of 8 total)