16
Invalid type configured for cache %s. Cache type may be one of mixed OR log only but NOT both.
You can create, configure, reconfigure, and drop data caches by using the Adaptive Server procedure sp_cacheconfig or by modifying your configuration file.
There are two types allowed for user-defined caches:
logonly – only transaction log (syslogs) information is stored here.
mixed – both transaction log (syslogs) information and user data is stored here. This is the default.
Error 5868 occurs when Adaptive Server determines that you have tried to mix different types of cache. For example, error 5868 would occur if you try to define a cache as log only as well as mixed at the same time.
Use sp_cacheconfig or modify your configuration file to define a valid type for the cache named in the error message.
Refer to the Reference Manual: Procedures for information about sp_cacheconfig and cache types.
All versions