<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Who created the data set -owner_name in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Who-created-the-data-set-owner-name/m-p/939929#M368997</link>
    <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;Is there a way to add a column of owner_name (The user ID of the person who created the data set)&lt;/P&gt;
&lt;P&gt;by&amp;nbsp; create proc sql query to&amp;nbsp;&lt;CODE class=" language-sas"&gt;dictionary.tables?&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;&lt;CODE class=" language-sas"&gt;(Note-&amp;nbsp;This&amp;nbsp;information&amp;nbsp;exist&amp;nbsp;in&amp;nbsp;proc contents &amp;nbsp;but&amp;nbsp;I&amp;nbsp;want&amp;nbsp;to&amp;nbsp;get&amp;nbsp;it&amp;nbsp;also&amp;nbsp;from&amp;nbsp;&lt;/CODE&gt;&amp;nbsp;&lt;CODE class=" language-sas"&gt;dictionary.tables)&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
title 'All Tables and Views in the SQL Library';
select  libname, memname, memtype, nobs, put(filesize,sizekmg.) as filesize
from dictionary.tables
where libname='R_R'
order by filesize desc 
;
quit;
 &lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 19 Aug 2024 16:59:44 GMT</pubDate>
    <dc:creator>Ronein</dc:creator>
    <dc:date>2024-08-19T16:59:44Z</dc:date>
    <item>
      <title>Who created the data set -owner_name</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Who-created-the-data-set-owner-name/m-p/939929#M368997</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;Is there a way to add a column of owner_name (The user ID of the person who created the data set)&lt;/P&gt;
&lt;P&gt;by&amp;nbsp; create proc sql query to&amp;nbsp;&lt;CODE class=" language-sas"&gt;dictionary.tables?&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;&lt;CODE class=" language-sas"&gt;(Note-&amp;nbsp;This&amp;nbsp;information&amp;nbsp;exist&amp;nbsp;in&amp;nbsp;proc contents &amp;nbsp;but&amp;nbsp;I&amp;nbsp;want&amp;nbsp;to&amp;nbsp;get&amp;nbsp;it&amp;nbsp;also&amp;nbsp;from&amp;nbsp;&lt;/CODE&gt;&amp;nbsp;&lt;CODE class=" language-sas"&gt;dictionary.tables)&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
title 'All Tables and Views in the SQL Library';
select  libname, memname, memtype, nobs, put(filesize,sizekmg.) as filesize
from dictionary.tables
where libname='R_R'
order by filesize desc 
;
quit;
 &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 19 Aug 2024 16:59:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Who-created-the-data-set-owner-name/m-p/939929#M368997</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2024-08-19T16:59:44Z</dc:date>
    </item>
    <item>
      <title>Re: Who created the data set -owner_name</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Who-created-the-data-set-owner-name/m-p/939975#M369014</link>
      <description>&lt;P&gt;Always risky to answer "no", but looking through dictionary.dictionaries, I don't see anything that looks like it would store information about dataset owner:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql ;
  select  memname,name,label from dictionary.dictionaries ;
quit ;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 19 Aug 2024 18:35:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Who-created-the-data-set-owner-name/m-p/939975#M369014</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2024-08-19T18:35:40Z</dc:date>
    </item>
    <item>
      <title>Re: Who created the data set -owner_name</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Who-created-the-data-set-owner-name/m-p/940002#M369024</link>
      <description>&lt;P&gt;It does NOT exist in the OUTPUT dataset generated by PROC CONTENTS.&amp;nbsp; But it does appear in the PRINTED output that PROC CONTENTS generates.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The OWNER information looks like information that it gathered from the physical FILENAME that also prints in the same tabular report.&amp;nbsp; You can get that information using the FINFO() function.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Aug 2024 20:54:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Who-created-the-data-set-owner-name/m-p/940002#M369024</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2024-08-19T20:54:47Z</dc:date>
    </item>
  </channel>
</rss>

