enabling database for replication fails

  • when clicking "Transactional" under the Publisher properties, I get the following message.

    TITLE: Publisher Properties

    ------------------------------

    An error occurred while saving publication database.

    Do you want to continue saving other changes?

    Database Objects must be created in a schema other than DBO.

    The transaction ended in the trigger. The batch has been aborted.

    Changed database context to 'CADEBILL'. (Microsoft SQL Server, Error: 50000)

    Has anyone come accross this before?

    Thanks!

  • Got some help elsewhere, there was trigger that looked at schemas and had to be removed

    IF EXISTS (SELECT * FROM sys.triggers WHERE name = N'Check_Object_Name_Schema' AND parent_class=0)

    DROP TRIGGER [Check_Object_Name_Schema] ON DATABASE

    Thanks to all who looked.

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply