This is for PostgreSQL questions specific to version 8.4.

learn more… | top users | synonyms

0
votes
0answers
7 views

Error inserting a timestamp with pg_query_params

Im working in postgres 8.4 and PHP 5.4.3 using pg_query_params. I have a table called armies taht have 3 rows (well only for this example, it really have more). the id is an integer and the other two ...
0
votes
1answer
27 views

Why would a query return PK violation when previously validated?

I have this table CREATE TABLE "UserCouponSentMail" ( "IdUser" integer NOT NULL, "IdCoupon" integer NOT NULL, "SendType" character varying(100), "Date" timestamp without time zone NOT NULL ...
0
votes
0answers
19 views

how to join several row values in one row in postgresql? [duplicate]

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
0answers
9 views

Delete old postgres version

Can I delete my old postgresql version(8.4) in which I upgraded to version(9.2)? What commands I must use for that? And can I restore the backup script which I took from pgadmin3 to my new ...
1
vote
4answers
45 views

SQL query for combining rows that have overlapping dates in separate columns

this is an odd question. let me lay out my table structures... my 'server' table gives me status information of my servers (i get a few of these messages every minute). my 'client' table is updated ...
0
votes
1answer
48 views

Postgres two subqueries poor performance [EAV model]

I have a table called "meta" with 2.2 million records. This table contains 3 columns: productId, key and value. Key and value are the two columns containing a meta description of a product. The ...
0
votes
1answer
36 views

Creating a view SQL

These are the tables I have to work with. customer (cust_id, name, city, postcode) order (order_id, cust_id, date) orderline (order_id, video_id, quantity) video (video_id, description, price, ...
1
vote
3answers
58 views

Model::query() doesn't return Model-name in results

When I execute some query with a $this->query, CakePHP return this: Model: <?php App::uses('AppModel', 'Model'); class Authorization extends AppModel { public $displayField = 'name'; ...
0
votes
2answers
35 views

perform true on joined tables

In PostgreSQL 8.4.13 I have two tables representing card games (each with 3 players) and the score results of those games. The players are identified by id column and the games by gid: # \d ...
0
votes
1answer
41 views

getting error CallableStatementCallback; bad SQL grammar while calling procedure from postgreSQL

i am using Spring-JDBC Support and PostgreSQL and getting error. I am able to run proc from back end. So it's compiled proc. CREATE OR REPLACE PACKAGE schemaname.my_pkg_name IS PROCEDURE ...
0
votes
1answer
30 views

Sort SELECT result by pairs of columns

In the following PostgreSQL 8.4.13 table (where author users give grades to id users): # \d pref_rep; Table "public.pref_rep" Column | Type ...
0
votes
0answers
42 views

PostgreSQL: After using CreateLang, I still get an error “42704: language ”plpgsql“ does not exist”

I am using pgProvider on a MVC3 Mono application and had no issues on Windows Postgres 9.2. I am migrating to my production Linux/Mono environment, and received an error when attempting to access the ...
0
votes
0answers
49 views

Postgres 8.4 Server doesnt listen [closed]

Im running postgres 8.4 on my local machine Windows 7 64x bit and it was working fine for ages... Now all of sudden its giving me this error using pgadmin Server doesn't listen The server doesn't ...
0
votes
0answers
14 views

driving_distance does not return all sets of distance

I'm working with pgRouting, trying to get the distance matrix along the river system. I use driving_distance function and it seems like I am getting what I want, but when I check the result table ...
1
vote
1answer
38 views

ImageMosaic-JDBC Error

I'm trying to get postgis raster layers in geoserver-2.3.1, with postgresql-8.4, postgis-2.0 and gt-imagemosaic-jdbc-9.1.jar support. I'm going through the tutorial with a PNG raster that i have. In ...
0
votes
1answer
48 views

cannot create jdbc driver of class '' for connect url 'null' postgresql

I'm getting this error when I try to deploy my WAR application. org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot create JDBC driver of cla ss '' for connect URL 'null' at ...
0
votes
1answer
64 views

Full text search exception with special characters in PostgreSQL

I am trying to get the list of objects by search text. If I proceed this with special character string for ex, searchText ="Agenya\\&\&"; query like this (I am using Postgres's full text ...
2
votes
1answer
40 views

SQL query table of skills

I need to query predefined sets of skill ratings out of a PostgreSQL table. Consider the following demo table with users 1, 2 and 3, each of which has different skills and skill ratings: ...
0
votes
0answers
34 views

propel could not find postgresql driver - wrong pdo version?

I can't get the propel script running on my system. My build.properties looks like this: propel.project = test # The Propel driver to use for generating SQL, etc. propel.database = pgsql # This ...
0
votes
0answers
22 views

some issue face on migrating application from jdbc to hibernate

i am working on reporting tool named as iview .currently i am using jdbc to connect with postgresql(8.4) database now i want to use hibernate in my application.i have completed my poc and i am ...
0
votes
1answer
28 views

How to change a status in sql correlating with time

Hi I am doing a project where I am stuck in the following the question asks me to make a booking entry for a travel agency using previous records such as bookingid, customerid, flightID number, ...
0
votes
1answer
55 views

Parser Error Message: Assembly 'Npgsql, Version=2.0.12.0, Culture=neutral, PublicKeyToken=5d8b90d52f46fda7' not found

I am trying to use Npgsql to connect to POSTGRESQL datatbase from C# webservice which i deployed on Linode - Debain 6.I have dumped the project files along with the bin which has Npgsql.dll and ...
0
votes
1answer
67 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 ...
1
vote
3answers
58 views

Show the count based on some condition

I've asked a question some days back. Here is that link. Count() corresponding to max() Now with the same set of tables (SQL Fiddle) I would like to check a different condition If the first ...
0
votes
1answer
53 views

Error in Postgresql : for creating language plpythonu

Postgresql is throwing error while creating language plpythonu ERROR: could not load library "C:/Program Files/PostgreSQL/8.4/lib/plpython.dll": The specified module could not be found. I have ...
4
votes
1answer
93 views

count() corresponding to max() of different values satisfying some condition

I have the following tables: user_group usergrp_id bigint Primary Key usergrp_name text user user_id bigint Primary Key user_name text user_usergrp_id ...
0
votes
0answers
20 views

Get additional columns value where Max() and Min()

Couldn't find a better may to title this :=) Postgresql 8.4. Suppose a readings table like: (object_id, read_date, read_value) What's the quickest way of getting a report by obj_id of the min_date ...
0
votes
1answer
57 views

PostgreSQL trigger updating secondary related table

I have two tables: table1 and table2, which triggers on inserts and on updates in the same function. As you insert a value in table1 or table2 a value is inserted in table3, with the value ...
1
vote
3answers
122 views

Restart primary key numbers of existing rows after deleting most of a big table

I am working with a PostgreSQL 8.4.13 database. Recently I had around around 86.5 million records in a table. I deleted almost all of them - only 5000 records are left now. I ran: vacuum full after ...
0
votes
1answer
42 views

Database table size did not decrease proportionately

I am working with a PostgreSQL 8.4.13 database. Recently I had around around 86.5 million records in a table. I deleted almost all of them - only 5000 records are left. I ran reindex and vacuum ...
0
votes
1answer
66 views

String matching in insert trigger - how to use in conditionals to return NULL?

In PostgreSQL 8.4.13 database with UTF8 encoding I keep a (non-English) dictionary in this table: create table good_words ( word varchar(64) primary key ); And a list of wrong (but often ...
0
votes
0answers
38 views

pg_control is deleted in Postgresql what can I do? [closed]

In one of the postgres installations where I was having huge database pg_control file got deleted and now DB is not coming up, what can I do ?
0
votes
1answer
106 views

Insert data in a table from a file in PostgreSQL without double quote

I have a file with some data which I need to insert in a table. I am using gpfdist-external table - table to load the file. I am able to load data in table, but my problem is the fields in input ...
4
votes
1answer
69 views

Take the qualifiers - postgresql

I'm working on the postgresql 8.4 source code. I need to extrapolate the qualifiers (where part) from the query. For example if the query is: select name from student where age > 18 I need to know ...
5
votes
4answers
139 views

Fetch records that are non zero after the decimal point in PostgreSQL

I have a table with an amount field of type Numeric. It contains different amount values. For example 5.00 7.13 8.86 6.00 1.00 ... etc. I've to fetch only those records that are nonzero after the ...
7
votes
6answers
215 views

PostgreSQL and word games

In a word game similar to Ruzzle or Letterpress, where users have to construct words out of a given set of letters: I keep my dictionary in a simple SQL table: create table good_words ( ...
0
votes
1answer
175 views

PostGIS: Function for Selecting Points in a Polygon

I've been banging on this for a few hours, but since I'm relatively new to PostgreSQL and PostGIS, I can't find the solution. I'm trying to create a stored procedure (function) which will return all ...
0
votes
0answers
12 views

what are the differences between exec_parse_message and exec_simple_query? [closed]

I'm working with the postgresql's code. what are the differences between exec_parse_message and exec_simple_query? When I use pgadmin exec_simple_query is called, but when I use my application the ...
0
votes
1answer
125 views

PostgreSQL 8.4 Win 32Bit, replication strategies to 64 bit Linux

So we have an application that uses PostgresSQL 8.4 on windows (yeah I know).. We have several of these apps in our country. What we want to do is have a linux server in a data centre, that stores a ...
1
vote
1answer
197 views

Calling a user-defined function located in “postgres.c” in postgreSQL using a GUI defined by netbeans

I' trying to add 3 user_defined function to the PostgreSQL-8.4.15. Here are 3 functions: (1) start_create_profile(); (2) make_profile(); (3) check_anomaly(); All of them are written in file ...
0
votes
0answers
37 views

Connecting with database(PostgreSQL) is not working properly

we are using ibatis and postgres in ibtis some code for getnext key. when ever we are starting the programe it's working well but like after 4-5 time getting next key we are not getting response from ...
1
vote
1answer
366 views

Hibernate QueryException: 'Not all named parameters have been set' - with native query containing ::int

in our current project we need a query of the long-matching-prefix type but the column was oddly enough defined as bigint. We came up with the solution in the snippet below, where we want to find the ...
1
vote
1answer
51 views

connecting to postgreSQL server failed

I am trying to install "Kwok information server" and I am new to postgreSQL. I just followed the installation guide of Kwok information server. when I am trying to install kwok-schema-setup.jar file ...
1
vote
2answers
49 views

Options to retrieve the current (on a moment of running query) sequence value

How is it possible to get the current sequence value in postgresql 8.4? Note: I need the value for the some sort of statistics, just retrieve and store. Nothing related to the concurrency and race ...
1
vote
1answer
39 views

How to get fields and added in group by in PostreSQL8.4?

I am selecting column used in group by and count, and query looks something like SELECT s.country, count(*) AS posts_ct FROM store s JOIN store_post_map sp ON sp.store_id = s.id GROUP ...
0
votes
2answers
235 views

rake jobs:work gives “PGError: ERROR: SELECT FOR UPDATE/SHARE is not allowed in subqueries”

I'm merging in some changes to my Rails app, which include the addition of the delayed_job gem (which looks AWESOME). To test it out, I: ran rails g delayed_job ran rake db:migrate, which created ...
2
votes
1answer
37 views

Can't enter date into postgres field with datatype reltime

I'm trying to make an insert into postgres 8.4.13 insert into my_table (id, hour_memo) values (1,'17:30:00.000000 +01:00:00'); hour_memo is 'reltime datatype' During the execution of the insert ...
0
votes
3answers
59 views

Can't I get to Postgres with plain psql

I always have to give the command like sudo -u postgres psql in order to login into Postgres console. What do I have to in order to login into postgres like sudo psql or psql The environment I am ...
0
votes
2answers
54 views

Query inside a Transaction

I have a doubt about transactions and queries inside transactions. Currently I'm using PostgreSQL 8.4 with Hibernate. I don't know if it's possible to get the data that has been recently inserted in ...
0
votes
1answer
42 views

Specify PostgreSQL passphrase non-interactively

Is there a way to set the PostgreSQL server's private key passphrase in environment variable or pass it as parameter while starting the server using pg_ctl command without non-interactively? ...

1 2 3 4