<?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 Re: get a creation script of a dataset to run it on another server in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/get-a-creation-script-of-a-dataset-to-run-it-on-another-server/m-p/515555#M139118</link>
    <description>&lt;P&gt;Hi,&lt;BR /&gt;thanks for your quick respons.&lt;BR /&gt;sorry if my request is not clear enough.&lt;BR /&gt;I have got many existing&amp;nbsp; tables with datas on a production server.&lt;BR /&gt;I would like to get copies of theses tables on another qualifcation server.&lt;BR /&gt;by telling "copy" I mean only structure, no datas needs.&lt;BR /&gt;thus, is it possible to obtain the screation script of a table ? by getting it, I could launch the script on the qalification server to create the table.&lt;BR /&gt;thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 23 Nov 2018 14:23:58 GMT</pubDate>
    <dc:creator>Nasser_DRMCP</dc:creator>
    <dc:date>2018-11-23T14:23:58Z</dc:date>
    <item>
      <title>get a creation script of a dataset to run it on another server</title>
      <link>https://communities.sas.com/t5/SAS-Programming/get-a-creation-script-of-a-dataset-to-run-it-on-another-server/m-p/515549#M139116</link>
      <description>&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i would like to obtain a sas creation script of an existing dataset.&lt;/P&gt;&lt;P&gt;the purpose is to launch this script&amp;nbsp;on another server to get a copy of the table.&lt;/P&gt;&lt;P&gt;I only need the structure without datas&lt;/P&gt;&lt;P&gt;thanks a lot in advance&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Nasser&lt;/P&gt;</description>
      <pubDate>Fri, 23 Nov 2018 14:10:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/get-a-creation-script-of-a-dataset-to-run-it-on-another-server/m-p/515549#M139116</guid>
      <dc:creator>Nasser_DRMCP</dc:creator>
      <dc:date>2018-11-23T14:10:55Z</dc:date>
    </item>
    <item>
      <title>Re: get a creation script of a dataset to run it on another server</title>
      <link>https://communities.sas.com/t5/SAS-Programming/get-a-creation-script-of-a-dataset-to-run-it-on-another-server/m-p/515550#M139117</link>
      <description>&lt;P&gt;Sorry, you request is terribly unclear?&amp;nbsp; If you want an empty data just create one:&lt;/P&gt;
&lt;PRE&gt;proc sql;
  create table want (abc char(200));
quit;&lt;/PRE&gt;</description>
      <pubDate>Fri, 23 Nov 2018 14:16:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/get-a-creation-script-of-a-dataset-to-run-it-on-another-server/m-p/515550#M139117</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-11-23T14:16:42Z</dc:date>
    </item>
    <item>
      <title>Re: get a creation script of a dataset to run it on another server</title>
      <link>https://communities.sas.com/t5/SAS-Programming/get-a-creation-script-of-a-dataset-to-run-it-on-another-server/m-p/515555#M139118</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;thanks for your quick respons.&lt;BR /&gt;sorry if my request is not clear enough.&lt;BR /&gt;I have got many existing&amp;nbsp; tables with datas on a production server.&lt;BR /&gt;I would like to get copies of theses tables on another qualifcation server.&lt;BR /&gt;by telling "copy" I mean only structure, no datas needs.&lt;BR /&gt;thus, is it possible to obtain the screation script of a table ? by getting it, I could launch the script on the qalification server to create the table.&lt;BR /&gt;thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Nov 2018 14:23:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/get-a-creation-script-of-a-dataset-to-run-it-on-another-server/m-p/515555#M139118</guid>
      <dc:creator>Nasser_DRMCP</dc:creator>
      <dc:date>2018-11-23T14:23:58Z</dc:date>
    </item>
    <item>
      <title>Re: get a creation script of a dataset to run it on another server</title>
      <link>https://communities.sas.com/t5/SAS-Programming/get-a-creation-script-of-a-dataset-to-run-it-on-another-server/m-p/515558#M139120</link>
      <description>I found a solution&lt;BR /&gt;proc sql;&lt;BR /&gt;describe table histo.BASE_CONTRAT ;&lt;BR /&gt;quit;</description>
      <pubDate>Fri, 23 Nov 2018 14:28:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/get-a-creation-script-of-a-dataset-to-run-it-on-another-server/m-p/515558#M139120</guid>
      <dc:creator>Nasser_DRMCP</dc:creator>
      <dc:date>2018-11-23T14:28:34Z</dc:date>
    </item>
    <item>
      <title>Re: get a creation script of a dataset to run it on another server</title>
      <link>https://communities.sas.com/t5/SAS-Programming/get-a-creation-script-of-a-dataset-to-run-it-on-another-server/m-p/515560#M139122</link>
      <description>&lt;P&gt;Yes, describe will give you the SQL to re-create a table/dataset.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Nov 2018 14:35:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/get-a-creation-script-of-a-dataset-to-run-it-on-another-server/m-p/515560#M139122</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-11-23T14:35:14Z</dc:date>
    </item>
  </channel>
</rss>

