Tagged Questions

psql is the command-line interface to the PostgreSQL DBMS. It enables local, remote, and scripted access to the database.

learn more… | top users | synonyms

54
votes
5answers
26k views

PostgreSQL “DESCRIBE TABLE”

How do you perform the equivalent of Oracle's DESCRIBE TABLE in PostgreSQL (using the psql command)?
11
votes
2answers
21k views

postgreSQL - psql \i : how to execute script in a given path

I'm new to postgreSQL and I have a simple question: I'm trying to create a simple script that creates a DB so I can later call it like this: psql -f createDB.sql I want the script to call other ...
9
votes
4answers
17k views

PostgreSQL return setof record ( virtual table )

i need a postgres function to return a virtual table ( like in oracle ) with custom content. The table would have 3 columns and an unknown amounts of rows.. i just couldn't find the correct syntax on ...
6
votes
3answers
3k views

Postgres: INSERT if does not exist already

I'm using Python to write to a postgres database: sql_string = "INSERT INTO hundred (name,name_slug,status) VALUES (" sql_string += hundred + ", '" + hundred_slug + "', " + status + ");" ...
4
votes
3answers
58 views

SQL - order by statement

I´ve got tables like: table A id name email 1 test1 ex@ex.com 2 test2 ex@ex.com 3 test3 ex@ex.com 4 test4 .... 5 test5 .... table B id catA catB year member 1 false true ...
4
votes
4answers
3k views

Truncating all tables in a postgres database

I regularly need to delete all the data from my postgresql database before a rebuild. How would I do this directly in SQL? At the moment I've managed to come up with a SQL statement that returns all ...
4
votes
3answers
6k views

Postgres: clear entire database before re-creating / re-populating from bash script

I'm writing a shell script (will become a cronjob) that will: 1: dump my production database 2: import the dump into my development database Between step 1 and 2, I need to clear the development ...
3
votes
1answer
58 views

Grails can't connect to a datasource, but psql can?

