Advertisement
Guest User

Untitled

a guest
Apr 21st, 2014
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. proc sql;
  2. connect to hadoop (user="myusr1" pw="mypwd1"
  3. server=hxpduped port=10000 schema=default);
  4. create table test as
  5. (select * from connection to hadoop
  6. (select * from dataset limit 100;
  7. ));
  8. disconnect from hadoop;
  9. quit;
  10.  
  11. proc sql;
  12. connect to hadoop (user="myusr1" pw="mypwd1"
  13. server=hxpduped port=10000 schema=default);
  14. create table test as
  15. select * from connection to hadoop
  16. (
  17. select * from dataset limit 100 %str(;)
  18. );
  19. quit;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement