Dear Stata Forum,
this seems to be a rather straightforward task, but I receive an error message for whatever reason.
I use the UKHLS or Understanding Society. It seems to me that e_englang should be the only variable used from the using dataset, instead I receive the error message below.
Any ideas anyone?
I would as usual appreciate your help.
Best wishes.
use pidp a_englang using "$Stata11_se/a_indresp_protect", clear // master data set
merge 1:1 pidp using "$Stata11_se/e_indresp_protect.dta" , keepusing(e_englang) nogen // merge master with using dataset while only using the variable e_englang.
Error message in red:
no room to add more variables
Up to 2,048 variables are allowed with this version of Stata. Versions are available that allow up to 32,767 variables.
this seems to be a rather straightforward task, but I receive an error message for whatever reason.
I use the UKHLS or Understanding Society. It seems to me that e_englang should be the only variable used from the using dataset, instead I receive the error message below.
Any ideas anyone?
I would as usual appreciate your help.
Best wishes.
use pidp a_englang using "$Stata11_se/a_indresp_protect", clear // master data set
merge 1:1 pidp using "$Stata11_se/e_indresp_protect.dta" , keepusing(e_englang) nogen // merge master with using dataset while only using the variable e_englang.
Error message in red:
no room to add more variables
Up to 2,048 variables are allowed with this version of Stata. Versions are available that allow up to 32,767 variables.
Comment