SQL Server 6.0 replication terminology is based on a publishing/subscribing metaphor:
Note that all articles within a publication are guaranteed to be initially synchronized as a single logical unit. This helps to maintain integrity relationships originating from the underlying tables.
Replicated data moves in only one direction ¾ from the publication server to the subscription servers. You will usually treat replicated data residing in destination tables on subscription servers as read-only. (Note that this means the data should be treated as read-only for the users of the subscription databases. Do not set the Read Only database option, or that subscription database will be unable to receive replicated data.)
This is not so limiting as it might at first sound, since each server can act as both subscriber and a publisher and secondary copies of data can be locally processed on the subscriber. For examples of publishing subscribers and of secondary processing of data, see Chapter 15, Advanced Replication.