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

Hi all,

do there is a single way to copy only dataset structure?

I mean, I have a dataset with C columns and R rows, a would have a second dataset with the same C columns but with 0 rows.

Many thanks.

Regards

1 ACCEPTED SOLUTION

Accepted Solutions
Haikuo
Onyx | Level 15

Then copy 0 rows over:

   data want;

   set   have (obs=0);

  run;
or

data want;

  set have;

stop;

run;

Haikuo

View solution in original post

4 REPLIES 4
Haikuo
Onyx | Level 15

Then copy 0 rows over:

   data want;

   set   have (obs=0);

  run;
or

data want;

  set have;

stop;

run;

Haikuo

garag
Calcite | Level 5


Hi Haikuo,

Both works correctly, the first one is a littel bit faster.

Many thanks for your reply.

Antonio

Haikuo
Onyx | Level 15

Antonio,

As a side note, if you are planning doing the same on datasets other than SAS tables, such as Oracle, sybase, SQL server etc, you may need to use the following standard SQL syntax:

CREATE TABLE want AS SELECT * FROM have  WHERE 1=0

and wrap it up using SAS pass-through. where condition can be anything not TRUE.

Please note: proc sql options such as inobs=, outobs= may not work in this kind of situation.

Haikuo

PGStats
Opal | Level 21

I don't know how standard it is, but SAS SQL offers the command :

CREATE TABLE want LIKE have;

to create an empty table with the same structure as another table.

PG

PG

sas-innovate-wordmark-2025-midnight.png

Register Today!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.


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
  • 4 replies
  • 7793 views
  • 1 like
  • 3 in conversation