Viewing 15 posts - 151 through 165 (of 1,158 total)
Andrew G (12/16/2013)
If it is, drop the article from publisher, drop table on subscriber. Add article, snapshot, should work...
December 16, 2013 at 2:16 am
Were they installed incorrectly, sharing the same systems dbs? I've never tested the impact of this so I cant confirm what impact this would have.
December 12, 2013 at 12:23 am
I would probably look at a combination of all of the recommendations so far.
I would set MAXDOP based on the current recommendation (No. of CPU Cores/No. of Numa = MAXDOP),...
December 11, 2013 at 6:05 am
Andrew G (12/11/2013)
eg
EXEC sp_addsubscription
@publication = N'<publication Name>',
@article = N'<Article Name>',
@subscriber = N'<Subscriber Name>',
@destination_db...
December 11, 2013 at 3:28 am
It looks like published database has had its transaction log restored past what was logged in the distribution db. There is a gap in LSN's preventing the logreader from...
December 11, 2013 at 3:17 am
Are you running multiple concurrent jobs using Powershell?
There is a default limitation in the msdb.dbo.syssubsystems table limiting you to 2 instances of powershell running concurrently. You can safely update...
December 10, 2013 at 8:41 am
Grant Fritchey (12/10/2013)
What about just modifying the code so that it does an insert to each server? That would work better.
As Grant suggests, this would be the ideal situation.
In the...
December 10, 2013 at 6:38 am
Is the db online? If it is, there is no way to revert the db to logshipping as it has fully recovered. You will need to restart by...
December 10, 2013 at 3:05 am
Also worth considering if a connection component isn't configured somewhere for an incorrect database or server.
Its fairly unlikely that any DB objects are simply "disappearing".
December 10, 2013 at 3:02 am
If by order being wrong you mean row order, I came across something like this when upgrading from SQL2000 to SQL2005 about 5 years ago.
The ordinal column order...
December 9, 2013 at 9:44 am
If you can, I'd consider a computed column with index. Maybe an indexed view trimming the values could work for you.
Otherwise I believe there is little you can with...
December 9, 2013 at 9:16 am
Sounds correct. I would check the SQL error logs for a failed login attempt to confirm you have reached SQL Server. There should be an entry stating there...
December 9, 2013 at 9:10 am
If you are developing an in-house index degfragmentation tool, I personally wouldn't invest the time reinventing the wheel. There are several options already developed and freely available on the...
December 9, 2013 at 9:01 am
In this case the ideal IMO would be merge replication or peer to peer replication.
Both would allow data modifications on either instance.
December 9, 2013 at 8:36 am
Denesh Naidoo (12/9/2013)
December 9, 2013 at 4:06 am
Viewing 15 posts - 151 through 165 (of 1,158 total)