<?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: proc sql pass through facility concatenation of variable in SAS Data Management</title>
    <link>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-pass-through-facility-concatenation-of-variable/m-p/325482#M9479</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/59791"&gt;@CP2&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;In my understanding SAS will determine the length and type of variables based on what's coming from the source database.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do you know the type and length your database assigns when creating &lt;EM&gt;typenames&lt;/EM&gt;?&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;REPLACE(LEFT(type, LEN(type) - &lt;/SPAN&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;SPAN&gt;), '; unknown', '') AS typenames&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Eventually amend your pass-through code and explicitely control what you get for typenames.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;From the docu:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;If &lt;SPAN class="parameter"&gt;string_expression&lt;/SPAN&gt; is not of type &lt;SPAN class="input"&gt;varchar(max)&lt;/SPAN&gt; or &lt;SPAN class="input"&gt;nvarchar(max),&lt;/SPAN&gt; &lt;STRONG&gt;REPLACE&lt;/STRONG&gt; truncates the return value at 8,000 bytes. To return values greater than 8,000 bytes, &lt;SPAN class="parameter"&gt;string_expression&lt;/SPAN&gt; must be explicitly cast to a large-value data type.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://technet.microsoft.com/en-us/library/ms186862(v=sql.110).aspx" target="_blank"&gt;https://technet.microsoft.com/en-us/library/ms186862(v=sql.110).aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 17 Jan 2017 21:32:34 GMT</pubDate>
    <dc:creator>Patrick</dc:creator>
    <dc:date>2017-01-17T21:32:34Z</dc:date>
    <item>
      <title>proc sql pass through facility concatenation of variable</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-pass-through-facility-concatenation-of-variable/m-p/324608#M9470</link>
      <description>&lt;P&gt;Calling all SQL and SAS Pass-Through Facility Experts !!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hello, I am having trouble with Proc SQL pass through facility when creating a concatenated variable. The SQL was acquired from a seasoned SQL programmer and uses CTE (With) and Cross Apply statements and I placed it into a PROC SQL with EXECUTE statements.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My variable,typenames, defaults to 1024 character length even when using the LEFT() function that typically our server recognizes when running the query in SQL (I changed the snippet below to this and it still saved the field as 1024 length: LEFT(&lt;SPAN&gt;REPLACE(LEFT(type, LEN(type) - &lt;/SPAN&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;SPAN&gt;), '; unknown', ''),45) AS typenames&lt;/SPAN&gt;. I am getting the right results from the code below in terms of content but the field length format ends up being 1024 which is the default cutoff for long strings when it really should only be 45 which is the max length of the field (makes for a lot of blank spaces).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The total code is too long but here is a pared down snippet I am referencing. &amp;nbsp;Basically I want all rows with a valid type, excluding unknowns unless unknown is the only response; however, the actual coding to get this is not in question (I'm sorry I can't provide more explanation but since it is acquired code I am not sure what the data looks like in the various SQL database tables or how to decipher the cross apply) . My problem is why my variable typenames gets saved as a 1024 character field. If someone has come across this and knows a fix I can add to the proc sql that would be ideal. Otherwise I just have to add&amp;nbsp;a datastep to change formats of all the concatenated fields&amp;nbsp;coded like this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;snippet section of SQL code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;WITH&amp;nbsp;&amp;nbsp;&amp;nbsp; type&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AS ( SELECT DISTINCT&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; a.ID ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Name&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #temp1 a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; INNER JOIN schema.file1 pm ON d.ID = pm.id&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SELECT&amp;nbsp; DISTINCT&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ID ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; REPLACE(LEFT(type, LEN(type) - &lt;STRONG&gt;1&lt;/STRONG&gt;), '; unknown', '') AS typenames&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; INTO&amp;nbsp;&amp;nbsp;&amp;nbsp; #Concatenation&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM&amp;nbsp;&amp;nbsp;&amp;nbsp; type pth&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CROSS APPLY ( SELECT&amp;nbsp;&amp;nbsp;&amp;nbsp; Name + '; '&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; type pth2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;WHERE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pth.ID = pth2.ID&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FOR&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; XML PATH('')&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ) AS x ( type )&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jan 2017 15:56:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-pass-through-facility-concatenation-of-variable/m-p/324608#M9470</guid>
      <dc:creator>CP2</dc:creator>
      <dc:date>2017-01-13T15:56:09Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql pass through facility concatenation of variable</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-pass-through-facility-concatenation-of-variable/m-p/324614#M9471</link>
      <description>So you are actually asking for target DBMS SQL syntax? Then you are better off asking specific forum for your database.&lt;BR /&gt;As a SAS forum we could help on the part when the data is comming into SAS.</description>
      <pubDate>Fri, 13 Jan 2017 16:08:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-pass-through-facility-concatenation-of-variable/m-p/324614#M9471</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2017-01-13T16:08:57Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql pass through facility concatenation of variable</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-pass-through-facility-concatenation-of-variable/m-p/324616#M9472</link>
      <description>&lt;P&gt;Assume your logic and code are right, in oreder to overcome the length of 1024&lt;/P&gt;
&lt;P&gt;replace the LEFT function into STRIP function and post result if you are not satified with.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jan 2017 16:11:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-pass-through-facility-concatenation-of-variable/m-p/324616#M9472</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2017-01-13T16:11:00Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql pass through facility concatenation of variable</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-pass-through-facility-concatenation-of-variable/m-p/324632#M9473</link>
      <description>&lt;P&gt;Thank you for the suggestion. The strip function is not recognized by our SQL server so I get an error. Because I'm using pass-through facility &amp;nbsp;I have to use functions recognized by the SQL database.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jan 2017 16:52:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-pass-through-facility-concatenation-of-variable/m-p/324632#M9473</guid>
      <dc:creator>CP2</dc:creator>
      <dc:date>2017-01-13T16:52:45Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql pass through facility concatenation of variable</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-pass-through-facility-concatenation-of-variable/m-p/324639#M9474</link>
      <description>&lt;P&gt;The SQL syntax works in ms sql studio and in the SAS Proc SQL pass-through except for the fact that SAS does not recognize the length of the concatenated field so it gives it the default length of 1024. It appears to be more of a SAS issue than SQL syntax. I was hoping there would be a tip or trick to use in the SQL code so that proc sql will recognize the max length without having to perform a separate datastep to change my concatenated variables. I already got tips from SQL developers for various ways to pull the first 45 characters but no luck. I think SAS proc SQL doesn't know how to handle the cross apply concatenation...in terms of how to deal with length because the logic of it is working (that is, I am getting the right content in the field)&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jan 2017 17:14:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-pass-through-facility-concatenation-of-variable/m-p/324639#M9474</guid>
      <dc:creator>CP2</dc:creator>
      <dc:date>2017-01-13T17:14:39Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql pass through facility concatenation of variable</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-pass-through-facility-concatenation-of-variable/m-p/324779#M9475</link>
      <description>&lt;P&gt;SAS makes certain assumptions about the data it is reading from SQL Server. These are documented here:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/acreldb/69580/HTML/default/viewer.htm#n0h4i25zq3t58en1lgr8jjx1rads.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/acreldb/69580/HTML/default/viewer.htm#n0h4i25zq3t58en1lgr8jjx1rads.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are a couple of ways you can handle character columns that are much longer than required.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;First is to simply let the SAS default length happen, then apply COMPRESS = YES or COMPRESS = BINARY to the SAS table. This will ensure that the impact of the onger character columns is minimal in terms of disk storage. I like this approach because it is simple and easy to apply.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Second is to explicitly set the length of the column as it is being created:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
   connect to SQLSVR as mydb
      (datasrc="SQL Server" user=myusr1 password=mypwd1);
   create table Customers as
   select  customer length = 8
          ,name     length = 30
          ,country  length = 20
    from connection to mydb
      (select CUSTOMER, NAME, COUNTRY
          from CUSTOMERS
          where COUNTRY &amp;lt;&amp;gt; 'USA');
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The disadvantage of this approach is having to explicitly list all of the columns and their lengths. It does avoid the need to compress your output SAS table though.&lt;/P&gt;</description>
      <pubDate>Sat, 14 Jan 2017 02:30:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-pass-through-facility-concatenation-of-variable/m-p/324779#M9475</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2017-01-14T02:30:10Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql pass through facility concatenation of variable</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-pass-through-facility-concatenation-of-variable/m-p/325359#M9476</link>
      <description>Thank you for your suggestions. Neither of these options worked to reduce the length of the field. The compression did reduce the overall file size by 94%! I will add a datastep to reduce the length and not bother to do it within the proc sql.</description>
      <pubDate>Tue, 17 Jan 2017 17:21:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-pass-through-facility-concatenation-of-variable/m-p/325359#M9476</guid>
      <dc:creator>CP2</dc:creator>
      <dc:date>2017-01-17T17:21:21Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql pass through facility concatenation of variable</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-pass-through-facility-concatenation-of-variable/m-p/325482#M9479</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/59791"&gt;@CP2&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;In my understanding SAS will determine the length and type of variables based on what's coming from the source database.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do you know the type and length your database assigns when creating &lt;EM&gt;typenames&lt;/EM&gt;?&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;REPLACE(LEFT(type, LEN(type) - &lt;/SPAN&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;SPAN&gt;), '; unknown', '') AS typenames&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Eventually amend your pass-through code and explicitely control what you get for typenames.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;From the docu:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;If &lt;SPAN class="parameter"&gt;string_expression&lt;/SPAN&gt; is not of type &lt;SPAN class="input"&gt;varchar(max)&lt;/SPAN&gt; or &lt;SPAN class="input"&gt;nvarchar(max),&lt;/SPAN&gt; &lt;STRONG&gt;REPLACE&lt;/STRONG&gt; truncates the return value at 8,000 bytes. To return values greater than 8,000 bytes, &lt;SPAN class="parameter"&gt;string_expression&lt;/SPAN&gt; must be explicitly cast to a large-value data type.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://technet.microsoft.com/en-us/library/ms186862(v=sql.110).aspx" target="_blank"&gt;https://technet.microsoft.com/en-us/library/ms186862(v=sql.110).aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jan 2017 21:32:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-pass-through-facility-concatenation-of-variable/m-p/325482#M9479</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2017-01-17T21:32:34Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql pass through facility concatenation of variable</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-pass-through-facility-concatenation-of-variable/m-p/697651#M19640</link>
      <description>&lt;P&gt;Not sure if this helps but..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;to get the length of all of the columns I use the datasaets procedure and load the metadata, ie length of columns into a macro array.&amp;nbsp; Then I use the macro array to build the SQL.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Nov 2020 16:25:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-pass-through-facility-concatenation-of-variable/m-p/697651#M19640</guid>
      <dc:creator>Randy2</dc:creator>
      <dc:date>2020-11-09T16:25:07Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql pass through facility concatenation of variable</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-pass-through-facility-concatenation-of-variable/m-p/697655#M19641</link>
      <description>Should have also said I think some of the databases support the substr function. Might be called something different like substring. Maybe this will help.</description>
      <pubDate>Mon, 09 Nov 2020 16:28:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-pass-through-facility-concatenation-of-variable/m-p/697655#M19641</guid>
      <dc:creator>Randy2</dc:creator>
      <dc:date>2020-11-09T16:28:18Z</dc:date>
    </item>
  </channel>
</rss>

