Viewing 12 posts - 1 through 12 (of 12 total)
I'm thinking one way to do this is modifying the system stored proc sp_MSdel_xxx at the subscriber's db to simply "RETURN" (or do nothing) during my archive/purge maintenance window. But...
May 6, 2015 at 6:23 pm
Thanks for your comments, Rudy.
'Phase' migration is not an option for me as those 30 dbs host one giant app. So very much all or nothing. I've talked to Microsoft...
August 7, 2014 at 12:09 pm
Hi,
I realized this thread is 4 years old, but still apply to me.
I want to migrate sybase to sql server 2012. I successfully used SSMA to migrate schema and data...
August 2, 2014 at 3:45 pm
Thanks so much for your clear and concise reply, SQLBuddy. I appreciate so much.
March 13, 2014 at 12:57 pm
Thanks for quick response, Perry.
From what I read Always-On AG is a combination of database mirroring and failover cluster. So I wasn't sure if they still utilize worker threads the...
March 13, 2014 at 11:03 am
Thanks for the replies.
My question was in which option would my 2nd-diff restore finish faster? Or they would take the same amount of time to restore the 2nd-diff?
For example: My...
December 13, 2012 at 12:09 pm
Yes I did use backup/restore to/from multiple files and yes with compression, but all these didn't make any difference.
Anyways, I got the issue resolved. We found out the problem was...
September 21, 2012 at 9:23 am
Our SAN administrator monitors the NetApp SAN while I'm doing the db restore and he sees the IO latency is around 10-20ms which is normal, but he sees very little...
September 17, 2012 at 8:34 am
Good point, Jason. Thanks!
Instead of using dbo.sysindexes, sys.partitions can be used to obtain the rowcount
SELECT ( SCHEMA_NAME(o.schema_id) + '.' + OBJECT_NAME(o.object_id) ) AS TblName,
...
August 5, 2010 at 1:24 pm
Hi bill.galashan
you're abso correct. My script only works when all data from table is relicated. If data fiterring is used, it of course will cause diff in rowcounts between pub...
August 5, 2010 at 10:44 am
Hi tina.t.kurtluyan
Counting rows in sysindexes is much faster than counting rows in the actual table. However, because sysindexes is lazily updated, the rowcount may not be accurate. If that's...
August 5, 2010 at 10:31 am
Viewing 12 posts - 1 through 12 (of 12 total)