🔒 This topic is solved and locked.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 10-23-2018 10:08 PM
(924 views)
I have a table in SAS work.mytable,how to create it into hadoop.this way will not work:
proc sql;
connect to hadoop(
server=xxx
user=sas
password=xxx
schema=xxx
subprotocol=hive2
hdfs_tempdir='/tmp/sastemp/'
properties=xxx
);
select * from connection to hadoop(
create table sas_card_tmp.test01 as
)
select * from work.mytable;
disconnect from hadoop;
quit;
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Create table, PROC APPEND, PROC copy or data step writing to libname connection.
Data never sleeps
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Create table, PROC APPEND, PROC copy or data step writing to libname connection.
Data never sleeps