IBM ClearCase Error Out of Stack Space

Getting Out Of Stack Space error while trying to move files from my DEV folder to REL folder. Using VB script to move files was working fine before, but started to get the error recently.

Upvotes: 1

Views: 34

Answers (1)

VonC
VonC

Reputation: 1323753

Since ClearCase 7.1.1 dates from Dec. 2009, you might be hit by an old (Visual Studio 6) Out-Of-Stack-Space error 28 from that time.
The causes for that error range from:

  • too many active Function, Sub, or Property procedure calls.
  • local variables require more local variable space than is available
  • too many fixed-length strings
  • too many nested DoEvents function calls
  • code triggered an event cascade

Try and simplify your script to see if the issue persists, then add back in the code your removed during the simplification process, in order to determine what part causes the error.

Note that CC7.1.X is in EOS (End Of support) since Sept. 2014 (two years ago). Upgrading (both from WNT, and from CC7.1.X) might be a good idea, if at all possible.

Upvotes: 1

Related Questions