This section contains troubleshooting techniques for SQL Server.
Dropping a publishing database does not remove references to it in the distribution database. This can cause a problem if you re-create a database with the same name and attempt to use it as a publishing database. The distribution database will already have references to the named database, but they will not correctly reflect the newly created publishing database.
delete from MSjob_subscriptions WHERE publisher = 'publisher' AND publisher_db = 'published db'
For more information about the DELETE statement, see the Microsoft SQL Server Transact-SQL Reference.
When loading tables that contain text and image columns, the synchronization process will automatically initialize NULL text pointers for the text and image columns.
If the tables are large and have many uninitialized text or image columns, many records will be written to the transaction log. To minimize the impact of the initialization, you can: