Invalid object name 'sysarticles'.(Microsoft.SqlServer.SmoExtended)

Srikanth Cherupally 1 Reputation point
2022-09-10T08:05:05.567+00:00

I am trying to do a merge replication , on sql server

Invalid object name 'sysarticles'.
Could not use view or function 'dbo.sysextendedarticlesview' because of binding errors. (.Net SqlClient Data Provider)

239680-9.png

and also tried restore the same DB , and got the same error message , may i know what the issue and how can i solve it ?

SQL Server Other
{count} votes

3 answers

Sort by: Most helpful
  1. Nandan Hegde 36,146 Reputation points MVP Volunteer Moderator
    2022-09-10T17:45:06.497+00:00
    0 comments No comments

  2. PandaPan-MSFT 1,931 Reputation points
    2022-09-12T01:52:03.54+00:00

    Hi @Srikanth Cherupally ,
    I 've found a simmliar situation and here is the link https://social.technet.microsoft.com/Forums/en-US/4248f847-d717-4ad0-bd5c-7ac03adc6c21/error-208-invalid-object-name-dbosysextendedarticlesview-deleting-publicationdistribution.I hope it can be a little help.
    I also recommemd that you may try this code:
    CREATE TABLE [dbo].[sysarticles](
    [artid] [int] IDENTITY(1,1) NOT NULL,

    If it gets the error that:Msg 208, Level 16, State 1, Procedure sysextendedarticlesview, Line 14 [Batch Start Line 0]
    Invalid object name 'sysschemaarticles'.

    You can use the following order:
    CREATE TABLE [dbo].[sysschemaarticles](
    [artid] [int] NOT NULL,
    Best regards
    Jong


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment"

    0 comments No comments

  3. PandaPan-MSFT 1,931 Reputation points
    2022-09-16T02:54:25.75+00:00

    Hi @Srikanth Cherupally ,
    How about the problem? :)

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.