Good Morning everybody,
I have a do-file which works first with a dataset A, and afterwards with a dataset B.
The syntax is written in a way, that at the end of the dofile a stata application will be opened with dataset B.
Is there a command which opens two different stata applications, hence, that at the end of the do-file both dataset are open?
Because I am not sure whether my description makes that much sense, here an example:
I cannot use two different do-files here, and I also know that it is possible two open two stata applications manually- but that doesnt really help me here 
It might be also good to know that I use UltraEdit and not the implemented stata do-file.
Best Regards
Marius
I have a do-file which works first with a dataset A, and afterwards with a dataset B.
The syntax is written in a way, that at the end of the dofile a stata application will be opened with dataset B.
Is there a command which opens two different stata applications, hence, that at the end of the do-file both dataset are open?
Because I am not sure whether my description makes that much sense, here an example:
Code:
---> open stata application 1 use "dataset A" do "xxxxx" save "yyyy" ----> open stata application 2 use "dataset B" do "xxxxx" save "yyyy"

It might be also good to know that I use UltraEdit and not the implemented stata do-file.
Best Regards
Marius
Comment