I have to export SAS file into Access database. I am using DBMS engine to accomplish this. I have couple of quetions-
1. 1st one of the variables is char 255$ and it gives an error when I export this field. Length of 200$ works fine. But I would like to export out the full 255 $ field, is there a way to accomplish this?
2. and 2nd, I am not sure how to overwrite the existing table in Access(from SAS) before I create the new one using following code. Is there some Option I can add?
LibName dblib2 DbODBC Source="CATIDBInst"
dbtbl2="tblInstData";
run;
data dblib2.dbtbl2;
set Inst;
run;
Thanks
SK
1. 1st one of the variables is char 255$ and it gives an error when I export this field. Length of 200$ works fine. But I would like to export out the full 255 $ field, is there a way to accomplish this?
2. and 2nd, I am not sure how to overwrite the existing table in Access(from SAS) before I create the new one using following code. Is there some Option I can add?
LibName dblib2 DbODBC Source="CATIDBInst"
dbtbl2="tblInstData";
run;
data dblib2.dbtbl2;
set Inst;
run;
Thanks
SK