PostgreSQL is an open-source, object-relational database management system (ORDBMS) available for many platforms including Linux, UNIX, MS Windows and Mac OS X. Please mention your PostgreSQL version when asking questions.

learn more… | top users | synonyms (3)

1
vote
2answers
8 views

sqlalchemy: How do I enforce date range on column?

Here is how my column looks financial_day_of_month = Column('financial_day_of_month', Integer, nullable=False, default=1) I want to enforce that min=1 and max=31 ...
3
votes
1answer
19 views

Postgres: Optimizing querying by datetime

I have a table that has a datetime field "updated_at". A lot of my queries will be querying on this field using range queries such as rows that have updated_at > a certain date. I already added an ...
0
votes
0answers
26 views

transform the content of relational table to the specified form using SQL

I have a database which contains the following columns: key arg1 arg2 arg3 timebegin timeend #1 a b c 1942-06-18 05:30:00+05:30 1945-06-18 05:30:00+05:30 #2 d e ...
0
votes
0answers
15 views

how to join several row values in one row in postgresql?

How to turn : => SELECT pic.reference, spec.name FROM species spec NATURAL JOIN pictures pic WHERE spec.name = 'Bufo bufo'; reference | name -----------+----------- IM000213 ...
0
votes
1answer
13 views

Hibernate does not create Table in the database

I am using PostgreSQL and I am trying to run a simple Hibernate application, in particular the application decribed in the page. My hibernate.cfg.xml file is: <?xml version="1.0" ...
0
votes
1answer
23 views

postgresql to_timestamp returns different date than represented by the timestamp

Here's a replication of the problem: I get the timestamp of now via JavaScript as var ts = +new Date // 1368971991090 console.log( new Date(1368971991090) ); // Sun May 19 2013 13:59:51 GMT+0000 ...
0
votes
2answers
24 views

How to “not include” some piece in regex pattern

Given string 12,.34.56 I need split this string by point (.), but only by these points, which previous character is not comma (,) That is, from string above, must be retrieve result 12,.34 56 I ...
0
votes
1answer
13 views

Error when using custom function on NHibernate mapping-by-code's SqlInsert

