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

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register 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
  • 1489 views
  • 0 likes
  • 3 in conversation