on 2020 Dec 08 1:57 AM
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?
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This information is in the MobiLink system table ML_SCRIPT_VERSION
.
i.e., select NAME from ML_SCRIPT_VERSION
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
66 | |
10 | |
10 | |
10 | |
10 | |
8 | |
6 | |
5 | |
4 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.