<?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: Table names longer than 32 character using ODBC in SAS Data Management</title>
    <link>https://communities.sas.com/t5/SAS-Data-Management/Table-names-longer-than-32-character-using-ODBC/m-p/617879#M18664</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/307351"&gt;@Angel_Boy&lt;/a&gt;&amp;nbsp; - I haven't heard anything further. The last significant SAS update was last November for SAS 9.4M6.&lt;/P&gt;</description>
    <pubDate>Thu, 16 Jan 2020 19:16:47 GMT</pubDate>
    <dc:creator>SASKiwi</dc:creator>
    <dc:date>2020-01-16T19:16:47Z</dc:date>
    <item>
      <title>Table names longer than 32 character using ODBC</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Table-names-longer-than-32-character-using-ODBC/m-p/552491#M16933</link>
      <description>&lt;P&gt;Hello everyone,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First time posting, I don't know if this is the right place to ask. But I'm using ODBC to access a database. I'm trying to read a table with a name longer than 32 characters. Are there anyway to work around this problem?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Asking the database management to change the table name is not an option...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;An example of my code:&lt;/P&gt;&lt;PRE&gt;data t;
   set mylib.xxx;
run;&lt;/PRE&gt;&lt;P&gt;where 'xxx' is actually 51 characters long.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Currently I have two solutions in mind:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;1) Uninstalling current SAS and download the 64 bit version&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;2) Export the data by hand&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I would like to know if there are other simpler approaches before I try these two options.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 19 Apr 2019 16:56:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Table-names-longer-than-32-character-using-ODBC/m-p/552491#M16933</guid>
      <dc:creator>JackyK</dc:creator>
      <dc:date>2019-04-19T16:56:42Z</dc:date>
    </item>
    <item>
      <title>Re: Table names longer than 32 character using ODBC</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Table-names-longer-than-32-character-using-ODBC/m-p/552493#M16934</link>
      <description>&lt;P&gt;This question has been asked several times. Beside my short notes, do a seach to get more flesh on th bone.&lt;BR /&gt;1. Create views in the database that complies with SAS naming conventions.&lt;BR /&gt;2. Use SQL Explicit Pass Through to make the mapping to SAS compliant names in your query.&lt;BR /&gt;&lt;BR /&gt;Your option 1 won't help.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Apr 2019 17:03:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Table-names-longer-than-32-character-using-ODBC/m-p/552493#M16934</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2019-04-19T17:03:01Z</dc:date>
    </item>
    <item>
      <title>Re: Table names longer than 32 character using ODBC</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Table-names-longer-than-32-character-using-ODBC/m-p/552500#M16935</link>
      <description>&lt;P&gt;as&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13674"&gt;@LinusH&lt;/a&gt; says you may want to have the DB admins create view that are consistent with SAS. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;Views will not require them to dedicate permanent data storage.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Apr 2019 17:25:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Table-names-longer-than-32-character-using-ODBC/m-p/552500#M16935</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2019-04-19T17:25:14Z</dc:date>
    </item>
    <item>
      <title>Re: Table names longer than 32 character using ODBC</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Table-names-longer-than-32-character-using-ODBC/m-p/552546#M16937</link>
      <description>&lt;P&gt;Personally I like to yell at people that think it is helpful to make longer and longer table and variable names.&lt;/P&gt;
&lt;P&gt;But it normally is the same as yelling at a brick wall.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try just using pass thru SQL.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
connect using mylib;
create table t as select * from connection to mylib
(select * from my_table_with_a_name_so_long_that_it_is_longer_than_any_single_line_of_a_program_should_be
);
quit;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 19 Apr 2019 21:20:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Table-names-longer-than-32-character-using-ODBC/m-p/552546#M16937</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-04-19T21:20:39Z</dc:date>
    </item>
    <item>
      <title>Re: Table names longer than 32 character using ODBC</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Table-names-longer-than-32-character-using-ODBC/m-p/552551#M16938</link>
      <description>&lt;P&gt;I understand SAS is addressing this limitation - increase to 128 characters is planned - for all SAS and non-SAS tables and column names in SAS 9.5. However I'm guessing this release is still some way off as we are still in the 9.4 cycle.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Apr 2019 22:34:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Table-names-longer-than-32-character-using-ODBC/m-p/552551#M16938</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2019-04-19T22:34:05Z</dc:date>
    </item>
    <item>
      <title>Re: Table names longer than 32 character using ODBC</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Table-names-longer-than-32-character-using-ODBC/m-p/552597#M16940</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Personally I like to yell at people that think it is helpful to make longer and longer table and variable names.&lt;/P&gt;
