Viewing 13 posts - 1 through 13 (of 13 total)
After looking at your setup, I would make Instance 2 and 3 reporting databases as Subscriber db's for transactional replication. You have more flexibility with what to replicate or not....
June 18, 2019 at 4:06 pm
Did you use the activity monitor in SQL Server SSMS to see what processes are running within the SQLOS. It can give you some insight what is running.Also "Recent Expensive...
March 6, 2014 at 1:13 pm
Confirm the fallowing:
1) Has Snapshot been completed?Bulk copy and insert both needs to be completed.I have noticed sometimes it takes more than 2-3 hours(500GB Publisher) to complete and, then you...
August 8, 2011 at 9:32 am
There has to be something inside the SQL server error log.
--Rohan Joackhim
August 8, 2011 at 9:12 am
I tested this in my test environment with a 468GB principal database/High safety with automatic failover (synchronous)-Mirroring, and worked like a charm.It took 10 seconds to create the snapshot...
May 20, 2011 at 8:53 am
well written article and kudos for organizing Net meeting!! It was a great success.
Rohan
January 20, 2011 at 7:42 am
It's possible using Policy Based Management feature in SQL 2008.This article(http://www.mssqltips.com/tip.asp?tip=2192&home) will give you a scratch on the surface, you will have to dig more deeper to...
January 19, 2011 at 8:29 am
Tools-->Options-->SQL Server Object Explorer-->Scripting-->Delimit individual statements
or can be one of the options in there.
Thanks,
Rohan
March 10, 2010 at 2:36 pm
February 9, 2010 at 10:42 am
If you have transactional replication set up in your enviorment, it uses Microsoft Distributed Transaction Coordinator (MSDTC) component included with SQL Server 2000, to execute transactions.
Thanks,
Rohan
February 8, 2010 at 12:57 pm
I have done this few years ago.It's not hard as everyone thinks.I used SQL compare from redgate.
"First, create a new database on the SQL Server 2000 instance using Enterprise Manager,...
February 8, 2010 at 12:41 pm
USE distribution
GO
SELECT * FROM dbo.MSsubscriptions
subscription_type Column;
0 = Push.
1 = Pull.
2 = Anonymous.
January 25, 2010 at 8:48 am
Just to refine the previous snippet;
UPDATE #TABLE
SET #TABLE.Field1 = (SELECT emp_id-1 as emp_id, emp_birth_date as Field1
from table)
January 25, 2010 at 8:19 am
Viewing 13 posts - 1 through 13 (of 13 total)