English 中文(简体)
SAS stack overflow: PROC SQL reading dictionary.columns
原标题:

I have a program in which I am reading dictionary.columns. There is a big program with lot of code before and after the program segment in which I read dictionary.column.

The program used to work fine however it is giving error now. I have executed program 5 times it gave same error: STACK Overflow

However when I am executing same proc sql patch in different program it is executing fine.

Any suggestions on where the problem might be, and any possible solutions?

问题回答

Usually, to fix stack overflow in SAS is just to close the session and start again. If you want to keep the datasets you created in the work folder, you can just go to the SAS Temporary Files folder (search for it, it s different on different machines, but it s usually located in Program Files/SAS Institute/... ). In the SAS Temporary Files folder you will find some TD_XXXX folders, the latest one probably contains your work library datasets.





相关问题
How do I fix this stack overflow error?

So I have what I think is pretty good code for a sudoku solver in java but I need some help with this method. It gives me a stack overflow when I embed it in a main method. The problem is that my ...

Running down a stack overflow bug

I have an application written in Delphi W32 that is in beta. On the test PC, it haphazardly kicks out a stack overflow message after a few hours of use. How can I trap the error and find the ...

PHP doesn t handle stack overflow?

I was surprised when I just tried the following PHP code: function foo() { foo(); } foo(); I expected to get "500: Internal server error". Instead the connection was closed immediately (no bytes ...

Recovering from stack overflow on Mac OS X

I am implementing a cross platform scripting language for our product. There is a requirement to detect and properly handle stack overflow condition in language VM. Before you jump in and say make ...

java stackoverflow error

Hey guys, I m working on a program for a university course that uses a method called get_line() to recursively calculate a list of successive locations to get from one point on a grid to another. When ...

IIS 6.0 hangs when serving a web-service

I am having issues with one of our web-services. It works fine on my development machine (win XP) whether I host it as a separate application or using cassini from Visual studio. Once I deploy on the ...

热门标签