Disable Column Replication

Use sp_setrepcol with the do_not_replicate parameter to turn off replication for an image or rawobject column.

Syntax:
sp_setrepcol table, column, do_not_replicate
For example, to disable replication of the pic column of datatype image for replication in the table au_pix, enter:
sp_setrepcol au_pix, pic, do_not_replicate