&lt;P&gt;But it normally is the same as yelling at a brick wall.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Let's me think of the phrase "Thick as a brick".&lt;/P&gt;</description>
      <pubDate>Sat, 20 Apr 2019 05:40:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Table-names-longer-than-32-character-using-ODBC/m-p/552597#M16940</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-04-20T05:40:12Z</dc:date>
    </item>
    <item>
      <title>Re: Table names longer than 32 character using ODBC</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Table-names-longer-than-32-character-using-ODBC/m-p/552607#M16941</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&amp;nbsp; - you're not a fan of Jethro Tull are you by any chance?! Happen to be listening to the album of that name right now LOL.&lt;/P&gt;</description>
      <pubDate>Sat, 20 Apr 2019 06:36:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Table-names-longer-than-32-character-using-ODBC/m-p/552607#M16941</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2019-04-20T06:36:55Z</dc:date>
    </item>
    <item>
      <title>Re: Table names longer than 32 character using ODBC</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Table-names-longer-than-32-character-using-ODBC/m-p/552625#M16942</link>
      <description>&lt;P&gt;I am a fan of Jethro Tull.&amp;nbsp; Thanks &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13976"&gt;@SASKiwi&lt;/a&gt;&amp;nbsp;for taking me back 40 years.&lt;/P&gt;</description>
      <pubDate>Sat, 20 Apr 2019 12:17:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Table-names-longer-than-32-character-using-ODBC/m-p/552625#M16942</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2019-04-20T12:17:19Z</dc:date>
    </item>
    <item>
      <title>Re: Table names longer than 32 character using ODBC</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Table-names-longer-than-32-character-using-ODBC/m-p/552626#M16943</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13976"&gt;@SASKiwi&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&amp;nbsp; - you're not a fan of Jethro Tull are you by any chance?! Happen to be listening to the album of that name right now LOL.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Well, I'm a little more mainstream there. My favorite is Aqualung, as it contains one of the most iconic rock pieces ever.&lt;/P&gt;
&lt;P&gt;But I like the phrase.&amp;nbsp; "IQ of a burned piece of mud" is pretty damning &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 20 Apr 2019 12:35:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Table-names-longer-than-32-character-using-ODBC/m-p/552626#M16943</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-04-20T12:35:08Z</dc:date>
    </item>
    <item>
      <title>Re: Table names longer than 32 character using ODBC</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Table-names-longer-than-32-character-using-ODBC/m-p/617674#M18661</link>
      <description>&lt;P&gt;Hello SAS community,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am looking to see if there has been any update to making SAS work with greater than 32 characters.&lt;/P&gt;&lt;P&gt;This seems to have been an issue for several years now and it doesn't seem like SAS is doing anything in regards to this issue.&lt;/P&gt;&lt;P&gt;When/how soon can we expect SAS to make this a reality? It would be nice to hear back from any of the SAS reps on this.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jan 2020 04:44:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Table-names-longer-than-32-character-using-ODBC/m-p/617674#M18661</guid>
      <dc:creator>Angel_Boy</dc:creator>
      <dc:date>2020-01-16T04:44:57Z</dc:date>
    </item>
    <item>
      <title>Re: Table names longer than 32 character using ODBC</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Table-names-longer-than-32-character-using-ODBC/m-p/617879#M18664</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/307351"&gt;@Angel_Boy&lt;/a&gt;&amp;nbsp; - I haven't heard anything further. The last significant SAS update was last November for SAS 9.4M6.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jan 2020 19:16:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Table-names-longer-than-32-character-using-ODBC/m-p/617879#M18664</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2020-01-16T19:16:47Z</dc:date>
    </item>
  </channel>
</rss>

