About 32,300 results
Open links in new tab
  1. Solved: Proc Contents and Libname - SAS Support Communities

    Sep 21, 2022 · proc print data= xl_storm.storm_2017 (obs=20); run; libname xl_storm clear; The other way to see the names is to open the file with Excel. However, the XLSX file won't be …

  2. Solved: proc contents in teradata - SAS Support Communities

    Mar 11, 2025 · Do you want to see the Teradata data types or to what they map on the SAS side? If it's just on the SAS side (character or numeric) then use a libname and then Proc Contents.

  3. Solved: PROC CONTENTS type format - SAS Support Communities

    Dec 6, 2022 · PROC CONTENTS has an OUT= option to ouput a dataset with variable attributes. type=1 is numeric and type=2 is character. how to make it show as Num or Char instead of 1 …

  4. How to NOPRINT and ODS in PROC CONTENTS?! - SAS …

    Oct 26, 2022 · Just skip the ODS and use the normal way to output the data. proc contents data=sashelp.baseball noprint out=_cont_tgt; run; Which has the extra bonus of being a …

  5. Subset Proc contents results! - SAS Support Communities

    Jun 30, 2015 · PROC CONTENTS usually performs better for single tables. Use it to get info on all of the columns for your table without printing but only to store in a SAS dataset. Then use …

  6. Solved: proc contents -prevent print - SAS Support Communities

    May 16, 2023 · Hello What is the way to prevent print of proc contents ? I just want to create data set with the information . proc contents data=sashelp.cars; ods output variables=variables; run;

  7. Proc Contents Vs Proc Datasets - SAS Support Communities

    Jan 23, 2017 · Proc contents is a subset of proc datasets, but PROC datasets can do more than proc contents, for example modify variable labels or formats. Proc contents can read …

  8. Solved: proc contents - SAS Support Communities

    Dec 24, 2020 · PROC CONTENTS works on SAS data sets. 26 proc contents data='D:\Projetos\SAS_Oficial_Online\EPG1V2_EG\data\pg1v2_eg.sas'; ERROR: Extension …

  9. How to get owner of each dataset in a library in an output table

    May 29, 2019 · I am looking to grab the owner of each table in a shared library and output the table and owner into a dataset so that we can use it to audit. I have looked into the proc …

  10. PROC CONTENTS of entire library with all variables detail

    Jun 22, 2011 · I am trying to output my results of PROC CONTENTS for an entire library, to a SAS dataset. I want the details of each variable and the dataset it is located in. Then export …