Thank you, I remake the test: proc fedsql;
select sex, avg(height) as avg_height, avg(weight) as avg_weight from
sashelp.class group by sex;
quit; Log: 1 proc fedsql; NOTE: Writing HTML Body file: sashtml.htm 2 select sex, avg(height) as avg_height, avg(weight) as avg_weight from 3 sashelp.class group by sex; ERROR: Table "SASHELP.CLASS" does not exist or cannot be accessed ERROR: BASE driver, schema name SASHELP was not found for this connection 4 quit; With rsubmit: rsubmit;
proc fedsql;
select sex, avg(height) as avg_height, avg(weight) as avg_weight from
sashelp.class group by sex;
quit;
endrsubmit; Log: 455 proc fedsql; ERROR: General error ORA-28000: the account is locked ERROR: TKTS initialization failed. 456 select sex, avg(height) as avg_height, avg(weight) as avg_weight from 457 sashelp.class group by sex; 458 quit;
... View more