Hi,
In Denodo you can write, export and import VQL scripts which you can utilize for your intend.
For more information in how to execute the import of your VQL scripts in your OS console, refer to the section [Import Script](https://community.denodo.com/docs/html/browse/latest/en/vdp/administration/cluster_architectures_server_backup/using_the_import_export_scripts_for_backup_and_or_replication/import_script) of the Virtual DataPort Administration Guide.
To change the VCS Configuration of you server you can edit the *VDBConfiguration* PROPERTIES file under *<DENODOHOME>/conf/vdp*. There you will find the section *VCS options*.
You will need to edit the parameters you will find there by using the *SET* command in your VQL script.
Example:
> SET 'com.denodo.vdb.vdbinterface.server.vcs.VCSConfigurationManager.url' = 'http://your_vcs_url';
> SET 'com.denodo.vdb.vdbinterface.server.vcs.VCSConfigurationManager.useKerberos' = 'false';
> SET ...
For VCS operation commands such as Pull/Commit... refer to the section [Version Control Systems Integration Commands](https://community.denodo.com/docs/html/browse/latest/en/vdp/vql/version_control_systems_integration_commands/version_control_systems_integration_commands), of the Virtual DataPort VQL Guide.
Note that using VCS-related commands manually or through CI/CD processes is not recommended by Denodo, as these are commands designed to be used by the Administration Tool and the Design Studio.
As to how to turn on VCS on or off on a Virtual Database, you can use the ALTER DATABASE command in your import script. Here you can see an example:
> ALTER DATABASE ci_cd_developerdb
> VCS ON (
> REMOTEDB = ci_cd_maindb
> );
You can learn more about the syntax of the ALTER DATABASE command, specifically on how to change VCS settings for your database in the section [Creating and Modifying Virtual DataPort Databases ](https://community.denodo.com/docs/html/browse/latest/en/vdp/vql/creating_databases_users_roles_and_access_privileges/vql_statements_for_managing_databases/creating_databases#:~:text=changing%20this%20parameter.-,Version%20Control%20System,-The%20Version%20Control)of the Virtual DataPort VQL Guide.
I hope this information covers all the information you were looking for!