BookmarkSubscribeRSS Feed
NN
Quartz | Level 8 NN
Quartz | Level 8

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...

1 REPLY 1
SASKiwi
PROC Star

Try adding the INSERTBUFF = option to your LIBNAME. The default value for ODBC is only 1 according to the documentation, that is one row at a time. You may have to experiment to get the optimal value, but I suggest you try values like  500 or 1000. You may also be restrained by the DBCOMMIT = option where usually the default is 1000. Setting this to 0 means only one commit is made at the end of the load, and this may well help also.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1074 views
  • 1 like
  • 2 in conversation