事务复制:Getdate() 列显示发布者和订阅者表中的未来时间

Transactional replication: Getdate() column shows future time in both publisher and subscriber tables

在我的项目中,我必须将 table 从一台服务器复制到另一台服务器。虽然复制一切正常,但要显示 getdate() 的列除外,它实际上显示了未来的时间。例如,当一条记录保存在发布者 table 中时,它会提前 4 小时保存。我很确定这个问题是因为我在 table 上设置了复制但无法找到修复。谁能帮我解决这个问题?谢谢

原来这不是复制的问题,未来的日期是因为存储过程有 getUTCdate() 而不是 getdate()