I am sure I am missing something basic here...

I want to save the memory data to a file like
Code:
save "data.dta", append
but of course, save doesn't allow append.

There is the
Code:
append using "data.dta"
command, but my understanding is that it does the opposite of what I seek - it appends contents of file into memory, while I want to append contents of memory to file.