<?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: change Teradata Password directly from SAS in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/change-Teradata-Password-directly-from-SAS/m-p/368725#M87955</link>
    <description>&lt;P&gt;I have not seen anything like this. &amp;nbsp;The SAS passthrough system is SQL passthrough, i.e. SQL statements get passed to the database SQL parser. &amp;nbsp;Theoretically if you can alter things via the SQL tables using SQL you could, however would result in some interesting explanations of where the production database has gone.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, if you had some sort of command line interface to the database, then you could push command line instructions out, requires you to have comand line access, the database to have a command line admin tool. &amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 20 Jun 2017 14:02:55 GMT</pubDate>
    <dc:creator>RW9</dc:creator>
    <dc:date>2017-06-20T14:02:55Z</dc:date>
    <item>
      <title>change Teradata Password directly from SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/change-Teradata-Password-directly-from-SAS/m-p/368711#M87950</link>
      <description>&lt;P&gt;Hi, would you know if there is possibility to change teradata user password directly through SAS?&lt;/P&gt;&lt;P&gt;Does the pass-trough statement will work?&lt;/P&gt;&lt;P&gt;Thanks a lot!&lt;/P&gt;&lt;P&gt;RD&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jun 2017 13:49:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/change-Teradata-Password-directly-from-SAS/m-p/368711#M87950</guid>
      <dc:creator>reginado</dc:creator>
      <dc:date>2017-06-20T13:49:17Z</dc:date>
    </item>
    <item>
      <title>Re: change Teradata Password directly from SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/change-Teradata-Password-directly-from-SAS/m-p/368713#M87951</link>
      <description>&lt;P&gt;Wouldn't have thought so, isn't that a breach of system integrity being able to just change administrative features externally to the application. &amp;nbsp;Even considering such a thing I would first speak with your ITas you may breach their policies by doing it outside the app in question.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jun 2017 13:53:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/change-Teradata-Password-directly-from-SAS/m-p/368713#M87951</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-06-20T13:53:19Z</dc:date>
    </item>
    <item>
      <title>Re: change Teradata Password directly from SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/change-Teradata-Password-directly-from-SAS/m-p/368721#M87953</link>
      <description>&lt;P&gt;Let assume this is allowed, is this possible? Would you know for sure?&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jun 2017 13:59:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/change-Teradata-Password-directly-from-SAS/m-p/368721#M87953</guid>
      <dc:creator>reginado</dc:creator>
      <dc:date>2017-06-20T13:59:16Z</dc:date>
    </item>
    <item>
      <title>Re: change Teradata Password directly from SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/change-Teradata-Password-directly-from-SAS/m-p/368725#M87955</link>
      <description>&lt;P&gt;I have not seen anything like this. &amp;nbsp;The SAS passthrough system is SQL passthrough, i.e. SQL statements get passed to the database SQL parser. &amp;nbsp;Theoretically if you can alter things via the SQL tables using SQL you could, however would result in some interesting explanations of where the production database has gone.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, if you had some sort of command line interface to the database, then you could push command line instructions out, requires you to have comand line access, the database to have a command line admin tool. &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jun 2017 14:02:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/change-Teradata-Password-directly-from-SAS/m-p/368725#M87955</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-06-20T14:02:55Z</dc:date>
    </item>
    <item>
      <title>Re: change Teradata Password directly from SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/change-Teradata-Password-directly-from-SAS/m-p/368760#M87964</link>
      <description>&lt;P&gt;I think that the Teradata syntax for changing a password looks like this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;MODIFY USER "username" AS PASSWORD ="*******"&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;So you can use PROC SQL to push that statement into Teradata.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sq ;
  connect to teradata ... ;
  EXECUTE (
MODIFY USER "username" AS PASSWORD ="*******"
  ) BY TERADATA; 
quit;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jun 2017 14:44:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/change-Teradata-Password-directly-from-SAS/m-p/368760#M87964</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2017-06-20T14:44:04Z</dc:date>
    </item>
    <item>
      <title>Re: change Teradata Password directly from SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/change-Teradata-Password-directly-from-SAS/m-p/369016#M88028</link>
      <description>&lt;P&gt;Once again, Maxim 6 comes into play. A google search for "teradata change password syntax" reveals that &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;'s code suggestion is actually correct for Teradata. But you will need a Teradata user with the necessary permissions for this.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2017 06:02:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/change-Teradata-Password-directly-from-SAS/m-p/369016#M88028</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-06-21T06:02:39Z</dc:date>
    </item>
  </channel>
</rss>

