rs_functions

Stores information about Replication Server functions.

rs_functions is a system table in Replication Server versions earlier than 15.7. With version 15.7 and later, rs_functions is a view of the union of the rs_clsfunctions and rs_objfunctions system tables.

Column

Datatype

Description

prsid

int

Site where the function is primary

funcname

varchar(255)

Name of the function

funcid

rs_id

ID of the function

objid

rs_id

Object to which the function applies. NULL_OBJECT_ID (0x00000000) is stored in this column for class-scope functions.

conflicting

tinyint

1 if the function is conflicting, 0 if not

userdefined

bit

1 if this is a user-defined function, 0 if not

rowtype

tinyint

1 if this row is replicated, 0 if not

Indexes

Note: The indexes exist only when rs_functions is a table which is in versions of Replication Server earlier than 15.7
  • Clustered index on (objid)

  • Unique index on (objid, funcname)

  • Unique index on (funcid)