cancel
Showing results for 
Search instead for 
Did you mean: 

Mobilink script version

0 Kudos
2,530

I set the script version with script:

ALTER SYNCHRONIZATION SUBSCRIPTION uploadtope
SET SCRIPT VERSION = 'vup_1';

Is there a sql script to retrieve the script version?

regdomaratzki
Product and Topic Expert
Product and Topic Expert
0 Kudos

It's unclear to me exactly what you are asking. Both Chris and I have provided responses that answer the question correctly, but make different assumptions on what you are asking. If we haven't answered your question, please clarify your question.

Accepted Solutions (0)

Answers (2)

Answers (2)

regdomaratzki
Product and Topic Expert
Product and Topic Expert

The SQL that Chris provided is used at the consolidated database, and will let you know what script versions are defined, allowing you to verify that when you synchronize a remote database to this consolidated database, that the 'vup_1' script version exists at the consolidated database.

If you would like to know which script version a remote database will use when you synchronize the synchronization subscription named 'uploadtope', you would execute the following SQL on the remote database :

select script_version from SYS.SYSSYNC where subscription_name = 'uploadtope';

Reg

chris_keating
Product and Topic Expert
Product and Topic Expert

This information is in the MobiLink system table ML_SCRIPT_VERSION.

i.e., select NAME from ML_SCRIPT_VERSION