0
votes
1answer
36 views
Fixing a type-error in Python’s Pg
What is wrong in the insertion of pdf-files to Pg by Python?
I run
#!/usr/bin/python
# -*- coding: UTF-8 -*-
import os
import pg
from pg import DB
import sys
con1 = pg.DB(' …
0
votes
2answers
30 views
PostgreSQL and JMS (Or other Pub-Sub/Callback Mechanism)
I want to have my PostgreSQL server send out notifications when a piece of data changes, preferably over JMS, but also considering any other Pub-Sub mechanism or Callback.
Any ide …
0
votes
3answers
26 views
Postgresql: alternative to WHERE IN respective WHERE NOT IN
Dear all,
I have several statements which access very large Postgresql tables i.e. with:
SELECT a.id FROM a WHERE a.id IN ( SELECT b.id FROM b );
SELECT a.id FROM a WHERE a.id NO …
0
votes
1answer
57 views
To have two Pg queries in one Python method
Thank you for Denis who solves the first bug!
How can you have two Postgres queries in one Python method?
Example where the 2nd query is not run
def comp_func(pgmasi):
p …
0
votes
4answers
40 views
postgreSQL group by different from mysql?
I've been migrating some of my mySQL queries to postgreSQL to use Heroku... most of my queries work fine, but I keep having a similar recurring error when I use group by:
ERROR: …
0
votes
1answer
13 views
PostgreSQL - Updating an Enum Type
I've got a field that is using an enumeration type. I wish to update the enum to have an additional field (I don't want to delete anything, just add a new label). What is the simpl …
1
vote
1answer
14 views
Concurrency issues when retriveing Ids of newly inserted rows with ibatis
I'm using iBatis/Java and Postgres 8.3.
When I do an insert in ibatis i need the id returned.
I use the following table for describing my question:
CREATE TABLE sometable ( id seri …
0
votes
2answers
28 views
PostgreSQL create table if not exists
In a MySQL script you can write:
CREATE TABLE IF NOT EXISTS foo ...;
... other stuff ...
and then you can run the script many times without re-creating the table.
How do you do …
0
votes
3answers
35 views
PostgreSQL triggers and exceptions
I'm trying to get my first ever trigger and function to work, but how I throw exceptions and return data right way?
PostgreSQL 8.4.1
CREATE TABLE "SHIFTS" (
id integer NOT NU …
0
votes
1answer
34 views
@ oracle equivalent in postgres
How can i run multiple sql files from one main sql files in postgres.
For example in oracle
Inside Main.sql i can specify n number of @Child.sql , and then i can run Main.sql to r …
1
vote
3answers
71 views
Problems with updating records in django-admin
I'm using Django (specifically django-admin) to be the admin panel for a site that uses PHP for client-facing features. I've been messing around making the admin look exactly the w …
0
votes
2answers
24 views
Select items where local time is ~8AM.
I have a table called items. It contains a column tz with timezone identifiers (like America/New_York, Europe/London, etc).
I want to select all the items where the current time i …
1
vote
1answer
36 views
Postgres Alter Column Integer to Boolean
I've a field that is INTEGER NOT NULL DEFAULT 0 and I need to change that to bool.
This is what I am using:
ALTER TABLE mytabe
ALTER mycolumn TYPE bool
USING
CASE
…
0
votes
7answers
117 views
Getting data from an Excel sheet
How do I load data from an Excel sheet into my Django application? I'm using database PosgreSQL as the database.
I want to do this programmatically. A client wants to load two dif …
0
votes
2answers
44 views
how to delete duplicate entries in postgresql?
Hi, I have a problem where I have to add a unique constraint to an existing table. This is fine except that the table has millions of rows already, and many of the rows violate the …
