Archives of the TeradataForum
Message Posted: Fri, 25 Jan 2008 @ 20:04:41 GMT
Subj: | | Re: Flush the cache |
|
From: | | Christie, Jon |
Which cache are you interested in? There are several. There's a dictionary cache and a request cache (sometimes called the steps cache) and a
space accounting cache and an ampusage cache and most likely several others that I don't know about. You're probably concerned about the request
cache. You can say:
diagnostic nocache on for session;
This will cause the parser not to look for a matching request in the request cache and to always parse the request. The diagnostic is
frequently put at the beginning of test cases.
Jon
|