1

我执行以下语句以下载 Data Replicator 提要上的消息:

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.

我应该怎么做才能下载消息?

4

1 回答 1

2

您必须设置或包含令牌。

例如:

价值:

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

于 2019-02-13T15:32:49.520 回答