<?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 Renaming Work Tables in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Renaming-Work-Tables/m-p/215740#M16209</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We have some existing EG projects that needs to rename some of the tables in the middle of the process flow.&amp;nbsp; However, it doesn't seem to be possible to rename without having to re-build the entire process again.&lt;/P&gt;&lt;P&gt;Is is a correction assumption?&amp;nbsp; If not, how should we rename work space tables that are already used?&amp;nbsp; Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 29 Jun 2015 07:59:22 GMT</pubDate>
    <dc:creator>Grumbler</dc:creator>
    <dc:date>2015-06-29T07:59:22Z</dc:date>
    <item>
      <title>Renaming Work Tables</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Renaming-Work-Tables/m-p/215740#M16209</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We have some existing EG projects that needs to rename some of the tables in the middle of the process flow.&amp;nbsp; However, it doesn't seem to be possible to rename without having to re-build the entire process again.&lt;/P&gt;&lt;P&gt;Is is a correction assumption?&amp;nbsp; If not, how should we rename work space tables that are already used?&amp;nbsp; Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jun 2015 07:59:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Renaming-Work-Tables/m-p/215740#M16209</guid>
      <dc:creator>Grumbler</dc:creator>
      <dc:date>2015-06-29T07:59:22Z</dc:date>
    </item>
    <item>
      <title>Re: Renaming Work Tables</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Renaming-Work-Tables/m-p/215741#M16210</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does below code sample answer your question and give you sufficient guidance?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data work.test;&lt;/P&gt;&lt;P&gt;&amp;nbsp; set sashelp.class;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc datasets lib=work nolist nowarn;&lt;/P&gt;&lt;P&gt;&amp;nbsp; change test=new_test;&lt;/P&gt;&lt;P&gt;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc print data=work.new_test;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jun 2015 08:34:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Renaming-Work-Tables/m-p/215741#M16210</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2015-06-29T08:34:03Z</dc:date>
    </item>
    <item>
      <title>Re: Renaming Work Tables</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Renaming-Work-Tables/m-p/215742#M16211</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;but that doesn't change the data set in the project workflow right?&amp;nbsp; it works in changing the name in work space but doesn't seem to do anything for the project itself.&lt;/P&gt;&lt;P&gt;if you right click a data set in project and see the file name there, there is a "change" button.&amp;nbsp; but it's inactive so we can't do anything.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jun 2015 09:39:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Renaming-Work-Tables/m-p/215742#M16211</guid>
      <dc:creator>Grumbler</dc:creator>
      <dc:date>2015-06-29T09:39:33Z</dc:date>
    </item>
    <item>
      <title>Re: Renaming Work Tables</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Renaming-Work-Tables/m-p/215743#M16212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The code I've posted changes the name of the actual physical table in SAS Work. This is the bit on the Server side of the story. It doesn't change the name of nodes in a SAS EG process flow. That's part of the client side and of SAS EG metadata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You won't be able to change client side nodes during code execution on the server. May be you explain a bit more in detail what you're actually doing and trying to achieve.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jun 2015 10:09:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Renaming-Work-Tables/m-p/215743#M16212</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2015-06-29T10:09:12Z</dc:date>
    </item>
    <item>
      <title>Re: Renaming Work Tables</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Renaming-Work-Tables/m-p/215744#M16213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. You can change the names of the output datasets in nodes that produce them (&lt;EM&gt;Query Builder, Filter and Sort, Append ... Code Node&lt;/EM&gt;).&lt;/P&gt;&lt;P&gt;Sometimes you need to click on &lt;EM&gt;Modify&lt;/EM&gt; sometimes it is enough to select &lt;EM&gt;Properties - Results&lt;/EM&gt;.&lt;/P&gt;&lt;P&gt;Then you must (re)run those nodes. This will create the new data sets.&lt;/P&gt;&lt;P&gt;You don't need to recreate the whole diagram, but yes, it is a manual process.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Then you can change the inputs of nodes (tasks), that consume the work tables:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Right Mouse Click - Select Input Data&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;or in some cases(&lt;EM&gt;Append&lt;/EM&gt;, &lt;EM&gt;Query Builder&lt;/EM&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Modify&lt;/EM&gt; - and change datasources in the Task&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of step 2. you can select &lt;EM&gt;Tools&lt;/EM&gt; - &lt;EM&gt;Project Maintenance&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;You can rename tables here.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;I found, that here you can choose only an existing table as a new the data source, but that new table should not exist in the project!&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN style="text-decoration: line-through;"&gt;For some tasks (Filter and Sort) I was unable to change the data source&lt;/SPAN&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Gergely Bathó&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jun 2015 10:31:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Renaming-Work-Tables/m-p/215744#M16213</guid>
      <dc:creator>gergely_batho</dc:creator>
      <dc:date>2015-06-29T10:31:45Z</dc:date>
    </item>
  </channel>
</rss>

