<?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 Importing large TSV files into SAS in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Importing-large-TSV-files-into-SAS/m-p/584956#M14250</link>
    <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am having trouble importing a very large TSV file into sas (&amp;gt;1million KB). Does anyone know how to import a file of this size?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 29 Aug 2019 15:16:59 GMT</pubDate>
    <dc:creator>marleeakerson</dc:creator>
    <dc:date>2019-08-29T15:16:59Z</dc:date>
    <item>
      <title>Importing large TSV files into SAS</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Importing-large-TSV-files-into-SAS/m-p/584956#M14250</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am having trouble importing a very large TSV file into sas (&amp;gt;1million KB). Does anyone know how to import a file of this size?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Aug 2019 15:16:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Importing-large-TSV-files-into-SAS/m-p/584956#M14250</guid>
      <dc:creator>marleeakerson</dc:creator>
      <dc:date>2019-08-29T15:16:59Z</dc:date>
    </item>
    <item>
      <title>Re: Importing large TSV files into SAS</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Importing-large-TSV-files-into-SAS/m-p/584958#M14251</link>
      <description>&lt;P&gt;Importing tab-delimited files with a data step is rather simple. What is your problem?&lt;/P&gt;
&lt;P&gt;In case of ERRORs, please post the log, using the {i} button.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Aug 2019 15:24:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Importing-large-TSV-files-into-SAS/m-p/584958#M14251</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-08-29T15:24:58Z</dc:date>
    </item>
    <item>
      <title>Re: Importing large TSV files into SAS</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Importing-large-TSV-files-into-SAS/m-p/584968#M14252</link>
      <description>&lt;P&gt;I dont know if the file is too big or what, but for some reason when i upload the dataset into sas a lot of the columns are concatenated and condensed. here is my code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc import datafile="X:\Temp\ABC\ARCOS\arcos-oh-statewide-itemized.tsv" out=work.Oh dbms=tsv replace;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Aug 2019 15:37:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Importing-large-TSV-files-into-SAS/m-p/584968#M14252</guid>
      <dc:creator>marleeakerson</dc:creator>
      <dc:date>2019-08-29T15:37:34Z</dc:date>
    </item>
    <item>
      <title>Re: Importing large TSV files into SAS</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Importing-large-TSV-files-into-SAS/m-p/584979#M14253</link>
      <description>&lt;P&gt;Try DBMS=TAB instead of DBMS=TSV.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;also you might want to add the statement:&lt;/P&gt;
&lt;P&gt;Guessingrows=32000;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So more rows of data are examined before the variable types, lengths and informats are set by the procedure.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Aug 2019 16:12:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Importing-large-TSV-files-into-SAS/m-p/584979#M14253</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-08-29T16:12:26Z</dc:date>
    </item>
    <item>
      <title>Re: Importing large TSV files into SAS</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Importing-large-TSV-files-into-SAS/m-p/584991#M14254</link>
      <description>You can import text files uisng proc import or a data step. In a data step you have to specify the formats and types while PROC IMPORT does that but it has to guess. PROC IMPORT is slow because it has to guess the data. Instead, take the code from the log after PROC IMPORT, adjust it as necessary and run the data step instead. That's much faster at importing data because it's no longer guessing.</description>
      <pubDate>Thu, 29 Aug 2019 16:55:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Importing-large-TSV-files-into-SAS/m-p/584991#M14254</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-08-29T16:55:33Z</dc:date>
    </item>
    <item>
      <title>Re: Importing large TSV files into SAS</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Importing-large-TSV-files-into-SAS/m-p/584992#M14255</link>
      <description>&lt;P&gt;Don't use import. Write a data step according to the documentation you got with the file. You can use the code created by proc import as a starting point.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Aug 2019 16:57:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Importing-large-TSV-files-into-SAS/m-p/584992#M14255</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-08-29T16:57:14Z</dc:date>
    </item>
    <item>
      <title>Re: Importing large TSV files into SAS</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Importing-large-TSV-files-into-SAS/m-p/585026#M14256</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/281255"&gt;@marleeakerson&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;a lot of the columns are concatenated and condensed.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Make sure the columns are effectively separated by tabs.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Aug 2019 18:23:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Importing-large-TSV-files-into-SAS/m-p/585026#M14256</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2019-08-29T18:23:02Z</dc:date>
    </item>
  </channel>
</rss>

