VSQL常用命令

举报
数据社 发表于 2022/09/25 01:16:50 2022/09/25
【摘要】 Linux环境下,一般都是使用vsql客户端连接vertica来执行命令的,下面就介绍一下vsql常用的命令有哪些。 导出数据 /opt/vertica/bin/vsql -U $usr -p 543...

Linux环境下,一般都是使用vsql客户端连接vertica来执行命令的,下面就介绍一下vsql常用的命令有哪些。

导出数据

/opt/vertica/bin/vsql -U $usr -p 5433 -h 172.1.1.1 -w $pwd -At -o /home/qincf/20160809.dat -c "select * from tb_test;"

  
 
  • 1

默认是以‘|’分割的,指定分隔符如下:

/opt/vertica/bin/vsql -U $usr -p 5433 -h 172.1.1.1 -w $pwd -F $'\t'  -At -o /home/qincf/20160809.dat -c "select * from tb_test;"

  
 
  • 1

切换路径 :\cd

dbadmin=> \!pwd
/home/qincf
dbadmin=> \cd /tmp
dbadmin=> \!pwd
/tmp

  
 
  • 1
  • 2
  • 3
  • 4
  • 5

列出多有表:\d
列出多有函数:\df
列出所有projection:\dj
列出所有的schema:\dn
列出所有的序列:\ds
列出所有的系统字典表:\dS
列出所有支持的类型:\dT
列出所有的视图:\dv
编辑sql:\e

此时会进入编辑模式,输入需要执行的sql脚本,然后保存,就可以执行了(可以同时执行多个sql语句)

  
 
  • 1

执行缓存的sql:\g
输出HTML格式的结果:\H

dbadmin=> \H
Output format is html.
dbadmin=> select * from nodes limit 1;
<table border="1">
  <tr>
    <th align="center">node_name</th>
    <th align="center">node_id</th>
    <th align="center">node_state</th>
    <th align="center">node_address</th>
    <th align="center">node_address_family</th>
    <th align="center">export_address</th>
    <th align="center">export_address_family</th>
    <th align="center">catalog_path</th>
    <th align="center">node_type</th>
    <th align="center">is_ephemeral</th>
    <th align="center">standing_in_for</th>
    <th align="center">node_down_since</th>
  </tr>
  <tr valign="top">
    <td align="left">v_qcf_node0001</td>
    <td align="right">45035996273704980</td>
    <td align="left">UP</td>
    <td align="left">172.1.1.1</td>
    <td align="left">ipv4</td>
    <td align="left">172.1.1.1</td>
    <td align="left">ipv4</td>
    <td align="left">/data/qincf/v_qincf_node0001_catalog/Catalog</td>
    <td align="left">PERMANENT</td>
    <td align="left">f</td>
    <td align="left">&nbsp; </td>
    <td align="left">&nbsp; </td>
  </tr>
</table>
<p>(1 row)<br />
</p>

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35

查看当前缓存buffer里的内容:\p

dbadmin=> \p
select * from nodes limit 1;

  
 
  • 1
  • 2

修改密码:\password [ USER ]

dbadmin=> \password test
Changing password for "test"
New password: 

  
 
  • 1
  • 2
  • 3

情况当前buffer:\r

dbadmin=> \r
Query buffer reset (cleared).
dbadmin=> \p
Query buffer is empty.

  
 
  • 1
  • 2
  • 3
  • 4

历史命令查看保存为file:\s [ FILE ]

\s history.log

  
 
  • 1

查看所有表的权限:\dp 或者\z

copy:

 vsql -U username -w passwd -d vmart -c "COPY store.store_sales_fact FROM STDIN DELIMITER '|';"

  
 
  • 1

直接copyHDFS的文件到vertica

COPY testTable SOURCE Hdfs(url='http://hadoop:50070/webhdfs/v1/tmp/test.txt',
   username='hadoopUser');

  
 
  • 1
  • 2

文章来源: dataclub.blog.csdn.net,作者:数据社,版权归原作者所有,如需转载,请联系作者。

原文链接:dataclub.blog.csdn.net/article/details/52163444

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。