<?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 Error WORK.tableName.DATA does not exist when trying to load data to Netezza in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Error-WORK-tableName-DATA-does-not-exist-when-trying-to-load/m-p/508864#M136700</link>
    <description>&lt;P&gt;I am trying to load a SAS table into Netezza through the odbc libname. Here is how I do this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;libname sdf odbc noprompt="server=xxxx; DRIVER=xxxxx; port=5480; database=xxxx; username=xxxxx; password=xxxxxx;";
proc sql;
create table netair.practice
(bulkload = YES)
AS SELECT * FROM SASTable WHERE ADDRESS LIKE '2%';
disconnect from odbc;
quit;&lt;/PRE&gt;&lt;P&gt;When I run this I get the error: Error: File WORK.SASTable.DATA does not exist.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do I solve this issue? I am using SAS Enterprise Guide version 7.12&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
    <pubDate>Tue, 30 Oct 2018 18:49:15 GMT</pubDate>
    <dc:creator>jim_toby</dc:creator>
    <dc:date>2018-10-30T18:49:15Z</dc:date>
    <item>
      <title>Error WORK.tableName.DATA does not exist when trying to load data to Netezza</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-WORK-tableName-DATA-does-not-exist-when-trying-to-load/m-p/508864#M136700</link>
      <description>&lt;P&gt;I am trying to load a SAS table into Netezza through the odbc libname. Here is how I do this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;libname sdf odbc noprompt="server=xxxx; DRIVER=xxxxx; port=5480; database=xxxx; username=xxxxx; password=xxxxxx;";
proc sql;
create table netair.practice
(bulkload = YES)
AS SELECT * FROM SASTable WHERE ADDRESS LIKE '2%';
disconnect from odbc;
quit;&lt;/PRE&gt;&lt;P&gt;When I run this I get the error: Error: File WORK.SASTable.DATA does not exist.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do I solve this issue? I am using SAS Enterprise Guide version 7.12&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 30 Oct 2018 18:49:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-WORK-tableName-DATA-does-not-exist-when-trying-to-load/m-p/508864#M136700</guid>
      <dc:creator>jim_toby</dc:creator>
      <dc:date>2018-10-30T18:49:15Z</dc:date>
    </item>
    <item>
      <title>Re: Error WORK.tableName.DATA does not exist when trying to load data to Netezza</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-WORK-tableName-DATA-does-not-exist-when-trying-to-load/m-p/508867#M136703</link>
      <description>&lt;P&gt;You treat it as a SAS data set, not pass through anymore.&lt;/P&gt;
&lt;P&gt;See if the following works, if not, post your full log. This assumes you have write access to the server and the libname statement works correctly to connect you to your DB.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname sdf odbc noprompt="server=xxxx; DRIVER=xxxxx; port=5480; database=xxxx; username=xxxxx; password=xxxxxx;";


proc sql;
create table sdf.practice AS
SELECT * FROM sashelp.class;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/243552"&gt;@jim_toby&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I am trying to load a SAS table into Netezza through the odbc libname. Here is how I do this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;libname sdf odbc noprompt="server=xxxx; DRIVER=xxxxx; port=5480; database=xxxx; username=xxxxx; password=xxxxxx;";
proc sql;
create table netair.practice
(bulkload = YES)
AS SELECT * FROM SASTable WHERE ADDRESS LIKE '2%';
disconnect from odbc;
quit;&lt;/PRE&gt;
&lt;P&gt;When I run this I get the error: Error: File WORK.SASTable.DATA does not exist.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How do I solve this issue? I am using SAS Enterprise Guide version 7.12&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Oct 2018 18:30:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-WORK-tableName-DATA-does-not-exist-when-trying-to-load/m-p/508867#M136703</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-10-30T18:30:02Z</dc:date>
    </item>
  </channel>
</rss>

