Загрузка сообщений канала репликатора данных вызывает ошибку itgencsr003 - PullRequest
0 голосов
/ 13 февраля 2019

Я выполняю следующую инструкцию для загрузки сообщений в фид репликатора данных:

alter persistent cache download feed

Это возвращает следующую ошибку:

alter persistent cache download feed
Error itgencsr003: Could not determine Data Replicator messages. (L123456)

Access not available for license contract 'L123456' with this token.

Please check whether the token in the facts database is not intended for use with a different license contract code.

Что я должен сделать, чтобы загрузить сообщения

1 Ответ

0 голосов
/ 13 февраля 2019

Необходимо установить или включить токен.

Например:

Значение:

your_token

Установить с помощью:

alter persistent cache set token 'your_token'

См. https://documentation.invantive.com/2017R2/invantive-sql-grammar/invantive-sql-grammar-17.30.html#alterPersistentCacheSetStatement

Или включить как:

alter persistent cache download feed token 'your_token'

См. https://documentation.invantive.com/2017R2/invantive-sql-grammar/invantive-sql-grammar-17.30.html#alterPersistentCacheDownloadStatement

...