Ernesto_Paez
MIS
Hi everyone,
i want to create a master table from these two tables
eng_jobs.dbf with 49,598 records
eng_xref.dbf with 4,886 records
so i want the Master table(in my select sql named "junkmaster") to have all the fields from the two mentioned above and the records that match
the junkmaster cursor will have 151 fields.
Please correct me, if the following SELECT SQL is wrong.
also when running the above select sql, i am getting the following message, so the "junkmaster" cursor cannot be created, any suggestion for that ?
here is the message "File c:\users\admin.M100\appdate\local\00009tr1002i.tmp is too large"3
any help or suggestion is very appreaciated
Thanks
i want to create a master table from these two tables
eng_jobs.dbf with 49,598 records
eng_xref.dbf with 4,886 records
so i want the Master table(in my select sql named "junkmaster") to have all the fields from the two mentioned above and the records that match
Code:
where eng_jobs.job_no=eng_xref.job_no
the junkmaster cursor will have 151 fields.
Please correct me, if the following SELECT SQL is wrong.
Code:
Select * from eng_jobs t1;
left Outer Join eng_xref t2;
on t1.job_no = t2.job_no;
where t1.job_no=t2.job_no and t1.draw_no=t2.layout,AND t1.sht=t2.sht;
into Cursor junkmaster readwrite && or into table junkmaster
also when running the above select sql, i am getting the following message, so the "junkmaster" cursor cannot be created, any suggestion for that ?
here is the message "File c:\users\admin.M100\appdate\local\00009tr1002i.tmp is too large"3
any help or suggestion is very appreaciated
Thanks