创建一个SAS数据集的完全副本。

huangapple go评论62阅读模式
英文:

creating an identical copy of a SAS dataset

问题

这里有一种方法可以创建一个包括所有列标签、格式、索引和约束的数据集的相同副本吗?我知道下面的数据集副本将创建一个数据集的副本,但这不会保留约束和索引。

data work.new_table;
set work.old_table;
run;
英文:

Is here there a way to create an identical copy of a dataset that includes all the column labels, formats, indexes and constaints?
I'm aware that the below datasep copy would create a copy of the dataset, but this would not retail the constaints, and index.

data work.new_table;
set work.old_table;
run;

答案1

得分: 3

使用 PROC DATASETS,使用 CONSTRAINT 和 INDEX 规范进行复制。

proc datasets lib=work nodetails nolist;
copy in=work out=want constraint=yes index=yes;
select datasetName;
run;quit;
英文:

Use PROC DATASETS, COPY with the CONSTRAINT and INDEX specifications.

proc datasets lib=work nodetails nolist;
copy in=work out=want constraint=yes index=yes;
select datasetName;
run;quit;

huangapple
  • 本文由 发表于 2023年3月4日 00:30:29
  • 转载请务必保留本文链接:https://go.coder-hub.com/75629628.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定