Hello!
I have access to different versions of Stata 17, running on the same server (windows server 2019):
- 19-user 4-core, which runs the code bellow
- Single-user 12-core, which yields the following error message:
- both are Stata 17.0 MP—Parallel Edition
I have replicated the error that occurred on my data (I was checking if one version was faster than the other) with the following code:
I have already tried
, as this seemed the most common solution that I found, but without success.
Any suggestions on how I can fix it?
Thank you for your help!
Hélder
I have access to different versions of Stata 17, running on the same server (windows server 2019):
- 19-user 4-core, which runs the code bellow
- Single-user 12-core, which yields the following error message:
option cluster() incorrectly specified: too many variables specified
I have replicated the error that occurred on my data (I was checking if one version was faster than the other) with the following code:
Code:
webuse nlswork, clear reg ln_w grade age ttl_exp tenure south, vce(cluster idcode occ_code)
Code:
set maxvar 120000, perma
Any suggestions on how I can fix it?
Thank you for your help!
Hélder
Comment