R_keeper 7 can only be connected to MS SQL version 2012 or higher.
By default, SQL Server works in the «Read Commited» mode, which sections data during request. This may cause problems in multi-user environment. Starting from 2005 version, the «READ COMMITTED using row versioning» mode is supported, where the sections can only cause problems if different users are recording data in the same place. Reading data is never sectioned and never sections no one.
To enable versioning mode, run the script:
ALTER DATABASE RK7 SET READ_COMMITTED_SNAPSHOT ON; |
See more details in the articles on Row Versioning-based Isolation Levels or Row Versioning-Based Transaction Isolation.
As a result, the «Connection string» will look as follows: Provider=SQLOLEDB.1;Password=1;Persist Security Info=True;User ID=sa;Initial Catalog=RK7;Data Source=127.0.0.12
Data Source = a name or an IP address of the computer where SQL Server is installed. Using the server instance name, like 192.168.190.150\SQLEXPRESS, is also possible. |
Ultra lite (global shifts only). check.udb will only contain information on common shifts and links thereto in the SQL base.
If you decide to modify the UDB database mode from Large to Lite when the connection to SQL is set (i. e., the restaurant has been working in this mode for quite a while already) and to perform manual re-export of cumulative data, Check.udb file size will decrease automatically. Hence, a significant part of the data will be deleted from this database, and only a part of the data will be exported to the SQL database. Therefore, never perform cumulative data export if Lite or Medium UDB database mode is used. |
In the config file of the references server rk7srv.INI or the report server repsserv.ini, specify the parameter
UseSQL=1 |
For the reference server in the [RefServer] section, and in the [Config] section for the report server.
If anything needs to be modified in some external database settings, first stop all report servers that use such settings, and launch them with the parameter UseSQL=0. Then change settings, stop the server again, and set value 1 again for the UseSQL parameter (UseSQL=1). I. e., all changes in external database settings shall be made while the server is working with the parameter UseSQL=0. If the UDB database mode parameter is changed from Large to Lite or Medium, and the further upload to SQL is performed, most of the cumulative info will be deleted from check.udb base. This is critical if an external cumulative database is not used in SQL. It is not possible to establish a simultaneous connection to SQL Server database for several RK7 roles using the same SQL database user. RK7 will not save the user info in the settings of connection to the external database. |
To save the disk space and somehow improve performance, it is recommended to use the «Simple» recovery model
It is strongly recommended to read about different SQL recovery models, their differences, and specific features. See more details in the Restore and Recovery Overview. |
After recovery model change, perform log file compression. Right-click on the DB being used: Tasks -> Shrink -> Files, and select the «Log» file type in the next window.
Problem 1: Sometimes, export to just created SQL Server 2008 database cannot be executed with selected Native Client provider in accordance with p. 3.1.3.
Solution: Select other Microsoft OLE DB Provider for SQL Server provider, re-create a clean DB, and repeat export.
Problem 2: Direct reports are not generated.
Solution: For each role having different viewing rights for different object reports (f.ex., one role has viewing rights for one object, another role — for several objects), create different users at SQL server for the role to generate direct reports, and configure roles with such users in SQL accordingly. See a schematic in the figure below.