by admin

Not Enough Space For Environment

There are several factors that contribute to a lack of productivity in the workplace, and one of those factors is not having a healthy work environment. Now, when we say this, most people would automatically assume that we mean an environment that is good for our physical health. Actually, a healthy.

  1. There Is Not Enough Space
  2. Not Enough Space For Environment

There Is Not Enough Space

  • I have CodeView 4.01, as part of an installation of MASM 6.11, running in DOSBox. Works OK as far as I know; setting breakpoints, single-stepping, etc.; although I probably don't push it too hard, and have only used it with real mode programs.
  • The problem is that the database size is around 250 GB and there is not enough space in any of the drive to run the database restore successfully. Can anyone in the group please advise if there is any standard procedure through which I can increase the drive space or do I need to raise a service.

I have more than 50 tables running in work. Before, it worked well.But recently, there are some errors like:ERROR: An I/O error has occurred on fileWORK.' ERROR: FileWORK.' SASTMP-000000030'n.UTILITY is damaged. I/O processing did notcomplete. NOTE: Error was encountered during utility-file processing.You may be able to execute the SQL statement successfully if youallocate more space to the WORK library.

ERROR: There is not enough WORK disk space to store the results of an internal sortingphase. ERROR: An error has occurred.Does anyone know how to solve this error? Your disk is full. If this is running on a server, ask your system administrator to investigate the problem.If this is your desktop, find and delete un-needed files to free up space.Clean out old SAS Work FoldersOften, old SAS Work folders do not get cleared when SAS closes. You can get back a lot of disk space by going to the path defined for SAS Work, and deleting all the old folders.In SAS%put%sysfunc(pathname(work));will show you where the current WORK library is located.

One level up is where all SAS Work folders are created.On my system, that returns: C:UsersdpazzulaAppDataLocalTempSAS Temporary FilesTD9512GXM2L12-PAZZULAThat means that I should look in 'C:UsersdpazzulaAppDataLocalTempSAS Temporary Files' to find old folders to delete. Study your code.Create a Data Flow Diagram to determine WHEN each file is created, where it is used downstream.

Space

Not Enough Space For Environment

Find out when a data set is no longer needed and DELETE it. If you have 50 data sets, chances are numerous data sets are 'value-added' by a subsequent step, and can go away freeing up your work space. A cute trick is to REUSE some of the data set names - to keep the number of unneeded data sets in check.Rule of thumb: leave the environment the way you found it - if there were no files in WORK to start, manually clean up after yourself. Unless it is a Stored Process, which starts a completely new SAS job, and will clean up after itself upon completion of the job.