Grails definition: development { dataSource { driverClassName = "org.postgresql.Driver" dialect = org.hibernate.dialect.PostgreSQLDialect pooled = false jndiName = null ...
3
votes
1answer
169 views

PostgreSQL: Create schema in specific database

I need to write an sql script that creates both a new database AND a new schema in the database I just created. How can I do it? Can I somehow change the current database to the new one? Or can I ...
3
votes
3answers
731 views

How to switch databases in psql?

In MySQL I used use database_name; What's the PostgreSQL equivalent?
3
votes
1answer
226 views

Select max date row from results

Using Pervasive SQL, I have a result set: Tp_No Name State Eff_Date Actual Billed 1006 ABC TN 2006-07-01 .1 .5 1006 ABC TN ...
3
votes
3answers
667 views

disable NOTICES in psql output

How do I stop psql (postgres?) from outputting 'useless' notices? e.g. psql:schema/auth.sql:20: NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "users_pkey" for table "users" yes ...
3
votes
1answer
330 views

Show query result column types (PostgreSQL)

Is there a way to easily get the column types of a query result? I read the psql documentation, but I don't think it supports that. Ideally, I'd be able to get something like: columna : text | ...
3
votes
3answers
293 views

Date split-up based on Fiscal Year

Given a From Date, To Date and a Fiscal Year system, I want to get all the split-up duration within the given From & To Date based on the Fiscal Year system. Explained below with examples: ...
3
votes
4answers
5k views

How Do I Backup My PostgreSQL Database with Cron?

I can run commands like vacuumdb, pg_dump, and psql just fine in a script if I preface them like so: /usr/bin/sudo -u postgres /usr/bin/pg_dump -Fc mydatabase > /opt/postgresql/prevac.gz ...
2
votes
1answer
89 views

PSQL : Silencing a function call's output, or calling it without SELECT

In Postgresql, I have an UPDATE rule on a table which only needs to call a dctUpdate function without doing a whole SQL statement, since the SQL statement is actually done in the function. The only ...
2
votes
2answers
104 views

psql --(record|field)-separator NUL

Is there some way to make psql separate the fields and records by \0, aka NUL? It's the only way to be able to pass arbitrary data to Bash scripts. Based on Matthew Wood's answer, I would expect this ...
2
votes
1answer
52 views

Table Duplicate Values

I have a project where I create reports and I am keeping the old reports for users. I am creating tables using EJB 3.0 and psql on Glassfish Server. Recently I realized that the old reports' tables ...
2
votes
4answers
206 views

Postgresql: Scripting psql execution with password

How can I call psql so that it doesn't prompt for a password? This is what I have: psql -Umyuser < myscript.sql However, I couldn't find the argument that passes the password, and so psql ...
2
votes
1answer
91 views

Get Error Codes while using psql

When i run an sql script using psql.exe i am not getting error codes when an error occurs. Is there any way to get the psql error codes? I tried setting VERBOSITY to 'verbose' like this: \set ...
2
votes
2answers
268 views

How to write a delete rule on a view?

I'm trying to write a rule on a view to delete tuples from the component tables, but so far can only remove data from one of them. I've used postgres with basic views for a while, but I don't have ...
2
votes
2answers
561 views

LISTEN/NOTIFY using pg_notify(text, text) in PostgreSQL

I have been playing with PostgreSQL's notification system and cannot for the life of my figure out why pg_notify(text, text) never works. This feature is not overly documented and I cannot find many ...
2
votes
2answers
258 views

Migrating to PostgreSQL 'xml' datatype

G'day, I have databases (psql 8.3) that currently consist of "xml" blobs as text type within the database. Now, I've gone through each of these blobs, created a schema which the data should adhere ...
2
votes
3answers
127 views

Dumping psql tables with specific prefixes

Im currently using the tool pg_dump to dump tables from my database. I would like to automate this process, however, i have not found a way to specify pg_dump to dump multiple databases that have the ...
2
votes
2answers
491 views

PostgreSQL: how to efficiently alter multiple columns from psql?

I have PostgreSQL table with several boolean columns, currently containing only true or null. I want to do the following for all of them: Add a default value of false Change all null values to false ...
2
votes
1answer
1k views

how to make array_agg() work like group_concat() from mySQL

So I have this table: create table test ( id integer, rank integer, image varchar(30) ); Then some values: id | rank | image ---+------+------- 1 | 2 | bbb 1 | 3 | ...
2
votes
1answer
119 views

Shebang for psql

Hello I'm trying to write Postgresql script(s) but having a problem with shebang line #! /usr/bin/psql [ psql_args_here ] -f select now(); This gives me error as if I just entered psql without any ...
2
votes
2answers
445 views

Are there any escaping syntax for psql variable inside PostgreSQL functions?

I write PSQL script and using variables (for psql --variable key=value commandline syntax). This works perfectly for top level scope like select * from :key, but I create functions with the script ...
2
votes
1answer
592 views

How do I change the effective user of psql?

I'm using psql to run a simple set of COPY statements contained in a file: psql -d mydb -f 'wbf_queries.data.sql' where wbf_queries.data.sql contains lines: copy <my_query> to ...
2
votes
2answers
55 views

Combining two resources PHP

I have two postgres queries that i execute using PHP and both of them result a Resource, is it possible to combine or concatenate these two resources?
2
votes
1answer
212 views

Determining the start and end range of bytes changed in a file

I'm working on a little experimental utility to use within our company that indexes notes stored in our custom CRM software for full-text searching. These notes are stored in a Btrieve database (a ...
1
vote
3answers
193 views

bash shell script to execute pgsql commands in files

I am trying to automate a set of procedures that create TEMPLATE databases. I have a set of files (file1, file2, ... fileN), each of which contains a set of pgsql commands required for creating a ...
1
vote
0answers
24 views

No output for a Postgres query executed in Visual Studio 2005

I am running a Postgres query that is returning no output when run in Visual Studio. In PGAdmin, the correct output is returned Other, simpler queries run fine, but this one does not. The structure of ...
1
vote
1answer
151 views

Eclipse plugin for psql/PostgreSQL code?

Do you have recommendations for a good PostgreSQL editor plugin for Eclipse? The PostgreSQL code I have isn't very complex. However I'd like to edit it with syntax-coloring, decent auto-identation, ...
1
vote
2answers
81 views

Inserting values (generate_series) - how can I reuse/cycle the numbers, e.g, 1,2,3,1,2,3

I am using generate_series to insert values in a table. And generate_series insert values as specified in its range. For example: for the following query, SELECT i AS id, i AS age, i AS ...
1
vote
1answer
51 views

How to include files relative to the current executing script in psql?

I have a PostgreSQL script (say, MAIN.sql in ~/sql/) which has lines like \i components/helper-functions.sql This include works fine if the $PWD is the same as the directory of my script ...
1
vote
1answer
822 views

Postgres is failing with 'could not open relation mapping file “global/pg_filenode.map” '

I'm having an issue with my install of postgres in my development environment and I need some help diagnosing it. I haven't yet had any luck in tracking down a solution. I have postgres 9.0.4 ...
1
vote
1answer
107 views

multiple command execution

I have created a installer with innosetup and i wanna use it to create a postgresql database using psql.exe . I call the psql.exe with this line of code : Filename: "{app}\PostgreSQL\bin\psql.exe"; ...
1
vote
1answer
70 views

Alter table to change column data type psql

Alter table to change column data type psql. I run ALTER TABLE tbl_name ALTER COLUMN col_name varchar (11); I am using psql. what I am wrong?
1
vote
5answers
87 views

Shell Script and SQL results

I currently want to extract a value from a SQL command responde somehting like this: psql db -c "SELECT COUNT(test) FROM tbTest;" the result is: count ------ 33176 (1 row) I want to extract ...
1
vote
1answer
52 views

Does PostGIS not work with psql?

I have a sql script that creates several tables, a trigger, and a trigger function. All the commands work in pgAdmin when I execute them in the "Query" section. My goal is to put all these commands ...
1
vote
1answer
115 views

Why does PostgreSQL's \dt show only public schema tables?

I have created a new schema in my PostgreSQl database with psql: CREATE SCHEMA my_schema; But when I issue the \dt command, I see only the tables that are in the public schema. However, I can ...
1
vote
1answer
94 views

How to get the number of days in a month in postgresql

I am trying to get the following in plpgsql: select day_in_month(2); Expected output 28 Is there any built in that I am missing in postgres to do that? Thank you in advance for your time.
1
vote
1answer
100 views

Return first x results from each group in SQL query

I have a very complicated SQL query that returns a few hundred results broken down as follows: user 1 id: ## stuff user 1 id: ## stuff user 1 id: ## stuff ...
1
vote
1answer
31 views

What happens when limiting an oracle subquery

A friend of mine and I recently were having a debate about this, so I was wondering if anyone here might actually know the answer. Generally, to emulate the LIMIT start_index,result_count syntax of ...
1
vote
1answer
215 views

how do I specify a tab in a postgres front-end COPY

I would like to use the psql "\copy" command to pull data from a tab-delimited file into Postgres. I'm using this command: \copy cm_state from 'state.data' with delimiter '\t' null as ; But I'm ...
1
vote
3answers
300 views

Escaping quotes inside text when dumping Postgres Sql

Let's say my table is: id text +-----+----------+ 123 | foo bar 321 | bar "baz" Is there any way to escape those quotes around 'baz' when dumping? My query is in the form: SELECT text ...
1
vote
2answers
120 views

Postgres - Sql - PgSql Cheatsheets

I am developing some python queries using psycopg and I was looking for some good cheat sheet. Which Postgres - Sql - PgSql Cheatsheets do you use regularly during DB development?
1
vote
2answers
193 views

subprocess.popen and psql

I have django aplication which needs to call psql. I do this in a celery thread which looks like this: @task() def insert_sqldump_threaded(username, database, file): host = ...
1
vote
1answer
301 views

\d command doesnt works anymore with psql-client 8.3 (upgrade to v9.0)

since we upgrade our postgresql 8.3 to postgresql 9, \d command doesnt works anymore with psql-client 8.3 : ERROR: column "reltriggers" does not exist LINE 1: SELECT relhasindex, relkind, relchecks, ...

1 2 3