for PostgreSQL questions specific to version 9.2.
39
votes
1answer
9k views
How do I query using fields inside the new PostgreSQL JSON datatype?
I am looking for some docs and/or examples for the new JSON functions in PostgreSQL 9.2.
Specifically, given a series of JSON records:
[
{name: "Toby", occupation: "Software Engineer"},
{name: ...
11
votes
4answers
6k views
Postgresql 9.2 pg_dump version mismatch
I am trying to dump a Postgresql database using the pg_dump tool.
$ pg_dump books > books.out
How ever i am getting this error.
pg_dump: server version: 9.2.1; pg_dump version: 9.1.6
pg_dump: ...
10
votes
2answers
740 views
upgrading to postgres 9.2 heroku
What is the recommended way to upgrade a Heroku Postgres production database to 9.2 with minimal downtime? Is it possible to use a follower, or should we take the pgbackups/snapshots route?
8
votes
3answers
5k views
Postgres could not connect to server
After I did brew update and brew upgrade, my postgres got some problem. I tried to uninstall postgres and install again, but it didn't work as well.
This is the error message.(I also got this error ...
6
votes
3answers
187 views
Database temporarily disconnected after a lots of transactions by pgbench
I am using (PostgreSQL) 9.2.1 and test the database with pgbench.
pgbench -h 192.168.39.38 -p 5433 -t 1000 -c 40 -j 8 -C -U admin testdb
When I use the -C parameter(Establish a new connection for ...
6
votes
2answers
347 views
Improve query performance for union of CTE + normal select
On the basis of Convert recursive function to view, I'd like to speed up the retrieval of the path from any arbitrary node in the graph to its root by creating a snapshot of a node's parents. The idea ...
5
votes
4answers
3k views
Error on creating database in phppgadmin
I have PostgreSQL 9.2.0. On clicking create database it shows following error:
SQL error:
ERROR: column "spclocation" does not exist
LINE 1: ...pg_catalog.pg_get_userbyid(spcowner) AS spcowner, ...
5
votes
2answers
721 views
unresolved dependency for postgresql 9.2 jar in play framework
I am using postgresql 9.2 with play framework 2.1
I downloaded the driver here: http://jdbc.postgresql.org/download.html (JDBC4 Postgresql Driver, Version 9.2-1002)
My project/Build.scala file is ...
5
votes
3answers
163 views
How can I optimize this query (or is there a better way)?
I recently asked a question and someone provided me with a solution that works but I forgot to mention there was that my table has millions of rows (~10 million for items table, ~1 millon for the ...
4
votes
3answers
6k views
Socket File “/var/pgsql_socket/.s.PGSQL.5432” Missing In Mountain Lion (OS X Server)
I just upgraded my MacMini Server from Lion Server to Mountain Lion using OS X Server. I am having the same problem with PostgreSQL that I did last year when I first installed Lion Server.
When I ...
4
votes
1answer
2k views
PostgreSQL 9.2 row_to_json() with nested joins
I'm trying to map the results of a query to JSON using the row_to_json() function that was added in PostgreSQL 9.2.
I'm having trouble figuring out the best way to represent joined rows as nested ...
4
votes
2answers
94 views
PostgreSQL - how should I use first_value()?
This answer to shows how to produce High/Low/Open/Close values from a ticker:
PostgreSQL - retrieve open high low close with arbitrary time windows
I am trying to implement a solution based on this ...
4
votes
1answer
51 views
PostgreSQL different versions
I'm new with PostgreSQL and want to start working with it as the database for a web development.
But on PostgreSQL website I have 4 active versions: 9.2, 9.1, 9.0 and 8.4.
Why does PostgreSQL have 4 ...
4
votes
2answers
972 views
How to index JSON data in PostgreSQL 9.2?
Does anyone know how to create index on JSON data in PostgreSQL 9.2?
Example data:
[
{"key" : "k1", "value" : "v1"},
{"key" : "k2", "value" : "v2"}
]
Say if I want to index on all the keys how ...
4
votes
3answers
109 views
in an inner join how to select only one row from the table on right based on a sliding criteria?
I have a set of tables containing weeks, products, inventory and weekly forecasts from which I want to select week X product inventory and latest forecasts. But I just cannot get my hands around the ...
3
votes
2answers
139 views
Convert Bit String To Array in PostgreSQL
I have a 160 chars bit string and I need to have an integer array that stores the position of the bits that have a value of 1.
Example:
bitstring = '00110101'
array = [3,4,6,8]
Is it possible to ...
3
votes
1answer
975 views
How do i use postgreSQL 9.2 JSON data type in django?
postreSQL 9.2 has native json data type support.
How do i create a django model that can use this data type as one of the model fields?
3
votes
3answers
158 views
Function Getting the right week number of year
I want to create a function to get the right week number of year.
I already posted here to find a 'native' solution, but apparently there is not.
I tryed to create funcrtion based on this mysql ...
3
votes
3answers
85 views
PostgreSQL ORDER BY with VIEWs
Let's say I want to write a simple SELECT query that uses a VIEW:
CREATE TEMP VIEW people AS
SELECT
p.person_id
,p.full_name
,p.phone
FROM person p
ORDER BY p.last_name;
SELECT
...
3
votes
3answers
480 views
Months between two dates function
In oracle i can find out no:of months between using MONTHS_BETWEEN function.
In postgres i am using extract function for this.
eg.like
select
extract(year from age(current_date, '2012-12-09')) ...
3
votes
2answers
117 views
Slow query after big INSERT in Postgres
We are using Postgres 9.2 in RedHat. We have a table similar to the following:
CREATE TABLE BULK_WI (
BULK_ID INTEGER NOT NULL,
USER_ID VARCHAR(20) NOT NULL,
CHUNK_ID INTEGER,
STATE ...
3
votes
2answers
99 views
Insert using a function that returns two values per row
This function:
CREATE OR REPLACE FUNCTION fn_test1()
RETURNS SETOF date AS
$BODY$
declare
i int;
begin
i:=0;
while i<5 loop
return next '2001-01-02'::date;
i:=i+1;
end loop;
end
$BODY$
...
3
votes
1answer
129 views
How to pass BigInteger from java to Postgres?
I need to pass a BigInteger argument to SQL query. (on Postgres 9.2)
I have this code in my DAO:
public List<PersonInfo> select(String id) {
BigInteger bigIntId = new ...
3
votes
1answer
72 views
PostgreSQL - filter database list
I have this script (which backups databases daily):
#!/bin/bash
# Location to place backups.
backup_dir="/home/user/openerp/7.0/backup/"
#String to append to the name of the backup files
...
3
votes
1answer
131 views
PostgreSQL dynamic fetch foward count value
I have the following function used to retrieve a batch of Ids from a table. This function is being used as the OFFSET and LIMIT clauses seem to offer poor performance.
CREATE OR REPLACE FUNCTION ...
3
votes
1answer
2k views
Entity Framework 5.0 PostgreSQL (Npgsql) default connection factory
I'm trying to get EF 5.0 code first working with PostgreSQL (Npgsql provider). I have Npgsql 2.0.12.1 installed via NuGet (referenced assembly is 2.0.12.0 though).
I have Npgsql declared in app.config ...
3
votes
1answer
64 views
Most effecient way to find closest integer?
I have a pre-defined 6 digit number, and an Entry model with a 'number' field (integer) that will have several thousand randomly generated entries per month. I need to find the best way to find the ...
3
votes
1answer
1k views
Error upgrading postgresql cluster from 9.1 to 9.2
I'm on Ubuntu 12.04 64 bit on Amazon EC2.
Trying to upgrade postgresql from 9.1 to 9.2.
$ uname -a
Linux db2 3.2.0-32-virtual #51-Ubuntu SMP Wed Sep 26 21:53:42 UTC 2012 x86_64 x86_64 x86_64 ...
3
votes
1answer
191 views
PostgreSQL 9.2 - Convert TEXT json string to type json/hstore
I have a TEXT column containing valid JSON string.
CREATE TABLE users(settings TEXT);
INSERT INTO users VALUES ('{"language":"en","gender":"male"}');
INSERT INTO users VALUES ...
3
votes
1answer
175 views
How to XML-encode a string in PostgreSQL?
Question: I can create a XML-encoded string in Postgres like this:
SELECT xmlelement(name name, 'AT&T', null )
now I want to get the xml encoded value, that is to say AT&T.
But if I ...
3
votes
0answers
72 views
Calculatng median for every hourly time slice in a temporal database in PostgreSQL
I am working on temporal database.
I need to accomplish aggregation in the time series data.
I have supposed to find instantaneous hours which can be Hour:00, Hour:01 or Hour-1:59 and extracting the ...
2
votes
3answers
864 views
What is the maximum number of columns in a PostgreSQL select query
Do you know what the maximum number of columns that can be queried in Postgresql? I need to know this before I start my project.
2
votes
2answers
215 views
How to find first free time in reservations table in PostgreSql
Reservation table contains reservations start dates, start hours and durations.
Start hour is by half hour increments in working hours 8:00 .. 18:00 in work days.
Duration is also by half hour ...
2
votes
1answer
290 views
JSON data type limits in PostgreSQL
Does anyone know what is the limit on size of JSON data type in PostgreSQL 9.2?
2
votes
2answers
114 views
Allow only work time in reservations table
PostgreSql 9.2 Reservation table is defined as
CREATE EXTENSION btree_gist;
CREATE TABLE schedule (
id serial primary key,
during tsrange not null,
EXCLUDE USING gist (during WITH &&)
...
2
votes
2answers
57 views
How can I achieve the same Postgres collation behavior in Linux as that in Mac OS?
When switching between Mac OS (development) to Linux (production server), the collation for Postgres changes since collation in Postgres is dependent on the underlying operating system config.
How ...
2
votes
2answers
950 views
Find duplicate rows with PostgreSQL
We have a table of photos with the following columns.
id, merchant_id, url
this table contains duplicate values for the combination merchant_id, url. so it's possible that one row appears more ...
2
votes
3answers
132 views
Find out which schema based on table values
My database is separated into schemas based on clients (i.e.: each client has their own schema, with same data structure).
I also happen to have an external action that does not know which schema it ...
2
votes
1answer
463 views
Slow count(*) on postgresql 9.2
There are a few discussions this and there (including the official post on postgres web) about the slow count(*) prior version 9.2; somehow I did not find satisfied answer.
Basically I had postgres ...
2
votes
1answer
36 views
Subselect on array_agg in postgresql
Is there a way to use a value from an aggregate function in a having clause in Postgresql 9.2+?
For example, I would like to get each monkey_id with a 2nd highest number > 123, as well as the second ...
2
votes
2answers
527 views
Remove duplicates from table based on multiple criteria and persist to other table
I have a taccounts table with columns like account_id(PK), login_name, password, last_login. Now I have to remove some duplicate entries according to a new business logic.
So, duplicate accounts will ...
2
votes
1answer
133 views
Make SELECT with LIMIT and OFFSET on big table fast
I have more than 10 million records in a table.
SELECT * FROM tbl ORDER BY datecol DESC
LIMIT 10
OFFSET 999990
Output of EXPLAIN ANALYZE on explain.depesz.com.
Executing the above query takes ...
2
votes
2answers
49 views
What is the best way to find only the non matching elements between two string arrays in postgresql
What i have found so far is
select ARRAY(
select unnest(ARRAY[ 'a', 'b', 'c' ])
except
select unnest(ARRAY[ 'c', 'd', 'e' ])
)
We can do this to find only the non matching elements ...
2
votes
1answer
186 views
Changing a column from string to string array in postgresql
The following is a snippet of a table called "containers".
Column | Type | Modifiers
...
2
votes
1answer
334 views
Is the debugger plug-in not available for PostgreSQL 9.2 EnterpriseDB for Win7 x-64
I followed the installation notes C:\Program Files\PostgreSQL\9.2\doc\installation-notes.html
Edited the postgresql.conf file shared_preload_libraries = '$libdir/plugin_debugger.dll'
Stopped and ...
2
votes
1answer
133 views
Check if each number from a list matches a range in a int4range[]
I have a field: ages pg_catalog.int4range[][][]
Example value is {"[0,6)","[8,10)"} which means 2 ranges 0-6 and 8-10.
How to add correct condition to WHERE clause to check:
9 and 3 fit example ...
2
votes
1answer
360 views
Npgsql.NpgsqlException: ERROR: 42601: syntax error at or near “where”
I have the followinf web service in asp.net
//setup profile
[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public void SetProfile(string userName, string firstName, ...
2
votes
1answer
358 views
Postgres 9.2 PL/pgSQL simple update in loop
I have a following table:
+----+----------+----------+
| id | trail_id | position |
+----+----------+----------+
| 11 | 16 | NULL |
| 12 | 121 | NULL |
| 15 | 121 | NULL |
...
2
votes
2answers
257 views
Can't display postgresql query as Combobox in Visual Basic.net
I have a query that executes perfectly in Postgresql:
SELECT
matchid
, f1.firstname
, f1.lastname
, f2.firstname
, f2.lastname
FROM matches AS m
INNER JOIN fighters AS f1
...
2
votes
1answer
279 views
Joining two tables, two columns while displaying multiple rows as a single row
The tables are setup as follows:
fighters:
fighterid
firstname
lastname
etc
etc
matches:
matchid
fighteroneid (fighterid FK)
fightertwoid (fighterid FK)
etc
etc
I want to join both the ...





