Hey Hey
I am going to merge these two data sets. The first one has duplicated values I have to keep them.NPC_FIC is firms identifier.
Listed 100 out of 2881513 observations
------------------ copy up to and including the previous line ------------------
Listed 100 out of 353029 observations
I already tried 'joiny' it did not work either, my PC freezes
How can I merge these two data sets?
I am going to merge these two data sets. The first one has duplicated values I have to keep them.NPC_FIC is firms identifier.
Code:
* Example generated by -dataex-. For more info, type help dataex clear input double NPC_FIC 500000001 500000001 500000001 500000002 500000002 500000002 500000002 500000002 500000033 500000033 500000050 500000050 500000083 500000104 500000104 500000119 500000119 500000119 500000119 500000119 500000119 500000119 500000119 500000121 500000121 500000156 500000156 500000157 500000157 500000157 500000157 500000165 500000165 500000165 500000165 500000180 500000198 500000198 500000198 500000201 500000204 500000204 500000212 500000215 500000215 500000215 500000215 500000230 500000240 500000240 500000276 500000276 500000276 500000279 500000284 500000284 500000284 500000284 500000305 500000324 500000334 500000341 500000341 500000341 500000346 500000346 500000346 500000346 500000346 500000376 500000376 500000376 500000376 500000376 500000376 500000376 500000376 500000376 500000395 500000395 500000395 500000395 500000395 500000395 500000465 500000465 500000465 500000470 500000470 500000478 500000525 500000543 500000543 500000565 500000583 500000583 500000600 500000600 500000601 500000633 end
Listed 100 out of 2881513 observations
Code:
* Example generated by -dataex-. For more info, type help dataex clear input double NPC_FIC 500000001 500000002 500000033 500000050 500000083 500000104 500000119 500000121 500000156 500000157 500000165 500000180 500000198 500000201 500000204 500000212 500000215 500000230 500000240 500000276 500000279 500000284 500000305 500000324 500000334 500000341 500000346 500000376 500000376 500000376 500000395 500000465 500000470 500000478 500000525 500000543 500000565 500000583 500000583 500000600 500000601 500000633 500000675 500000709 500000748 500000757 500000761 500000765 500000766 500000774 500000791 500000795 500000796 500000800 500000843 500000846 500000856 500000859 500000863 500000867 500000871 500000891 500000902 500000905 500000918 500000937 500000949 500001025 500001028 500001045 500001052 500001066 500001068 500001080 500001083 500001096 500001126 500001170 500001191 500001199 500001207 500001222 500001235 500001242 500001268 500001272 500001275 500001322 500001342 500001352 500001369 500001374 500001377 500001403 500001404 500001427 500001440 500001453 500001455 500001493 end
Listed 100 out of 353029 observations
Code:
. merge m:1 NPC_FIC using "D:\chapter 2\Database\Trab_Emp\trab_Emp_2010.dta" variable NPC_FIC does not uniquely identify observations in the master data
How can I merge these two data sets?
Comment