Hello everyone! Finally, with some of your advices, finally I solved the problem. Here it goes the solution: I defined the library with a libname statement using the following options: liname tera teradata user=xxx passwrod=xxx server=xxxx schema=xxxx sql_options=all mode=teradata; The, in the insert-into sql sentences i used the option (fastload=yes), as the following example: proc sql; insert into tera.table_1 (fastload=yes) select * from lib.table2; quit; Once again, thank you so much for your advices and I hope that my solution will help you someday.
... View more