The utility — shift2sql.exe and its renamed copies — replaces the regular data unloading in SQL. In a normal mode, the data is uploaded by the reference or report server.
Under the settings described below, the data unload will start automatically using the utility. It will help to reduce the load of the server and speed up the process.
The utility is launched manually only for experiments and/or mass upload of shift files into another database. That is, all other mechanisms are the same: the files are processed from the Incoming folder, the system uses the same SQL database, which is used by the report server, etc. Only the mechanism of transmitting data to the SQL database is changed. All you need to do is to make changes to the INI file and restart the server. Further, the operation will be launched automatically.
In update RK7 versions there are three copies of the described app files that have been renamed:
There is a utility version with a graphical user interface.
The app makes copies of the input data sets.
Then, it transmits the data, subject to different checkings, into memory data sets.
After that, the data is transmitted from the memory to MS SQL.
The utility can be used in the reference or report server since version 7.4.21.265 and higher. If you have an older version, it is necessary to upgrade the server which unloads the data into an external database — consequently, there may be a need to upgrade the upstream servers.
Since version 7.5.4.0, shift2sql is installed by default, i.e. no additional settings are required for the INI file.
The shift2sql.exe file should be present in the directory alongside the *.exe file of the server unloading the data into an external database.
For versions higher than 7.4.21.289 the file is delivered as part of a standard package, so there is no need for manual updating (unless you are testing a new version). |
The UseShift2SQL option should be added in the CONFIG section in the INI file of the report or reference server, depending on the server used (for versions lower than 7.5.4.xxx):
[CONFIG] ... UseShift2SQL = "1" ... |
To launch the utility manually you need to enter a text into the command line or an executable file according to the following template:
shift2sql.exe "ConnectionString" "shiftsFileName" "C:\SomePath\chckconv.xml"
There are five parameters to be used:
If needed, it is possible to enable logging into the file by specifying the log file as the location for relocating the command line output:
shift2sql.exe "ConnectionString" "shiftsFileName" "C:\SomePath\chckconv.xml" > logs.txt
To enable batch processing of several shifts you can use the bat file containing the following:
@echo start for %%i in (shift*.udb) do ( echo %%i call "full_path_to_shift2sql.exe" "ConnectionString" "%%i" "full_path_to_chckconv.xml" >logs.txt ) pause |
The .bat file should be kept in the same folder as the shift data! |