Hello. I pulling data from a cache database. Upon execution of the query the field I need is being truncated to 80 characters. I have tried setting the length, informat, and format on the pull but no success. Code is below. I would appreciate any suggestions on how to have it read in the full value. I have tried the pull with other SQL tools and can pull the full value with no setting or options added. libname k odbc dsn=Kaiser1 schema=SqLUSeR readbuff=10000; proc sql; create table calls1a as select t1.Name_Of_VTrak_File informat $2000. format $2000. length=2000 as Name_Of_VTrak_Filez from k.call_logging_audit(dbkey=Date_Call_Began) t1 where Date_Call_Began = &start. and Recorded_Voicetrak=1; quit;
... View more