首页 > 其他分享 >GaussDB命令行显示设置

GaussDB命令行显示设置

时间:2024-03-11 10:14:13浏览次数:27  
标签:current set 命令行 +% GaussDB PROMPT1 设置 postgres

 

GaussDB命令行显示设置

 

vi ~/gauss_env_file
    export PSQLRC=/home/omm/.gsqlrc
vi /home/omm/.gsqlrc
    \set PROMPT1 '%`date +%H:%M:%S` %n@%/ > '
    \timing on

效果如下:

[omm@gaussdb ~]$ gsql -Uroot -W xxxxxxxxxx -d postgres -p 8000 -ar
\set PROMPT1 '%`date +%H:%M:%S` %n@%/ > '
\timing on
Timing is on.
gsql ((GaussDB Kernel 503.1.0.SPC2000 build 15786b02) compiled at 2023-12-12 22:07:15 commit 5868 last mr 14483 release)
Non-SSL connection (SSL connection is recommended when requiring high-security)
Type "help" for help.

09:56:53 root@postgres > select current_database();
 current_database 
------------------
 postgres
(1 row)

Time: 1.938 ms
09:57:00 root@postgres > select current_user;
 current_user 
--------------
 root
(1 row)

Time: 1.622 ms
09:57:02 root@postgres > 

 

其他设置:

\set PROMPT1 '%`date +%H:%M:%S` (%n@%M:%>)%/%R%#%x '
\set PROMPT1 '%[%033[1;33;40m%]%`date +%H:%M:%S` %n@%/ > '

 

参考链接:

https://www.27ka.cn/299252.html
https://www.modb.pro/db/569888
https://support.huawei.com/enterprise/zh/doc/EDOC1100296314?section=k005

 

标签:current,set,命令行,+%,GaussDB,PROMPT1,设置,postgres
From: https://www.cnblogs.com/PiscesCanon/p/18065427

相关文章

  • GaussDB(DWS)集群通信:详解pooler连接池
    本文分享自华为云社区《GaussDB(DWS)集群通信系列一:pooler连接池》,作者:半岛里有个小铁盒。1.前言适用版本:【8.1.0(及以上)】GaussDB(DWS)为MPP型分布式数据库,使用ShareNothing架构,数据分散存储在各个DN节点,而CN不存储数据,作为接收查询的入口,生成的计划会尽量下推到DN并行执......
  • linux Shell 命令行-03-array Shell 数组
    拓展阅读linuxShell命令行-00-intro入门介绍linuxShell命令行-02-var变量linuxShell命令行-03-array数组linuxShell命令行-04-operator操作符linuxShell命令行-05-test验证是否符合条件linuxShell命令行-06-flowcontrol流程控制linuxShell命令行-07-f......
  • 2.4 设置系统光盘开机自动挂载
    1.开机会找到fastab配置文件,会自动挂载里的配置 挂载和取消挂载提示取消挂载错误:解决......
  • 2.2 关闭防火墙并设置开机不启动
    查看防火墙状态:systemctlstatusfirewalld.service关闭防火墙:systemctlstop firewalld.service开启防火墙:systemctlstartfirewalld.service关闭开机防火墙自启动:systemctldisablefirewalld 开启开机防火墙自启动(enabled状态):systemctlenablefirewalld 查看......
  • python实现批量运行命令行
    python实现批量运行命令行背景:对于不同参数设置来调用同一个接口,如果手动一条条修改再运行非常慢且容易出错。尤其是这次参数非常多且长。比如之前都是输入nohuppython-uexe.py>>../log/exp3.log2>&1&来运行一次,在exe中会设置参数并调用接口运行preditction_uni(input_f......
  • linux Shell 命令行-01-intro 入门介绍
    拓展阅读linuxShell命令行-00-intro入门介绍linuxShell命令行-02-var变量linuxShell命令行-03-array数组linuxShell命令行-04-operator操作符linuxShell命令行-05-test验证是否符合条件linuxShell命令行-06-flowcontrol流程控制linuxShell命令行-07-f......
  • 启用和配置EWF(Enhanced Write Filter)通过命令行或者注册表等方式启用和配置EWF功能
     启用和配置EWF(EnhancedWriteFilter)功能,可以通过以下方式进行设置:命令行方式:打开命令提示符(以管理员身份运行)。使用以下命令启用EWF功能:ewfmgrc:-enable 这里的c:表示要启用EWF功能的逻辑磁盘,可以根据实际情况更改。若要禁用EWF功能,可以使用以下命令:ewfmgrc:-dis......
  • 阿里云 同账号、同地域 ECS服务器,VPC对等连接具体设置操作(路由设置)
    阿里云ECS间内网通讯,在速度上有巨大优势。虽然阿里云文档资料比较全面,但是新手、尤其是是对网络不太熟悉的人设置起来还是有点难度的。又的朋友可能会出现:AECS服务器VPC网段设置为:172.17.0.0/16,BECS服务器VPC网段设置为:172.17.30.0/24这种情况时,按照阿里云资料咋操作也是不会成......
  • ggplot2中绘图设置x轴、y轴名称距离框线的距离
     001、基础绘图library(ggplot2)#导入ggplot包ggplot(data=mtcars,aes(x=wt,y=mpg,colour=factor(cyl)))+geom_point()+theme_bw()##基础绘图 002、设置x轴名称与框线的距离a、设置为5libra......
  • R语言中ggplot绘图绘制L型图形,并设置框线的粗细
     001、基础绘图library(ggplot2)##加载包ggplot(data=mtcars,aes(x=wt,y=mpg,colour=factor(cyl)))+geom_point()##绘制散点图 002、增加四边框线library(ggplot2)#导入ggplot包ggplot(d......