Viewing 15 posts - 1,546 through 1,560 (of 1,580 total)
Sounds like a school project 😉 That being said I doubt anyione in the forum will do it all for you...If you're tinkering with SSIS you should already know...
March 10, 2011 at 1:30 pm
No. We had a full down at that point in time the diff was taken.
March 4, 2011 at 3:19 pm
We're kind of in a bind here with our corporate reporting...I've opened a call with MS tech support - see where that goes...
🙁
March 4, 2011 at 12:29 pm
There is an additional snapshot publication that runs twice daily but that's wokring just fine.
I have 3 databases replicating (each with about 30 tables), each having 1-2 snapshot replication runing...
March 4, 2011 at 11:29 am
No luck...
I can't believe this is a problem after deleting the publication and subscriptions...
March 4, 2011 at 10:52 am
On my production box, I opened up a new window/connection.
Ran sp_repldone NULL, NULL, 0, 1 (the defaults)
(it said it was successful)
Went to the Replication monitor, stopped the log reader agent,...
March 4, 2011 at 10:23 am
This is coming from the Log Reader Agent:
Error messages:
The process could not execute 'sp_repldone/sp_replcounters' on MyServer. (Source: MSSQL_REPL, Error number: MSSQL_REPL20011)
Get help: http://help/MSSQL_REPL20011
The log scan number (193864:92424:1) passed...
March 4, 2011 at 10:13 am
Okay, I deleted the publisher for the database I was replicating and the subscriptions on the other server.
Recreated the publisher and added the articles I needed and ran the job...
March 4, 2011 at 10:07 am
Thanks for the quick reply. Do you have any idea how long the sp_replrestart should take? It;s been over 15 mins already and still going.
I am beginning to...
March 4, 2011 at 9:25 am
I've also had good experiences using EXCEPT, as long as you've got some decent indexes on the table you're hitting.
INSERT INTO Local.Table
SELECT col1, col2... FROM Remote.Table
EXCEPT
SELECT col1, col2... FROM Local.Table
This...
March 2, 2011 at 3:44 pm
You could try adding a column to the end of the remote table that has a default value of GETDATE so as records get added to the remote table, they...
March 2, 2011 at 3:36 pm
I am facing a similar issue. I usually do my own custom logshipping but with this particular project (attempting to logship from '05 to '08 with the '08 DB's...
March 2, 2011 at 3:25 pm
Hey thanks for the reply!!! I realize you can use the NORECOVERY option but that keeps the DB in a mode where we can't test anything as the DB's...
March 1, 2011 at 9:31 pm
Can you please suuply the TSQL code you're using?
Ex:
EXECUTE msdb.dbo.sp_send_dbmail @recipients = 'jdoe@gmail.com'
, @subject='Test', @body = 'Test'
Also, you may want to check the settings in >> Management >> Database Mail...
March 1, 2011 at 2:56 pm
This could happen for MANY reasons...without knowing your configuration for both SQL and your Server. Considering this occurs at 20-min intervals it sounds like something is scheduled and running....so...
March 1, 2011 at 2:47 pm
Viewing 15 posts - 1,546 through 1,560 (of 1,580 total)