The article describes the situation of a database breakdown when a dish with a zero code appears in it.
An example of such a case in a cube report:
Possible reasons:
The first step is to find out the error cause.
Open SQL Server Management Studio and query your database:
select distinct sifr from SESSIONDISHES where SIFR not in (select sifr from MENUITEMS) |
The request shows the sold dishes that are not on the menu. In this case, there was one such dish
Next, by searching in the manager station, check if there are dishes with such identifiers
If there are such dishes, then it is case #1. The problem can be solved by uploading the references to the SQL database. Read the details below.
To do this:
If after these steps the dish is found in the manager station but is not in the SQL database, create a task for the support desk.
If there are no dishes with zero code in the manager station, then it is case #2 - the database of the reference or report server was rolled back to the state when these dishes had not yet been created. To solve the problem:
Execute a query to the SQL database from the field below. One dish — one request. That is, for each dish, make a line with the old and new dish ID
update sessiondishes set sifr = 111111 where sifr = 1000979 |
where 1000979 is the identifier of the old dish, absent in the rk7.udb database, and 111111 is for the new dish, created in the manager station.