It shouldn't matter, but I thought you were implying it did.
--=20
Hilary Cotter
Director of Text Mining and Database Strategy
RelevantNOISE.Com - Dedicated to mining blogs for business intelligence.
This posting is my own and doesn't necessarily represent RelevantNoise's =
positions, strategies or opinions.
Looking for a SQL Server replication book?
http://www.nwsu.com/0974973602.html Looking for a FAQ on Indexing Services/SQL FTS
http://www.indexserverfaq.com =20
[quoted text, click to view] "Jude" <judes@email.uophx.edu> wrote in message =
news:OPbRK4M8GHA.3280@TK2MSFTNGP02.phx.gbl...
No, should it? Should I change it to a PUSH & I won't have this issue =
any longer?
--=20
JUDE
[quoted text, click to view] "Hilary Cotter" <hilary.cotter@gmail.com> wrote in message =
news:u4Lb1ry7GHA.4552@TK2MSFTNGP05.phx.gbl...
Does this difference explain the problem?
--=20
Hilary Cotter
Director of Text Mining and Database Strategy
RelevantNOISE.Com - Dedicated to mining blogs for business =
intelligence.
This posting is my own and doesn't necessarily represent =
RelevantNoise's positions, strategies or opinions.
Looking for a SQL Server replication book?
http://www.nwsu.com/0974973602.html Looking for a FAQ on Indexing Services/SQL FTS
http://www.indexserverfaq.com =20
[quoted text, click to view] "Jude" <judes@email.uophx.edu> wrote in message =
news:enUr06v7GHA.4708@TK2MSFTNGP05.phx.gbl...
Actually the one difference is that the subscriber is doing a PULL =
now as opposed to the Publisher doing a PUSH as it was setup in the =
past.
--=20
JUDE
[quoted text, click to view] "Jude" <judes@email.uophx.edu> wrote in message =
news:ec29Ryv7GHA.4288@TK2MSFTNGP02.phx.gbl...
I am sorry to post about this again, but I can't put my finger =
on what is wrong.
When we upgraded our ERP to a new version, I am almost certain =
that I setup Transactional Replication the exact same way.....
I did the following to drop an article from a publication:
sp_dropsubscription=20
@publication =3D 'ReportsPUBL'=20
, @article =3D 'en_csrep_tbl_usr'=20
, @subscriber =3D 'SQL-05'
go
sp_droparticle=20
@publication =3D 'ReportsPUBL'
, @article =3D 'en_csrep_tbl_usr'=20
, @force_invalidate_snapshot =3D 1 (I HAVE TO DO THIS OR IT =
WON'T DROP THE ARTICLE & I Don't know why, it didn't used to be this =
way......)
go
sp_refreshsubscriptions 'ReportsPUBL'=20
go
I made my change to the en_csrep_tbl_usr & did the following;
/* Add the Article back */
sp_addarticle=20
@publication =3D 'ReportsPUBL'=20
, @article =3D 'en_csrep_tbl_usr'=20
, @source_table =3D 'en_csrep_tbl_usr'=20
go
When I start the Snapshot agent it is doing a snapshot of =
everything & not just the one table!!!!
Anonymous Subscriptions are NOT allowed.
Can you tell me where to look or why it is making me do the =
@force_invalidate_snapshot =3D 1 now?
thanx!
--=20