<?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: Union multiple Data Query in SAS VA in SAS Visual Analytics</title>
    <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Union-multiple-Data-Query-in-SAS-VA/m-p/202911#M1848</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello.&amp;nbsp; I basically have the same question but I want to know how to do a UNION (not a join) using the "Design" tab in the visual data query.&amp;nbsp; I believe that I found a way to do this using the "Code" tab by manually writing the code for a UNION.&amp;nbsp; Unfortunately, once edits are made on the "Code" tab, you lose the "Design" and "Results" tabs.&amp;nbsp; This is some code I used to UNION two tables on the "Code" tab.&amp;nbsp; The results appear to be correct for my situation.&amp;nbsp; NOTE: It appears that VA has an option to append tables for tables that are already in memory.&amp;nbsp; However, I’m not sure how that works if the tables don’t have the same number of columns.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Press the "New" Query button&lt;/LI&gt;&lt;LI&gt;Press the "+" button to add the first table only&lt;/LI&gt;&lt;LI&gt;Choose the appropriate columns from the first table&lt;/LI&gt;&lt;LI&gt;Make any necessary adjustments to the "Type" and "Format" columns.&amp;nbsp; From my trials and many errors, it appears that the "Type"s and "Format"s should be adjusted so they will also work with the tables that you will UNION&lt;/LI&gt;&lt;LI&gt;Make any necessary changes to the output table name, location, or library&lt;/LI&gt;&lt;LI&gt;Save the data query&lt;/LI&gt;&lt;LI&gt;Run the data query&lt;/LI&gt;&lt;LI&gt;Click on the "Code" tab&lt;/LI&gt;&lt;LI&gt;Press the lock icon to unlock the code for editing.&amp;nbsp; After unlocking the code, you will no longer be able to use or see the "Design" or "Results" tabs!&lt;/LI&gt;&lt;LI&gt;You should see a PROC SQL statement followed by CREATE VIEW, SELECT, and FROM statements.&amp;nbsp; The SELECT and FROM statements reflect the table added using the "Design" tab.&amp;nbsp; After this step, this is what I saw:&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; proc sql noprint;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; create view TEMP_LASR_VIEW_476 as&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SELECT&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TABLE1.COL1 length=8 format=BEST12. AS COL1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TABLE1.COL2 length=8 format=BEST12. AS COL2,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TABLE1.COL3 length=10 format=$10. AS COL3,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TABLE1.COL4 length=26 format=$26. AS COL4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LASRLIB.TABLE1 TABLE1;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To begin the UNION, you must delete the semicolon at the end of the table alias (TABLE1) in the line of code above as you will be continuing the statement.&amp;nbsp; I changed “create view” to “create table”.&amp;nbsp; For my particular situation, I created a UNION by using the UNION ALL command.&amp;nbsp; The new code with both tables is as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; proc sql noprint;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; create table TEMP_LASR_VIEW_476 as&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SELECT&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TABLE1.COL1 length=8 format=BEST12. AS COL1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TABLE1.COL2 length=8 format=BEST12. AS COL2,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TABLE1.COL3 length=10 format=$10. AS COL3,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TABLE1.COL4 length=26 format=$26. AS COL4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LASRLIB.TABLE1 TABLE1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; UNION ALL&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SELECT&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TABLE2.COL1 length=8 format=BEST12.,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TABLE2.COL2 length=8 format=BEST12.,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TABLE2.COL3 length=10 format=$10.,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TABLE2.COL4 length=26 format=$26.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LASRLIB.TABLE2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Notice that the semicolon is now behind TABLE2 to indicate the new end of the CREATE VIEW statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am very new to VA and I hope that there is an easier way to do this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Jun 2015 15:10:26 GMT</pubDate>
    <dc:creator>Coop</dc:creator>
    <dc:date>2015-06-11T15:10:26Z</dc:date>
    <item>
      <title>Union multiple Data Query in SAS VA</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Union-multiple-Data-Query-in-SAS-VA/m-p/202910#M1847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm just new in SAS VA development. Anyone knows how to union multiple data query in SAS VA? Appreciated your quick response.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2015 03:12:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Union-multiple-Data-Query-in-SAS-VA/m-p/202910#M1847</guid>
      <dc:creator>Carrot17</dc:creator>
      <dc:date>2015-06-11T03:12:31Z</dc:date>
    </item>
    <item>
      <title>Re: Union multiple Data Query in SAS VA</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Union-multiple-Data-Query-in-SAS-VA/m-p/202911#M1848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello.&amp;nbsp; I basically have the same question but I want to know how to do a UNION (not a join) using the "Design" tab in the visual data query.&amp;nbsp; I believe that I found a way to do this using the "Code" tab by manually writing the code for a UNION.&amp;nbsp; Unfortunately, once edits are made on the "Code" tab, you lose the "Design" and "Results" tabs.&amp;nbsp; This is some code I used to UNION two tables on the "Code" tab.&amp;nbsp; The results appear to be correct for my situation.&amp;nbsp; NOTE: It appears that VA has an option to append tables for tables that are already in memory.&amp;nbsp; However, I’m not sure how that works if the tables don’t have the same number of columns.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Press the "New" Query button&lt;/LI&gt;&lt;LI&gt;Press the "+" button to add the first table only&lt;/LI&gt;&lt;LI&gt;Choose the appropriate columns from the first table&lt;/LI&gt;&lt;LI&gt;Make any necessary adjustments to the "Type" and "Format" columns.&amp;nbsp; From my trials and many errors, it appears that the "Type"s and "Format"s should be adjusted so they will also work with the tables that you will UNION&lt;/LI&gt;&lt;LI&gt;Make any necessary changes to the output table name, location, or library&lt;/LI&gt;&lt;LI&gt;Save the data query&lt;/LI&gt;&lt;LI&gt;Run the data query&lt;/LI&gt;&lt;LI&gt;Click on the "Code" tab&lt;/LI&gt;&lt;LI&gt;Press the lock icon to unlock the code for editing.&amp;nbsp; After unlocking the code, you will no longer be able to use or see the "Design" or "Results" tabs!&lt;/LI&gt;&lt;LI&gt;You should see a PROC SQL statement followed by CREATE VIEW, SELECT, and FROM statements.&amp;nbsp; The SELECT and FROM statements reflect the table added using the "Design" tab.&amp;nbsp; After this step, this is what I saw:&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; proc sql noprint;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; create view TEMP_LASR_VIEW_476 as&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SELECT&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TABLE1.COL1 length=8 format=BEST12. AS COL1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TABLE1.COL2 length=8 format=BEST12. AS COL2,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TABLE1.COL3 length=10 format=$10. AS COL3,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TABLE1.COL4 length=26 format=$26. AS COL4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LASRLIB.TABLE1 TABLE1;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To begin the UNION, you must delete the semicolon at the end of the table alias (TABLE1) in the line of code above as you will be continuing the statement.&amp;nbsp; I changed “create view” to “create table”.&amp;nbsp; For my particular situation, I created a UNION by using the UNION ALL command.&amp;nbsp; The new code with both tables is as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; proc sql noprint;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; create table TEMP_LASR_VIEW_476 as&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SELECT&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TABLE1.COL1 length=8 format=BEST12. AS COL1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TABLE1.COL2 length=8 format=BEST12. AS COL2,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TABLE1.COL3 length=10 format=$10. AS COL3,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TABLE1.COL4 length=26 format=$26. AS COL4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LASRLIB.TABLE1 TABLE1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; UNION ALL&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SELECT&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TABLE2.COL1 length=8 format=BEST12.,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TABLE2.COL2 length=8 format=BEST12.,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TABLE2.COL3 length=10 format=$10.,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TABLE2.COL4 length=26 format=$26.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LASRLIB.TABLE2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Notice that the semicolon is now behind TABLE2 to indicate the new end of the CREATE VIEW statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am very new to VA and I hope that there is an easier way to do this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2015 15:10:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Union-multiple-Data-Query-in-SAS-VA/m-p/202911#M1848</guid>
      <dc:creator>Coop</dc:creator>
      <dc:date>2015-06-11T15:10:26Z</dc:date>
    </item>
    <item>
      <title>Re: Union multiple Data Query in SAS VA</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Union-multiple-Data-Query-in-SAS-VA/m-p/202912#M1849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Carrot17,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As Coop mentioned, I think that appending in-memory tables could be the solution that you're looking for.&amp;nbsp; Here is some additional information about it as well as instructions on how to perform this task from the data builder:&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/vaug/68027/HTML/default/viewer.htm#p0fxm7dtsds8kjn1ib2o6ayxsvi1.htm" title="http://support.sas.com/documentation/cdl/en/vaug/68027/HTML/default/viewer.htm#p0fxm7dtsds8kjn1ib2o6ayxsvi1.htm"&gt;SAS(R) Visual Analytics 7.2: User's Guide&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Coop, in terms of your question about appending in-memory tables, this might be the answer that you’re looking for:&lt;/P&gt;&lt;P style="margin-top: auto; margin-bottom: 3pt;"&gt;&lt;SPAN lang="EN" style="color: black; mso-ascii-font-family: Calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: Calibri; mso-bidi-font-family: Arial; mso-ansi-language: EN;"&gt;“If a source table has columns that are not present in the base table, then the columns are dropped and are not appended to the base table. The base table always maintains the same number of columns.”&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Lorrie&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2015 21:17:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Union-multiple-Data-Query-in-SAS-VA/m-p/202912#M1849</guid>
      <dc:creator>Lorrie_SAS</dc:creator>
      <dc:date>2015-06-11T21:17:22Z</dc:date>
    </item>
  </channel>
</rss>

