Quantcast
Channel: SQL Server Replication forum
Viewing all articles
Browse latest Browse all 4054

Check 'Copy non-clustered indexes' replication article property using T-SQL

$
0
0

I need to check the property of this setting at the article level across my full transactional replication environment (several servers, dozens of publications, hundreds of articles).

Tracing a change to this property, this is the call made:

use [StackOverflow]

exec sp_changearticle @publication = N'Users', @article = N'Users', @property = N'schema_option', @value = N'0x000000000803509F', @force_invalidate_snapshot = 1, @force_reinit_subscription = 1

Any way to interpret that @value info?

I really don't want to do this by hand, despite it being billable hours.

Anyone know how to get to this in T-SQL?

Edit: scripting out the article just shows this: @schema_option = 0x000000000803509F

Thanks



22 years of database experience, most with SQL Server. Please 'Mark as answered' those posts that helped you.




Viewing all articles
Browse latest Browse all 4054

Trending Articles