0
votes
0answers
9 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
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
vote
1answer
21 views

maximum number of arguments postgresql function can take

I have a view consists of two table. Let's say table TableA and table TableB. Now table A has got around 20 columns and table B has go 4 columns. TableA ( id datatype, uid datatype, . . ...
1
vote
2answers
31 views

Connecting PostgreSQL 9.2.1 with HIbernate

I have a blank Spring MVC project, and I've installed Hibernate and the PostgreSQL drivers using Maven. I'm running short on complete tutorials that show how to connect PostgreSQL with Hibernate. ...
-2
votes
0answers
19 views

How to install and configure Postgres-XC in windows? [closed]

Can anybody suggest me any resources of the complete installation procedure of postgres-XC in windows. I've installed postgresql-9.2 in my windows and can use it. Now I need to know the installation ...
0
votes
1answer
21 views

Issue with conflicting postgres when using homebrew

I have an issue when attempting to use postgresql along with homebrew. After doing a completely clean install (and after upgrading from postgresql 9.1.3 to 9.2.4 and doing a system update of MacOS X) ...
0
votes
1answer
35 views

how to call postgres function with hibernate criteria

I am getting sorted results using hibernate criteria which generates the below sql: select * from mytable order by name asc; This is how i do it with hiberante criteria: ...
1
vote
2answers
71 views

PostgreSQL error: subquery must return only one column

Using PostgreSQL-9.1 and PostGIS 2.0.1, when doing a SELECT query containing a sub-query that returns multiple columns, I am getting the error subquery must return only one column. How can the ...
0
votes
0answers
37 views

mystery postgres error in the log files

I am running Postgres9.2 and I am seeing this error in the postgres log file. 2013-05-07 04:10:56 GMT ERROR: relation "url_summary" does not exist at character 32 No idea where this is coming from. I ...
0
votes
1answer
31 views

psql seems to timeout with long queries

I am performing a bulk copy into postgres with about 80GB of data. \copy my_table FROM '/path/csv_file.csv' csv DELIMITER ',' Before the transaction is committed I get the following error. ...
1
vote
2answers
38 views

PostgreSQL create index on cast from string to date

I'm trying to create an index on the cast of a varchar column to date. I'm doing something like this: CREATE INDEX date_index ON table_name (CAST(varchar_column AS DATE)); I'm getting the error: ...
1
vote
1answer
35 views

Postgresql: optimizing columns size for numeric fields

I dont understand how Postgresql (9.2) calculate the column size (in kb), I have this tables: Table d2: Column | Type | ---------+---------------| id | serial | n | ...
0
votes
1answer
15 views

How to return resultset with Plpython3 in Postgres

How can a plpython function return result set as a normal sql query resultset (not as text). Here is function definition - DROP FUNCTION IF EXISTS demo_report(); CREATE OR REPLACE FUNCTION ...
0
votes
1answer
50 views

Cannot start Postgres server [closed]

I'm using Windows 7 32-bit version. I've installed Postgres 9.2. I've initiated database using initdb -U postgres -A password -E utf8 -W -D "POSTGRESQL_ROOT\data" It has been created successfully. ...
3
votes
1answer
79 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 ...
0
votes
2answers
49 views

PostgreSQL: How to list all available datatypes?

Question: In PostgreSQL (using SQL, not the console), how can I list all available datataypes ? Ideally like this: ...
0
votes
1answer
69 views

Use cases for hstore vs json datatypes in postgresql [closed]

In Postgresql, the hstore and json datatypes seem to have very similar use cases. When would you choose to use one vs. the other? Initial thoughts: You can nest with json; you can't with hstore ...
2
votes
2answers
48 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 ...
0
votes
2answers
31 views

Strange trim function behavior

