I try to upload a 100k single column table (string variable with length = 10) to Teradata with the code below. After around 5-10 mins, in the Task status, it will go from "Running" to "complete" but stuck there for at least 30-60mins.
libname TDWORK teradata connection=global dbmstemp=yes tdpid=dbc user=&EDW_USER. password=&EDW_PW.;
data tdwork.tempTBL;
set tempTBL;
run;