Dear All, I am having difficulty understanding Stata's position in the following sequence of commands:
How can the dataset in memory change since the last save if the save command was immediately preceding it? Is this some sort of AI feature to determine that saving to tempfiles is not the same as really saving it?
I don't mind adding a clear statement in between, just trying to understand.
PS: If it matters, commands are part of a do-file executed in Stata 16.0 on a Windows platform
Thank you, Sergiy
Code:
. tempfile tmp . save `"`tmp'"' file C:\Temp\ST_315c_000001.tmp saved . . import delimited using "c:\data\input.csv" no; dataset in memory has changed since last saved r(4);
I don't mind adding a clear statement in between, just trying to understand.
PS: If it matters, commands are part of a do-file executed in Stata 16.0 on a Windows platform
Thank you, Sergiy
Comment