I wonder why I've got empty string as a result when I'm especting something completely else... I use trim function to cut phone number from string: select trim(leading '509960405' from ...
4
votes
3answers
81 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 ...
0
votes
1answer
45 views

Better type for storing 2 different single char

When in colmun must be stored only 2 values: 0 or 1, What is better column type choice for this column: "char" or ENUM('0', '1') ?
3
votes
2answers
84 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 ...
0
votes
0answers
52 views

PostgreSQL full backups script not working

I'd like to use backup script that is provided in (my scripts are the same as in given link, only configuration changed): http://wiki.postgresql.org/wiki/Automated_Backup_on_Linux In ...
0
votes
1answer
67 views

No unique constraint matching given keys

I have two tables in in PostgreSQL -- customer and creditcard. A customer can have multiple credit cards, and different customers can have the same credit card associated with their account. However, ...
3
votes
2answers
77 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 ...
1
vote
2answers
56 views

Aggregating rows into JSON hash

I have the following table: roles id | name | person ---+-------+-------- 1 | admin | jon 2 | admin | fred 3 | user | alfred 4 | user | jon Where name can vary to any value. I'd like to ...
4
votes
1answer
48 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 ...
3
votes
1answer
57 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 ...
0
votes
1answer
41 views

Postgresql 9.x: Index to optimize `xpath_exists` (XMLEXISTS) queries

We have queries of the form select sum(acol) where xpath_exists('/Root/KeyValue[Key="val"]/Value//text()', xmlcol) What index can be built to speed up the where clause ? A btree index created ...
3
votes
1answer
107 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 ...
0
votes
1answer
53 views

PostgreSQL 9.x - pg_read_binary_file & inserting files into bytea

I have been looking everywhere (google, stackoverflow, etc.) for some documentation on how to use the PostgreSQL pg_read_binary_file() function. The only meaningful thing I can find is this page in ...
1
vote
1answer
52 views

Import CSV text array into PostgreSQL 9.2

I have data something like this: Akhoond,1,Akhoond,"{""Akhund"", ""Akhwan""}",0 pgAdmin's import is rejecting this. What format does the text[] need to be in the CSV? I also tried this: ...
0
votes
2answers
83 views

Creating case-insensitive indexes on Postgres string array

I'm using a varchar[] column (varchar array) in Postgres 9.2 to store some tags. While retrieving rows by tags, I want the query to be case insensitive. However, I want to preserve the case to display ...
0
votes
2answers
55 views

PostgresQL windows installer - blank screen- [closed]

Been trying to install Postgres version 9.2.4-1 on my desktop (Vista x32). Downloaded the installer but upon running the .exe a blank window came up with the installer name as title. This was strange ...
0
votes
1answer
78 views

Postgres partition management with triggers. Issue altering tables

SHORT STORY: I have a partitioned postgres database with a table to track the partitions and triggers. The triggers need to alter the constraints on the partition tables (their valid_date ...
0
votes
1answer
34 views

Decide which procedure to call, depending on field value

I have about 20 (and there will be more) specific stored procedures in my PostgreSQL 9.2 DB. They are used to make some calculations, some kind of financial "reports" (unfortunately, I can't just ...
1
vote
1answer
29 views

Unexpected behaviour for custom type returned from a function

I have created a custom type CREATE TYPE rc_test_type AS (a1 bigint); and a function CREATE OR REPLACE FUNCTION public.rc_test_type_function(test_table character varying, dummy integer) RETURNS ...
1
vote
4answers
74 views

Ensure that a column can only be modified if it IS NULL and only by some users

I have a column A (type int) in a table for which data is not available at insert time of the other values. I do not want to split the table, as there is no other real reason to do so. I am ...
0
votes
1answer
64 views

Using PostgreSQL 9.X with C++

When I try to connect to postgresql 9.2 with c++ it's not working in Windows but I can do that with postgresql 8.4. I heard that I can connect using ODBC with MFC. Is there any other simple way to ...
0
votes
1answer
55 views

Postgres how to join table A,B when B is partial to A [closed]

I have two tables: Table A - big table key,value1 table B - smaller table not all keys exists on this table keyint, value2 i would like to combine into a third table - table C ...
0
votes
1answer
41 views

Postgresql 9.2 ??? symbols

I've installed pg 9.2 on Ubuntu 12.04 $ psql psql: ?????: ???? "varan" ?? ?????????? How to configure it to output correct symbols?
0
votes
1answer
56 views

Error using INSERT and WITH statements together

PostgreSQL: v9.2 on a Windows machine. UPDATE: the version of postgres on the server is 9.0, the version on my machine is 9.2.1. I am trying to use the following query to update a table I have ...
0
votes
2answers
70 views

Remove all data from table but last N entries

I'm using psycopg2 with Python. I'd like to periodically flush data from my db. I've set up a task with Timer for this. I had asked this question before, but using the answer listed there freezes ...
0
votes
1answer
34 views

find data that corresponds to newest entry

I'm working on a db via psycopg2, and I want to find the 'newest' entry in the database. It doesn't seem that I should have to do any sorting to obtain this, as I literally just want the newest. The ...
0
votes
3answers
86 views

PostgreSQL: Which Datatype should be used for Currency?

Seems like Money type is discouraged as described here My application needs to store currency, which datatype shall I be using? Numeric, Money or FLOAT?
4
votes
2answers
66 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 ...
2
votes
2answers
303 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 ...
1
vote
2answers
68 views

Dropping column in Postgres on a large dataset

So I have a table with a large dataset and this table has a three columns that I would like to drop. The question is: how will Postgres deal with it? Will it walk through every entry or will it just ...
0
votes
1answer
52 views

Encoding error while creating database on postgreSQL [closed]

i've got a problem trying to create a database at postgresSQL 9.2, i need to use latin encodings so i tryed on psql: create database db encoding='latin1' I got this error: ERROR: encoding ...
0
votes
2answers
70 views

Postgresql initial configuration: How to access as the postgres user?

After installing postgresql, I tried it out, typing createdb mydb, like it's written in the documentation. Then the following error occured: createdb: could not connect to database postgres: FATAL: ...

1 2 3 4