all groups > sql server replication > october 2006 >
You're in the

sql server replication

group:

Force Invalidate Snapshot?????



Force Invalidate Snapshot????? Jude
10/13/2006 3:19:55 PM
sql server replication: 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
Re: Force Invalidate Snapshot????? Jude
10/13/2006 3:35:12 PM
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]
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
Re: Force Invalidate Snapshot????? Hilary Cotter
10/13/2006 8:53:47 PM
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]
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]
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
Re: Force Invalidate Snapshot????? Jude
10/15/2006 10:51:53 PM
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]
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]
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]
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
Re: Force Invalidate Snapshot????? Hilary Cotter
10/16/2006 3:56:52 PM
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]
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]
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]
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]
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
AddThis Social Bookmark Button