I have a large dataset (the name of the data is ENAHO if you know it). My problem is that I cannot load dataset. When I run for open the dataset, stata show and I receive an error r(909) saying “op. sys. refuses to provide memory”
Also I show them memory settings:
. query memory
---------------------------------------------------------------------------------------------------------------------------------------------
Memory settings
set maxvar 5000 2048-32767; max. vars allowed
set matsize 400 10-11000; max. # vars in models
set niceness 5 0-10
set min_memory 0 0-0
set max_memory . 16m-0 or .
set segmentsize 16m 1m-1g
. set segmentsize 1g
r(909);
. do "C:\Users\TOSHIBA\AppData\Local\Temp\STD04000000.t mp"
. cd "C:\Users\TOSHIBA\Downloads\enaho-marisol"
C:\Users\TOSHIBA\Downloads\enaho-marisol
. use enaho01a-2011-2015-500.dta,clear
op. sys. refuses to provide memory
Stata's data-storage memory manager has already allocated 1536m bytes and it just attempted to allocate another 16m bytes. The
operating system said no. Perhaps you are running another memory-consuming task and the command will work later when the task
completes. Perhaps you are on a multiuser system that is especially busy and the command will work later when activity quiets down.
Perhaps a system administrator has put a limit on what you can allocate; see help memory. Or perhaps that's all the memory your
computer can allocate to Stata.
r(909);
end of do-file
How I to solve this problem?
Also I show them memory settings:
. query memory
---------------------------------------------------------------------------------------------------------------------------------------------
Memory settings
set maxvar 5000 2048-32767; max. vars allowed
set matsize 400 10-11000; max. # vars in models
set niceness 5 0-10
set min_memory 0 0-0
set max_memory . 16m-0 or .
set segmentsize 16m 1m-1g
. set segmentsize 1g
r(909);
. do "C:\Users\TOSHIBA\AppData\Local\Temp\STD04000000.t mp"
. cd "C:\Users\TOSHIBA\Downloads\enaho-marisol"
C:\Users\TOSHIBA\Downloads\enaho-marisol
. use enaho01a-2011-2015-500.dta,clear
op. sys. refuses to provide memory
Stata's data-storage memory manager has already allocated 1536m bytes and it just attempted to allocate another 16m bytes. The
operating system said no. Perhaps you are running another memory-consuming task and the command will work later when the task
completes. Perhaps you are on a multiuser system that is especially busy and the command will work later when activity quiets down.
Perhaps a system administrator has put a limit on what you can allocate; see help memory. Or perhaps that's all the memory your
computer can allocate to Stata.
r(909);
end of do-file
How I to solve this problem?
Comment