for PostgreSQL questions specific to version 9.1.
1
vote
0answers
12 views
Postgresql k-nearest neighbor (KNN) on multidimensional cube
I have a cube that has 8 dimensions. I want to do nearest neighbor matching. I'm totally new to postgresql. I read that 9.1 supports nearest neighbor matching on multidimensions. I'd really appreciate ...
-2
votes
0answers
8 views
Open Source CMS for designing storefront (online ecommerce) application using Hibernate [closed]
Can anybody suggest an Open Source CMS for designing storefront (online ecommerce) application using Hibernate?
0
votes
0answers
8 views
gpload utility in greenplum
Can anyone help me with the gpload utility in greenplum? I am doing this for the first time, I have created the control file as per the help command, but getting some gpfdist connection error. Is ...
0
votes
1answer
18 views
How to connect Pgadmin3 to a database on Virtualbox machine?
I have an Ubuntu Server with Postgresql server on Virtualbox machine (which runs on local machine), and Pgadmin3 on local machine.
Now how can I connect with Pgadmin3 to a database on Virtualbox? I am ...
0
votes
0answers
13 views
Measuring how many transactions are done on JTA application
I had a web software running in a Jboss AS 7 container witch saves our data in a PostgreSQL 9.1 database via JPA, an its configuration delegated to JTA.
Last year it was adapted to run at AWS EC2 ...
0
votes
1answer
34 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 ...
2
votes
0answers
102 views
Unidac 5.0 performance degradation
We migrated from UniDAC 4.1 to 5.0 (simply rebuilded or app with new version) and catch huge degradation in our datapump routines.
Running pgfouine catch many queries like:
SELECT current_database() ...
0
votes
1answer
14 views
Using extract function in your own sql function
I'm trying to create the following function into my Postgres database:
create or replace function public.extract_hour(time_param timestamp with time zone) returns double precision language sql as ...
0
votes
0answers
16 views
Streaming replication in postgresql 9.1 — sender and receiver processes aren't running [migrated]
I've followed this guide, and cross-referenced the primary postgresql wiki in order to set up replication. I've configured postgresql.conf and pg_hba.conf as directed, and then restarted the master ...
0
votes
1answer
39 views
postgres, ubuntu how to restart service on startup? get stuck on clustering after instance reboot
i have a Postgres db 9.1 running on AWS EC2, with ubuntu 12.04.
i messed a lot with the instance (i.e installed all kinds of postgres X.X before i settled on 9.1).
now after a month working on that ...
0
votes
0answers
22 views
Use select query in stored procedure [migrated]
I have some doubt about stored procedure.
Using select query inside the stored procedure is efficent or using select query in front end. Which is take less time and give the result is fast Or if have ...
1
vote
0answers
23 views
How to monitor or do vacuum without stop all? [migrated]
I have postgres9.1
I try to run full vacuum on a specific table , but it run for more than 5 hours.
I stop all process against this table and i cannot have the process down any longer.
Is there a ...
1
vote
1answer
55 views
slow update script in postgres
I have a text file with 850000 individual update statements, updating a table containing 12 million records. An example of such a query is:
update bag.pand
set mutatiedatum = to_date('04-03-2013 ...
1
vote
2answers
36 views
SQL Union without duplicate values for one specific field
There're 3 tables DEVELOPER, MANAGER and PROJECT:
create table DEVELOPER(id int(4), lastname varchar(40), project_id int(4));
create table MANAGER(id int(4), lastname varchar(40), project_id ...
0
votes
0answers
24 views
createdb command error in postgres sql [migrated]
I am using the following command for creating database in postgresql.
createdb -D pg_default -E UTF8 -h localhost -p 5432 -U pramil -W pramil mydb
but this command results prompt for password.When ...
0
votes
1answer
34 views
How do you set pool size in production using rails and rubber gem?
I am using rails 3.2 and postgres 9.1. I'm hosting on Amazon EC2 instance, and using capistrano and rubber to deploy.
So my question is, since I don't set database options in database.yml for ...
0
votes
0answers
11 views
java.lang.NoClassDefFoundError with PL/Java
I'm getting this error:
ERROR: java.lang.NoClassDefFoundError: com.blablabla.android.core.device.zkproto.ZKProtoOperation
SQL state: XX000
when trying to run a PGSQL function, defined as follows:
...
0
votes
0answers
22 views
Performance issue when using pgpool for fail-over and recovery of postgresql DB
I am working on a POC of setting up PGPOOL with postgresql for failover and recovery.
Everything is working fine but I am observing huge performance delay with transaction.
Following is my setup.. ...
1
vote
1answer
34 views
Convert a nested subquery into normal query
I have problem with following query where in which the nested query should be
converted to normal query:
select
count(*) as count,
TO_CHAR(RH.updated_datetime,'DD-MM-YYYY HH:MI:SS') as date,
...
1
vote
3answers
74 views
Improving Subquery performance in Postgres
I have these two tables in my database
Student Table Student Semester Table
| Column : Type | | Column : Type |
|------------|----------| ...
0
votes
1answer
31 views
Unable to restore pg_dump backup
I'm trying to restore backup from Postgres 9.1.1, which was created by:
pg_dump mydb > backup.sql
restore on Postgres 9.1.9
psql -d mydb -f backup.sql
I'm getting this error:
...
0
votes
1answer
24 views
Restore Particular tables in one schema to another schema postgresql
In my case, i have backup file in full database. Now I want to restore some particulars tables in public schema.
Those tables are already stored in another schema. Any Feasible solution is there? ...
0
votes
2answers
40 views
How to apply time slices to an existing SQL query
I have a table with approx 8 million rows that I need time slice data from.
I'm using PostgreSQL 9.1.
I need to query this table for a sum of the max(start_time) associated 'data' values for each ...
0
votes
0answers
15 views
postgresql libreoffice base long time to load form
I have a postgresql 9.1 server running on a Ubuntu 12.04LTS machine with 4GB RAM and LibreOffice 4. There
are about 600 records in the database, one field is a photo and the other 11 fields are text ...
0
votes
2answers
33 views
Why does the OS user has to be same as the database user while connecting to PostgreSQL using md5 authentication?
I have configured md5 authentication for user foo by putting the following in pg_hba.conf:
# TYPE DATABASE USER ADDRESS METHOD
local all foo md5
When I try to ...
0
votes
2answers
50 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
0answers
13 views
Restore postgres data from remote machine using PITR
I am doing backup-restore using Continuous Archiving and Point-In-Time Recovery (PITR).
I am able to do it on my machine. But when I try to restore data (WAL files) from remote machine it doesn't ...
0
votes
2answers
37 views
How to Connect Virtualized PostgreSQL Client to Server on Phisical Machine?
my first question posted here.
Right now I have my laptop with Ubuntu 12.04 running PostgreSQL 9.01 on the same machine I have a virtualized Fedora 18 running under VirtualBox 4.2.12.
On this ...
0
votes
1answer
40 views
Error : Starting POSTGRESQL server
i am very new to ruby and postgresql.
When i try to run
ruby scrpit/server, rake db:migrate, rake db:seed
i get this.
Rails 2.3.11 application starting on http:/0.0.0.0:3000
warning: ...
0
votes
2answers
53 views
PostgreSQL update issue $libdir/postgis-1.5 $libdir/plr
I am trying to update from postgresql 9.1 to 9.2 on Mac OS X using binaries provided by William Kingesbury and since hours can`t find a solution for an issue with loadable libraries.
First I got the ...
2
votes
1answer
33 views
Round number UP to multiple of 10
How do I round number UP to the multiple of 10 in PostgreSQL easily?
Example:
In Out
100 --> 100
111 --> 120
123 --> 130
Sample data:
create table sample(mynumber numeric);
insert ...
0
votes
2answers
35 views
Easy way to view postgresql dump files?
I have a ton of postgresql dump files I need to peruse through for data. Do I have to install Postgresql and "recover" each one of them into new databases one by one? Or I'm hoping there's a ...
0
votes
0answers
14 views
Cannot create PostgreSQL user [migrated]
I'm using PostrgreSQL 9.1.9 on Ubuntu 13.04.
Using the following StackOverflow question, I tried to create a user/role in postgressql:
...
1
vote
1answer
45 views
Is it possible to have an Array of hstore in PostgreSQL
I am a complete beginner in PostgreSQL. And I was really amazed by the hstore datatype provided by Postgres. Well, I am using the Rails 3 framework and developing a simple app that uses PostgreSQL. I ...
0
votes
1answer
36 views
Selecting Nodes Separating Line Segments
I want to select nodes separating line segments in a layer. I want to select nodes only where they are intersected by two lines, NOT when they meet with more than two line (e.g. a T intersection or ...
1
vote
1answer
27 views
configuration for pdo and postgesql
I'm using postgreSQL 9.1 with postGIS 2.0 .Also Apache 2.2.22 and PHP 5.3.13. I'm trying to set PHP's PDO for postgreSQL. I also use Windows 7.
According to this this I am ok, I checked my php.ini and ...
1
vote
0answers
26 views
Failover - automatic switching between servers in Postgresql 9.1 [migrated]
I'm pretty new to Postgresql 9.1 /Failover replication.
We have a simple Master-Slave setup, for failover replication, which our application(client) is connected to. On a failure of the Master, the ...
0
votes
1answer
46 views
Creating a Unique PostgreSQL Index that Contains Operations
I would like to create a unique PostgreSQL index that contains operations. Does anyone know if this is possible?
CREATE UNIQUE INDEX ux_data ON table (name, color)
The operation that I would like ...
0
votes
0answers
33 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
20 views
Heroku PostgreSQL 9.1 , copying user defined functions
I have a production database in Heroku . I use PostgreSQL 9.1
I want to get a test environment with test database. It doesn't matter for me where the test database should be - on local or in Heroku.
...
2
votes
2answers
85 views
Postgresql insert trigger to set value
Assume in Postgresql, I have a table T and one of its column is C1.
I want to trigger a function when a new record is adding to the table T. The function should check the value of column C1 in the ...
0
votes
1answer
42 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 ...
0
votes
1answer
58 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 ...
0
votes
1answer
31 views
Transfer regex from Java to PostgreSQL
How can I transfer the following regex from Java to PostgreSQL syntax:
Pattern.compile("(?imu)(P\\W*Ř\\W*E\\W*D\\W*V\\W*O\\W*L\\W*Á\\W*N\\W*Í)"));
I have tried:
select regexp_matches('P Ř E D V O ...
0
votes
3answers
102 views
Select date (timestamp) from PostgreSQL as string (char), beware of NULL value
I want to select a date (my column is a timestamp type). But when in column is a NULL date, I want to return an empty string. How to do this? I wrote this:
SELECT
CASE WHEN to_char(last_post, ...
0
votes
1answer
31 views
Postgresql: ERROR: type “citext” does not exist
I have read other posts, when searching, an answer to this question.
Question: I am using PostGreSQL 9.1, and created extension 'citext' using 'CREATE EXTENSION citext' But when I try create any ...
0
votes
2answers
81 views
Postgres is ignoring a timestamp index, why?
I have the following tables:
users (id, network_id)
networks (id)
private_messages (id, sender_id, receiver_id, created_at)
I have indexes on users.network_id, and all 3 columns in private messages ...
0
votes
0answers
63 views
Failed to connect to database - can't push PostgreSQL database to heroku
I created a very simple blog app with a couple of entries and all I'm trying to do is push it to heroku, but I get the following error:
$ heroku db:push [git@github.com:appname/blog.git]
Loaded Taps ...
0
votes
3answers
38 views
Formatting real value returned by query from a database
I am using postgresql.The table in my database have column with type REAL.When real value having more than seven zeros postgresql stores it for example as 1e+007.When it is retrieved by query,value ...
4
votes
2answers
113 views
Why is PostgreSQL (9.1) not using index for simple equality select?
My table lead has an index:
\d lead
...
Indexes:
"lead_pkey" PRIMARY KEY, btree (id)
"lead_account__c" btree (account__c)
...
"lead_email" btree (email)
"lead_id_prefix" btree (id ...

