Hi All,
I use a libname statement to connect to an odbc .
libname mycc odbc datasrc=myodbc user=myuser password= mypassword;
next i create a temp table in the odbc server using a sas dataset
slow...
poc sql;
create table mycc.'#table1'n as select customer_id from work.sas_table; quit;
The poblem i face is that odbc temp table gets loaded at a speed of 1000 rows a minute.. which is too slow..
any suggestions on how i could increase the loading speed..
Thanks...