BookmarkSubscribeRSS Feed
jbanas
Calcite | Level 5

In teradata, you can see the table definition by running a show table xxx to get the contents on how it was created.  In SAS you can also run this same code that writes out the contents to a table or perform a describe xxx which produces the code in a log.  what i was looking to do is utilize SAS to read this code to recreate the table to perform a comparison on another table.  The columns could always change so i want to make it as dynamic as possible.  Waht would be the most efficient way to build a new table off of the describe statement.

3 REPLIES 3
BrunoMueller
SAS Super FREQ

If you just want to create a new table that has the same structure as the old table, you can use

create table newTable like oldTable;

See also this sample code here:

data newCars;
  seqNr = _n_;
  set sashelp.cars;
run;

proc sql;
  create index seqNr on newcars;
  describe table newCars;
  create table newCars2 like newCars;
  describe table newCars;
quit;

Bruno

jbanas
Calcite | Level 5
Thanks for the reply Bruno, ultimately I would take the column attributes that would build the table on Teradata


LinusH
Tourmaline | Level 20
Perhaps you should look for Teradata tools instead...
Data never sleeps

Catch up on SAS Innovate 2026

Dive into keynotes, announcements and breakthroughs on demand.

Explore Now →
How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 3 replies
  • 2250 views
  • 0 likes
  • 3 in conversation