BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Jade_SAS
Pyrite | Level 9

Hi All,

 

    I'm copying one table from Teradata to the same location and I get the error below:

   

LIBNAME TD TERADATA SERVER=*** DATABASE=***;

 

Data TD.test1;

set TD.log;

Run;

 

ERROR: Error attempting to CREATE a DBMS table. ERROR: Teradata execute: Length 0 is not allowed for a CHAR, VARCHAR, BYTE, VARBYTE

column..

ERROR: ROLLBACK issued due to errors for data set TD.TEST1.DATA.

 

 

What's the possible reason for this? Thank you!

 

Jade

 

1 ACCEPTED SOLUTION

Accepted Solutions
Patrick
Opal | Level 21

@Jade_SAS

Additionally to what @kiranv_ wrote: Don't use a SAS data step to replicate a DBMS table. Using a SAS data step will most likely result in SAS first pulling all the data from the DB into SAS and then creating the new table and re-loading the data back to the DBMS.

 

Best use PROC SQL or eventually PROC APPEND. 

 

If it would be me then I'd use explicit pass-through SQL for such operations.

View solution in original post

2 REPLIES 2
kiranv_
Rhodochrosite | Level 12

do you have any character column with value of '' which is allowed in SAS but not allowed in Teradata after Teradata 14

Patrick
Opal | Level 21

@Jade_SAS

Additionally to what @kiranv_ wrote: Don't use a SAS data step to replicate a DBMS table. Using a SAS data step will most likely result in SAS first pulling all the data from the DB into SAS and then creating the new table and re-loading the data back to the DBMS.

 

Best use PROC SQL or eventually PROC APPEND. 

 

If it would be me then I'd use explicit pass-through SQL for such operations.

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

How to connect to databases in SAS Viya

Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 4901 views
  • 1 like
  • 3 in conversation