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.
0
votes
2answers
11 views
PostgreSQL: Call a Function More Than Once in FROM Clause
How can I call a function which returns records more than once in FROM clause? I understand that I have to specify a 'column definition list' when using a function that returns records. But how can I ...
0
votes
2answers
23 views
Joining 2 select queries on 2 different tables in PostgreSQL
I have two separate queries on 2 different tables which I am trying to join into one query. Both tables are within the same schema.
The following are my queries:
1>
SELECT forumid,threadid
FROM ...
0
votes
3answers
33 views
How can I deal with a race condition in PostgreSQL?
I've been getting a handful of errors on Postgresql, that seem to be tied to this race condition.
I have a process/daemon written in Twisted Python. The easiest way to describe it is as a Web ...
0
votes
1answer
17 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 ...
1
vote
1answer
18 views
Conditionally joining a table
My test tables are:
create table products (
product varchar(50) primary key,
show_reviews boolean
);
create table reviews (
review_id integer primary key,
product varchar(50) references ...
0
votes
1answer
11 views
Postgres Substring an Integer
I had a quick question, how can I go about using SUBSTRING on an integer? I currently have field labeled "StoreID" that contains a 5 digit integer (60008). I am trying to use SUBSTRING to remove the 6 ...
1
vote
2answers
33 views
Postgres Hash Join speed
I have 3 tables which I wish to join using inner joins in Postgres 9.1, reads, devices, and device_patients. Below is an abbreviated schema for each table.
reads -- ~250,000 rows
CREATE TABLE reads
...
0
votes
1answer
15 views
pgsql new array aggregate function
i have a table like this:
id | array
1 | {8,8,8,x,u,x,x}
2 | {8,8,8,x,8,x,x}
Is it possible to aggregate those two rows into one containing sum of each col (if it's an int)?
My goal is to ...
1
vote
0answers
20 views
json_each and json_each_text results with different column names
I've just upgraded to Postgresql 9.3beta. When I apply json_each or json_each_text functions to a json column, the result is a set of rows with column names 'key' and 'value'.
Here's an example:
I ...
1
vote
1answer
21 views
Change UUID format in Django foreign key
I have postgresql DB and using UUID as PK in my models.
When I do something like
model.rel_model.id
it returns me uuid in 32 chars (without '-' separators, as uuid.hex does) - it so because I wrote ...
1
vote
0answers
25 views
django orm search with postgres
For small searches in PostgreSQL, http://django-orm.readthedocs.org/en/latest/orm-pg-fulltext.html can be used easily, as shown in the docs.
Following are the steps, I used to implement it -
...
0
votes
0answers
16 views
Postgresql 9.2 DBLINK windows 7
I have installed the PostgreSQL9.2 and I need to use DBLink after searching through the internet, it is stated that the dblinke should be found under PostgreSQL\9.2\share\contrib. In my case the ...
2
votes
2answers
39 views
Calculate offset of a row
I am writing a server side on RoR, which uses postgresql.
Today I faced a feature, in what I need to identify the current offset of a row in the table. Client send me a unique identifier and I need ...
1
vote
1answer
20 views
Execute cycle only for CASE WHEN specific condition
If write this
DECLARE res INTEGER;
DECLARE loop_res INTEGER;
BEGIN
SELECT 0 INTO loop_res;
FOR i IN 1..5 LOOP
SELECT loop_res + i INTO loop_res;
...
2
votes
2answers
37 views
Fetch data from more than one tables using Group By
I am using three tables in a PostgreSql database as:
Customer(Id, Name, City),
Product(Id, Name, Price),
Orders(Customer_Id, Product_Id, Date)
and I want to execute a query to get from them "the ...
0
votes
1answer
13 views
Spring JPA @Query where clause with 'like' and 'or'
I have the following query:
@Query("select c from Category c where ( (lower(c.name) like '%' || lower(:searchText) || '%') or (lower(c.description) like '%' || lower(:searchText)) || '%')")
My ...
0
votes
0answers
12 views
(SOLVED) postgis-2.0.so: undefined symbol: GETSTRUCT
when i use pg_upgrade check upgrade postgresql 9.0 beta2 to postgresql 9.3 beta1.
error occure below :
uptest@db-172-16-3-33-> cat loadable_libraries.txt
Could not load library ...
1
vote
1answer
35 views
Looping through relational table
Is it possible to loop through postgres while changing the values of Limit and offset. I want to loop through till the end of the relational table is reached. The reason I want to dynamically set ...
0
votes
0answers
33 views
why I can not create tablespace in postgresql
I have installed centos 6.3 On vmware, and the postgresql is self-contained, the Version is PostgreSQL 8.4.13 on i386-redhat-linux-gnu.
I want to create a tablespace with command like This:
create ...
0
votes
2answers
19 views
Rails Database Design with Similar models with different attributes
I am designing an application that has many types of "requests" the requests are to be handled in a very similar nature to one another but they contain different data.
They each have about 1/3 of the ...
2
votes
1answer
39 views
Running select command on postgres relational Table containing data in tera bytes
I have a relational table in postgres of 3 TB. Now I want to dump its content to a csv file. For doing so I am following the tutorial: ...
2
votes
2answers
18 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
2answers
47 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
1answer
45 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
18 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
1answer
19 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
26 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
28 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
15 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
28 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
26 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
33 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
33 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
40 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 ...
1
vote
0answers
13 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
32 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
41 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
42 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
36 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
51 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
29 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
24 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
67 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
36 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 ...
-3
votes
0answers
29 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
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 ...


