subscriber_id in MSSubscriptions table. Where is it defined

  • Looking in the below table i notice there is a subscriber_id. Where is this id coming from? Is there a table who holds a distinct list of the subscriber's? If so i can't find it. If it doesn't exist can someone please in the simplest terms explain why?

    CREATE TABLE [dbo].[MSsubscriptions](

    [publisher_database_id] [int] NOT NULL,

    [publisher_id] [smallint] NOT NULL,

    [publisher_db] [sysname] NOT NULL,

    [publication_id] [int] NOT NULL,

    [article_id] [int] NOT NULL,

    [subscriber_id] [smallint] NOT NULL,

    [subscriber_db] [sysname] NOT NULL,

    [subscription_type] [int] NOT NULL,

    [sync_type] [tinyint] NOT NULL,

    [status] [tinyint] NOT NULL,

    [subscription_seqno] [varbinary](16) NOT NULL,

    [snapshot_seqno_flag] [bit] NOT NULL,

    [independent_agent] [bit] NOT NULL,

    [subscription_time] [datetime] NOT NULL,

    [loopback_detection] [bit] NOT NULL,

    [agent_id] [int] NOT NULL,

    [update_mode] [tinyint] NOT NULL,

    [publisher_seqno] [varbinary](16) NOT NULL,

    [ss_cplt_seqno] [varbinary](16) NOT NULL,

    [nosync_type] [tinyint] NOT NULL

    ) ON [PRIMARY]

  • i see there is a MSsubscriber_info table however it doesn't have an id column which i find very bizarre.

    CREATE TABLE [dbo].[MSsubscriber_info](

    [publisher] [sysname] NOT NULL,

    [subscriber] [sysname] NOT NULL,

    [type] [tinyint] NOT NULL,

    [login] [sysname] NULL,

    [password] [nvarchar](524) NULL,

    [description] [nvarchar](510) NULL,

    [security_mode] [int] NOT NULL

    ) ON [PRIMARY]

  • i ran the following to find where this subscriber_id originates and can't find it.

    select distinct tb.table_name

    from INFORMATION_SCHEMA.TABLES tb (nolock)

    join INFORMATION_SCHEMA.COLUMNS col (nolock)

    on tb.table_name = col.table_name

    where table_type = 'base table'

    and COLUMN_NAME like '%sub%'

  • Dont everyone answer at once now.

  • Better late than never! subscriber_id can be joined to master.dbo.sysservers. NOTE: Not master.sys.servers. It has something to do with different ways servers can be related, replication, linked, etc. Anyway, I was trying to find out what an ID of -1 means. Let me know if you know.

Viewing 5 posts - 1 through 4 (of 4 total)

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