I am running the following approxmited code: proc sql; create table folder1.table1 as select col1, col2, case when col2 in ( '1', '2') then 'text' end as col3 from table2 union all select col1, col2, case when col2 in ( '1', '2') then 'text' end as col3 from table3 ; quit; But when table1 appears in folder1 and I try open it through SAS EG by double clicking on the file in the library lost I get the following error: table1 does not exist. You will need to refresh the task that created it before it can be opened. When I set inobs and outobs to ten the table opens just fine. Does anyone know what might be going on? Thanks!
... View more