I have an NHibernate mapping-by-code that works if using standard INSERT on standard SqlInsert class ProductTranslationMapping : ClassMapping<ProductTranslation> { public ...
0
votes
1answer
23 views

Get all procedural , user defined functions

How to get list of all user defined functions via SQL query ? I find this code here SELECT p.proname, p.pronargs, t.typname FROM pg_proc p, pg_language l, pg_type t WHERE p.prolang = l.oid and ...
0
votes
1answer
23 views

Creating multiple transactions in a single hibernate session

I have created a Quartz Job which runs in background in my JBoss server and is responsible for updating some statistical data at regular interval (coupled with some database flags) To load and ...
1
vote
1answer
27 views

Connecting to PostgreSQL gives “could not connect to server” error [closed]

I have three versions of postgres installed 8.4,9.1 and 9.2 on ubuntu Ubuntu 12.04.2 LTS (Precise Pangolin). Version 8.4 is running on port 5433, 9.1 on port 5432 and 9.2 on port 5434 when i run ...
-1
votes
0answers
31 views

find out local postgresql host [closed]

I start the server with: $ pg_ctl -D /usr/local/var/postgres -l logfile start I need it to create a database url like: postgres://username:password@host/database How do I figure out what the ...
2
votes
1answer
38 views

Failing to push to heroku

I am attempting to push my rails 3.2.12 app to heroku, which is configured with a postgres database. The first time I ran git push heroku master I received the below error. Running: rake ...
0
votes
0answers
12 views

How do I get alembic to emit custom DDL on after_create?

I've got a couple of custom DDL statements that I want to run after create table: update_function = DDL(""" ...
0
votes
1answer
27 views

Which postgres data type should I use for large XML message come from network?

I have incoming xml which is potentially as big as 5M and I need to store it it with postgres 9.1. Which data type should I use ? bytea character varying text or something else ? BTW The xml ...
0
votes
3answers
35 views

Trying to connect an external database (postgreSQL)with my android application

I'm having an issue with my android application and don't know how to resolve it.... I'm trying to make a connection throw my external database (postgreSQL) and taking some informations on there .... ...
1
vote
0answers
34 views

How to Change location of postgres cluster and database within the same machine? [migrated]

I have my present database cluster of postgres at /mnt/my_hard_drive which I want to change to /home/myfolder. I also want to move all my databases present in the present cluster to /home/myfolder. Is ...
0
votes
1answer
28 views

Install postgresql 9.2 on debian wheezy (on virtualbox)

I have virtualbox with Debian Wheezy. I'm trying to install Postgresql 9.2 on it. When I trying do it by this instruction i have next: Reading package lists... Done Building dependency tree Reading ...
0
votes
1answer
35 views

Is a primary key required? (6NF implementation)

Is a primary key required in the 6NF relvar tables of a 5NF relation. Consider the following setup: -- The 5NF table CREATE TABLE party_address( address_id int NOT NULL, party_id int NOT ...
0
votes
2answers
48 views

The sample from the database by date using only the day and month. Not taking into account the year

I have a database, let's call it "mydb". The database "mydb", there is a table "mytable". In the table "mytable", three fields: text (type char), start_date (type DATE) and end_date (type DATE). I ...
1
vote
1answer
36 views

Active Record: Find collection based on sum of two associated tables

I am trying to find the collection of 'underpaid' events in our system. We are running Rails 3.2 using a Postgres database. The data structure is as follows. class Event < ActiveRecord::Base ...
0
votes
1answer
27 views

R Postgres and shortcut commands?

Do postgres shortcuts like \d+ tablename work with RPostgreSQL? If I try to run 'em I get a syntax error: Error: '\d' is an unrecognized escape in character string starting "\d". I tried escape it, ...
0
votes
1answer
23 views

psql -U user pgrouting authentication failure [closed]

I have a pgrouting database in my postgresql database. The owner is user but when I try to connect using psql -U user pgrouting error occurs psql: FATAL: Peer authentication failed for user ...
1
vote
3answers
63 views

How to get array base type in postgres via jdbc

How to get base type / dimension of an array column in Postgres by Java? I have a tables that contain arrays like int[][] and text[]. When I traverse the metadata from JDBC I can only get type as ...
2
votes
1answer
31 views

Insert CSV line by line Into Postgres using PHP PDO

I am trying to have the user upload a file and then have the file be inserted into a postgres database line by line. I have this code and I am getting the following error with my syntax: Array ( ...
0
votes
0answers
12 views

hilo vs GUIDcomb vs Sequence

Is there any practical experience using the hilo generator for a VERY large number of records? In practice, if you or, for example, restarting your server once a day what ends up being the number of ...
-2
votes
0answers
24 views

how to implement sqlite on android and access to an external database? [closed]

I must do a project for my university and i would like to implement an sqlLite database on my android application. As i never did before an implementation of sqlLite, i'm a little worried ... ...
1
vote
1answer
21 views

pg_dump vs pg_dumpall? which one to use to database backups?

I tried pg_dump and then on a separate machine I tried to import the sql and populate the database, I see CREATE TABLE ERROR: role "prod" does not exist CREATE TABLE ERROR: role "prod" does not ...
0
votes
0answers
26 views

Running PostgreSQL with Flask

I'm trying to use PostgreSQL with Flask and getting the following error: sqlalchemy.exc.OperationalError: (OperationalError) FATAL: database "[db]" does not exist My code is below is taken from ...
0
votes
1answer
18 views

Postgres COPY FROM csv file- No such file or directory

I'm trying to import a (rather large) .txt file into a table geonames in PostgreSQL 9.1. I'm in the /~ directory of my server, with a file named US.txt placed in that directory. I set the search_path ...
0
votes
1answer
27 views

How to dump whole csv database to format readable by Excel (csv is OK).

This may be a futile excersise, but one of my client totally insisted that he needs whole database dump to perform analytics in Excel. There are many answers to how to dump single table to csv (like ...
-1
votes
1answer
36 views

Java app can't connect to local postgresql

I have a simple Java application that needs to connect to a PostgresSQL running on local host. The DB is up and running, and I can connect to it using the username and password using the psql command ...
0
votes
1answer
15 views

psql \copy command error when executing from c++ program

ERROR: syntax error at or near "\" LINE 1: \copy mytable FROM urishFile WITH (FORMAT csv, DELIMITER ','... ^ I am getting this error when running command from c++ program. command = ...
0
votes
1answer
27 views

Slow request in CakePHP 2.3

Setup CakePHP 2.3.5 PHP 5.3.8 Apache 2.2 PostgreSQL 8.4 Windows 7 Professional x64 This, is one of a lot situations in my project, with a CakePHP need more than 1 second to render a simple view. ...
2
votes
2answers
85 views

How can I do this in SQL?

Today, I need your help. I have a stats website, I get data from Game Webservices. I want to implement a new function but I don't know how. I want to guess players' connection hours. I have a ...
3
votes
1answer
65 views

How to move sorting to the database level

I have a Rails app, which uses postgresql for a database, that sorts different types of users by location, and then by reputation points they receive for various activities on the site. This is an ...
2
votes
2answers
47 views

When running PL/R on PostgreSQL, can R handle data bigger then RAM?

When I use R open source, if not using a specific package, it's not possible handle data sets bigger than RAM memory. So I would like to know if it's possible handle big data sets applying PL/R ...
0
votes
0answers
18 views

how to decrypt data with postgresql - dukpt

I recently started working encrypting and decrypting data with the DUKPT scheme. I have successfully decrypted the data with java and ruby, but now I need to know if it is possible to decrypt the ...
0
votes
2answers
31 views

How to install Postgres extensions at database creation?

It would be lovely if the rake command db:create could be followed by a postgresql installation script. This, for example. (It must be run as postgres user): CREATE EXTENSION "fuzzystrmatch"; This ...
2
votes
1answer
20 views

Get the count of rows from a COPY command

When copying data from a file, you get the count of rows in psql with the "command tag": db=# COPY t FROM '/var/lib/postgres/test.sql'; COPY 10 I need the number of rows and would like to avoid a ...
-1
votes
1answer
34 views

Postgresql daily backup [closed]

What is the best strategies or practices to create a daily backup for a postgresql database in production environment. postgres 8.4 & centos 6.3
0
votes
1answer
59 views

How to perform a SQL query that orders by a column of type JSON?

I am using a POSTGRESQL database and I need to order by a column that is of type JSON. This is the error I get: ERROR: could not identify an ordering operator for type json LINE 1: SELECT * FROM ...
0
votes
2answers
14 views

Using current time in UTC as default value in PostgreSQL

I have a column of the TIMESTAMP WITHOUT TIME ZONE type and would like to have that default to the current time in UTC. Getting the current time in UTC is easy: postgres=# select now() at time zone ...
0
votes
1answer
18 views

Postgres: how to convert from unix epoch to date?

The statement gives me the date and time. How could I modify the statement so that it returns only the date? SELECT to_timestamp( TRUNC( CAST( epoch_ms AS bigint ) / 1000 ) );
0
votes
2answers
19 views

Retrieve results from regexp_matches as one row

So, if have this string aassdd This code: regexp_matches('aassdd', 'a', 'g') returns 2 different rows. It is possible to retrieve all matches as one row? for example as array type as one row, that ...
0
votes
1answer
15 views

Role does not exist error when logging into Postgresql

My Rails app can't connect to Postgresql. I suspect it's because Postgres expects the user logging into it to be the same user logged into Ubuntu (12.10). deployer@xxx:~$ whoami deployer ...
0
votes
0answers
32 views

Postgresql, insertion of data contained in a string to database

In the code below I am trying to insert the contents contained in the string imagepath in a database called school and a table called student and the studentpix column. It successful connects to the ...
0
votes
1answer
28 views

Performance Impact of turning Columns into Rows

I'm planning to use JavaDB (Derby) or PostgreSQL. I have the following problem: I need to store a large set of vectors. Currently all vectors contain a fixed number of elements. Hence the appropriate ...
0
votes
1answer
27 views

Database Design - Party Object Model and Relating Index's correctly [closed]

Im a developer by trade and I am currently dabbling in database design. I have been advised on StackOverflow to use the Party Model to achieve the ability to relate customers that may be people or ...
0
votes
1answer
13 views

If array contains value

I have column arr which type is array . I need get rows , where arr column contains value s This query SELECT * FROM table WHERE arr @> ARRAY['s'] gives error: ERROR: operator does not exist: ...

1 2 3 4 5 340