STATA
STATA saves all temporary files in the C:/ in Windows workstations. Since storage quota are limited on the C:/, you should follow these steps to change the temporary directory
1. Identify a folder outside C:\
Find a folder where you are allowed to create and modify files. This is going to be the new SAS temporary folder. In this tutorial, let's assume that the directory is "E:\StataTemp\ccvdemo2"
2. Change the temporary directory
Users can change the temporary directory in different ways
2.1 Change Windows Environment Variable
Users only need to make the following changes ONCE.
Step 1: Launch "Control Panel"
Step 2: Click "System and Security" in Control Panel
Step 3: Click "System"
Step 4: Click "Advanced system settings"
Step 5: Click "Environment Variables"
Step 6: Click "New"
Step 7: Enter the variable name STATATMP
and value that is your temp folder, i.e., E:\StataTemp\ccvdemo2.
Then click "OK"
After the changes above, whenever Stata
is launched, it saves temporary files in the configured temporary folder.
2.2 Create StataTemp.bat
Launch Notepad. (You can click the search icon in the bottom left of the screen on the Taskbar. Type Notepad and click the first icon)
Enter the following text. It contains 4 lines, including a blank line at the bottom:
set STATATMP=E:\StataTemp\ccvdemo2
cd E:\StataTemp\ccvdemo2
"C:\Program Files\Stata16\StataSE-64.exe"
The file contains 3 commands and 1 empty line at the end. Press Enter at the end of line 3 to add a 4th blank line.
On Notepad, click on File -> Save As ...
Click on "Desktop" on the left "Quick Access Panel"
Enter "myStata.bat" in the File name field.
In the "Save as Type" dropdown list, choose "All Files"
Click Save
After the changes above, whenever users double click "myStata" file on the Desktop, Stata
is launched and saves temporary files in the configured temporary folder.
Last updated