• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

PostgreSQL的 - 从bash脚本数据库用户查询“Postgres的

用户头像
it1352
帮助1

问题说明

我有一个表,其中有3列我的PostgreSQL数据库 - c_uid c_defaults c_settings c_uid 简单地存储用户的名称, c_defaults 是一个漫长的一段文字,其中包含了大量的数据WRT的那用户。

I have a table in my PostgreSQL database which has 3 columns - c_uid, c_defaults and c_settings. c_uid simply stores the name of a user and c_defaults is a long piece of text which contains a lot of data w.r.t that user.

我不得不从一个bash脚本,它选择根据 c_uid c_defaults 列的值执行语句>价值,这需要由数据库用户的Postgres的。

I have to execute a statement from a bash script which selects the value of the c_defaults column based on the c_uid value and this needs to be done by the database user 'postgres'.

在命令行,我可以做到以下几点:

On the CLI I can do the following:

[mymachine]# su postgres
bash-4.1$psql
postgres=#\c database_name
You are now connected to database "database_name" as user "postgres".
database_name=#SELECT c_defaults  FROM user_info WHERE c_uid = 'testuser';

不过,我怎么通过一个bash脚本实现这一目标?

However, how do I achieve this through a bash script?

其目的是获得该列的信息,编辑,并把它写回该列 - 全部通过一个bash脚本

The aim is to get the information from that column, edit it and write it back into that column - all through a bash script.

正确答案

#1

试试这个:

#!/bin/bash
su postgres
psql -d database_name -c "SELECT c_defaults  FROM user_info WHERE c_uid = 'testuser'"

或者

#!/bin/bash
psql -U postgres -d database_name -c "SELECT c_defaults  FROM user_info WHERE c_uid = 'testuser'"

另一种方式:

#!/bin/bash
su -c "psql -d database_name -c \"SELECT c_defaults  FROM user_info WHERE c_uid = 'testuser'\"" postgres

和还执行sudo:

#!/bin/bash
sudo -u postgres -H -- psql -d database_name -c "SELECT c_defaults  FROM user_info WHERE c_uid = 'testuser'"

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcfkhci
系列文章
更多 icon
同类精品
更多 icon
继续加载