for PostgreSQL questions specific to version 9.2.
0
votes
1answer
350 views
Storing PostgreSQL/PostGIS “geometry(MultiPolygon)” data type in java
I need to store PostgreSQL's geometry(MultiPolygon) type variable into a java variable
this is because im trying to add the geometry column to a non-spatial table for querying a map using mapserver
i ...
2
votes
1answer
467 views
Importing .csv with timestamp column (dd.mm.yyyy hh.mm.ss) using psql \copy
I'm trying to import data from a .csv file into a postgresql 9.2 database using the psql \COPY command (not the SQL COPY).
The input .csv file contains a column with a timestamp in the dd.mm.yyyy ...
2
votes
1answer
132 views
Making PostgreSQL create directory for new tablespace
i would like to be able to do something like
CREATE TABLESPACE bob location 'C:\a\b\c\d\e\f\bob'
without needing to create all the directory tree beforehand.
this is because i have java code that ...
0
votes
1answer
245 views
postGIS for latitude and longitude
I created a table named zipcode with the following columns
Id
State
Zip
Latitude
Longitude
column1
column2
Columns named column1 and column2 are the 2 geometry columns i have created to store the ...
0
votes
3answers
75 views
Query for displaying related usernames that match a given username
What would the query be if lets say the person searches for a username --> johnny123 and if there is no such username, then i want it to return a list usernames that match the pattern of the username ...
1
vote
1answer
120 views
Using PostGIS for location based data
I have a table in postgresql 9.2 that stores the latitude and longitude of locations as integer values.
I intend to do something like when a user searches for a location, he also gets information on ...
0
votes
1answer
146 views
“Update if table exists” in one statement - how?
I have a problem with SQL statement which is a part of long transaction.
UPDATE tab_1
LEFT JOIN tab_2
ON tab_1.id = tab_2.tab_1_id
SET tab_1.something = 42
WHERE tab1.id = tab_2.tab_1_id;
...
0
votes
1answer
70 views
How Do I Write A Query In Ruby Using Variables WIthin A Where Clause (PostgreSQL)
This is what I want to accomplish without using a gem hopefully. I have a search function on one of my views where I desire to allow people to enter a first and last name in a single field, have my ...
2
votes
1answer
298 views
Npgsql.NpgsqlException: ERROR: 42601: syntax error at or near “where”
I have the followinf web service in asp.net
//setup profile
[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public void SetProfile(string userName, string firstName, ...
2
votes
0answers
161 views
libpq with SSL on VC 2010
I have question compiling libpq on windows (VS2010 32 and 64bit) with SSL support.
I downloaded the latest source of
postgres and also the OpenSSL Win64 v1.0.1c.
I ran nmake in libpq folder:
cd ...
3
votes
3answers
4k views
Socket File “/var/pgsql_socket/.s.PGSQL.5432” Missing In Mountain Lion (OS X Server)
I just upgraded my MacMini Server from Lion Server to Mountain Lion using OS X Server. I am having the same problem with PostgreSQL that I did last year when I first installed Lion Server.
When I ...
2
votes
1answer
316 views
Slow count(*) on postgresql 9.2
There are a few discussions this and there (including the official post on postgres web) about the slow count(*) prior version 9.2; somehow I did not find satisfied answer.
Basically I had postgres ...
2
votes
1answer
241 views
Postgres 9.2 PL/pgSQL simple update in loop
I have a following table:
+----+----------+----------+
| id | trail_id | position |
+----+----------+----------+
| 11 | 16 | NULL |
| 12 | 121 | NULL |
| 15 | 121 | NULL |
...
1
vote
3answers
76 views
Updating a column with the results of a query in PostgreSQL
I have the following table in PostgreSQL 9.2 which contains time stamps:
gid [PK] (bigserial), timestamp_mes (timestamp without time zone), time_diff (interval)
1, 2012-01-23 11:03:40, empty
2, ...
0
votes
1answer
131 views
DateTime equivalent of Sql Server 2008 in PostgreSQL 9.2
Should i be using timestamp or timestamp with time zone in PostgreSql 9.2? Which one matches the datetime version of Sql Server 2008.
1
vote
3answers
739 views
How to create sequence if not exists
I tried to use code from check if sequence exists postgres (plpgsql).
To create sequence if it does not exists. Running this code two times causes an exception:
sequence ... already exists.
How ...
2
votes
1answer
109 views
Querying row counts segregated by date ranges
I've got a PostgreSQL 9.2.1 database, where I'm attempting and failing to compose a SQL query which will show me the count of distinct tests (testname) which failed (current_status='FAILED' and ...
0
votes
1answer
43 views
postgresq role can't access its created schema
Notable information
I am using Postgresql 9.2 on Windows 7 64-bit. It was installed using the installer provided by Postgresql website
I am logged into the postgres database as postgres
I create the ...
0
votes
1answer
395 views
Getting Affected Rows by UPDATE statement in RAW plpgsql
This has been asked multiple times here and here, but none of the answers are suitable in my case because I do not want to execute my update statement in a PL/PgSQL function and use GET DIAGNOSTICS ...
6
votes
3answers
174 views
Database temporarily disconnected after a lots of transactions by pgbench
I am using (PostgreSQL) 9.2.1 and test the database with pgbench.
pgbench -h 192.168.39.38 -p 5433 -t 1000 -c 40 -j 8 -C -U admin testdb
When I use the -C parameter(Establish a new connection for ...
2
votes
2answers
108 views
Allow only work time in reservations table
PostgreSql 9.2 Reservation table is defined as
CREATE EXTENSION btree_gist;
CREATE TABLE schedule (
id serial primary key,
during tsrange not null,
EXCLUDE USING gist (during WITH &&)
...
1
vote
0answers
666 views
Getting Postgresql Running In Mac: Database “postgres” does not exist [closed]
I followed these instructions to get postgresql running on mac. Note that I am using Homebrew to install, and the current version installable through brew is 9.2.1, so I changed the version numbers in ...
0
votes
0answers
347 views
PostgreSQL install fails on windows 7 with failure to initialize database cluster
The PostgreSQL 9.1 and 9.2 oneclick installer keeps failing on my Windows 7 machine with failing to initialize database cluster. I also tried installing from binary but it fails during database ...
5
votes
4answers
2k views
Error on creating database in phppgadmin
I have PostgreSQL 9.2.0. On clicking create database it shows following error:
SQL error:
ERROR: column "spclocation" does not exist
LINE 1: ...pg_catalog.pg_get_userbyid(spcowner) AS spcowner, ...
1
vote
1answer
348 views
How to insert values into the rows of a newly added column of a table in PostgreSQL
I imported a personal geodatabase into PostgreSQL. For one of my tables, I added a new column. This column is empty and I want to add in/insert values into this column so that all its rows will be ...
2
votes
1answer
191 views
how to return only work time from reservations in PostgreSql
Select from great answer in How to find first free time in reservations table in PostgreSql
create table reservation (during tsrange,
EXCLUDE USING gist (during WITH &&)
);
is used to ...
0
votes
1answer
41 views
how to reserve time for char(10) type objects
Postgresql 9.2 reservation table contains object2 column whose type is char(10).
The following code is used to create non-overlapped reservations table:
CREATE TABLE reservat (
id serial primary ...
7
votes
2answers
4k views
Postgres could not connect to server
After I did brew update and brew upgrade, my postgres got some problem. I tried to uninstall postgres and install again, but it didn't work as well.
This is the error message.(I also got this error ...
0
votes
1answer
368 views
Trying to use Tweepy/Twitters Streaming API and psycopg2 to populate a PostgreSQL database. Very close, one line off
I've been working on trying to populate a table in a PostreSQL database using Tweepy and Twitter's Streaming API. I'm extremely close, I believe I'm just one line away from getting it. I've looked at ...
2
votes
2answers
199 views
How to find first free time in reservations table in PostgreSql
Reservation table contains reservations start dates, start hours and durations.
Start hour is by half hour increments in working hours 8:00 .. 18:00 in work days.
Duration is also by half hour ...
0
votes
1answer
298 views
upgrading postgresql 9.1.2 (9.1.3) -> 9.2.1 via homebrew
In a round of upgrades I ended up (literally, it was the last upgrade left) updating postgresql via homebrew. It installed PostgreSQL 9.2.1.
I couldn't make it run:
Dart:~ Arta$ pg_ctl -D ...
-1
votes
1answer
123 views
Converting a SQL Server 2008 R2 database to PostGIS
I have a database in SQL Server 2008 R2 which needs to be converted into a PostGIS one.
I have PostGres 9.2 installed with the PostGIS extension. What should be my next step to convert my existing ...
3
votes
1answer
1k views
PostgreSQL 9.2 row_to_json() with nested joins
I'm trying to map the results of a query to JSON using the row_to_json() function that was added in PostgreSQL 9.2.
I'm having trouble figuring out the best way to represent joined rows as nested ...
0
votes
1answer
227 views
Unit of return value of ST_Distance
I need to calculate the distance between
all buildings and
all hospitals
in a map imported from OSM.
I use following query:
SELECT building_id, hospital_id, ST_Distance(building_centroid, ...
0
votes
1answer
527 views
Importing OpenStreetMap data into PostgreSQL database
I'm trying to import one of the following OpenStreetMap maps 1, 2, 3 into a PostgreSQL database using calls like call osmosis.bat --read-xml file="map.osm" --write-pgsimp user="ccp-web-user" ...
0
votes
2answers
231 views
Loading a dump file(.dbo file) into mariadb database
I have a .dbo file and I need to load the dump file into mariadb. How it is possible?
In MySQL I tried like this :
mysql -u root -p dbname -e " source path/test.dbo"
But the same is not works with ...
1
vote
1answer
908 views
osm2pgsql: Function AddGeometryColumn doesn't exist
I want to import OSM file into my PostgreSQL database (Windows, Postgres Version 9.2) using the tool Osm2pgsql.
When I run following command
osm2pgsql.exe --create -d mydb artyom.xml -U myuser -W ...
1
vote
1answer
43 views
Aggregate values by row count
I have a series of rows and I need to aggregate values from these rows into the groups of N elements, accumulating values from current and N-1 succeeding rows.
With N=3 and data being:
VALUES ...
1
vote
1answer
219 views
Postgres: error connecting to server “An operation was attempted on something that is not a socket.”
I'm using Windows, trying to get my database working so I can create a superuser on my localhost.
I successfully installed Postgres 9.2.1, but when I try to connect to the server I get:
Error ...
2
votes
2answers
238 views
Can't display postgresql query as Combobox in Visual Basic.net
I have a query that executes perfectly in Postgresql:
SELECT
matchid
, f1.firstname
, f1.lastname
, f2.firstname
, f2.lastname
FROM matches AS m
INNER JOIN fighters AS f1
...
2
votes
1answer
213 views
Joining two tables, two columns while displaying multiple rows as a single row
The tables are setup as follows:
fighters:
fighterid
firstname
lastname
etc
etc
matches:
matchid
fighteroneid (fighterid FK)
fightertwoid (fighterid FK)
etc
etc
I want to join both the ...
3
votes
1answer
1k views
Error upgrading postgresql cluster from 9.1 to 9.2
I'm on Ubuntu 12.04 64 bit on Amazon EC2.
Trying to upgrade postgresql from 9.1 to 9.2.
$ uname -a
Linux db2 3.2.0-32-virtual #51-Ubuntu SMP Wed Sep 26 21:53:42 UTC 2012 x86_64 x86_64 x86_64 ...
2
votes
3answers
122 views
Find out which schema based on table values
My database is separated into schemas based on clients (i.e.: each client has their own schema, with same data structure).
I also happen to have an external action that does not know which schema it ...
0
votes
3answers
2k views
How to get started with PostgresSQL similar to mysql
I am not getting a clue to:
simply login to postgreSQL
Create a database
Add a table
Insert a record
Delete , update etc
These things are normally very very easy using mysql . Can someone ...
9
votes
4answers
4k views
Postgresql 9.2 pg_dump version mismatch
I am trying to dump a Postgresql database using the pg_dump tool.
$ pg_dump books > books.out
How ever i am getting this error.
pg_dump: server version: 9.2.1; pg_dump version: 9.1.6
pg_dump: ...
0
votes
1answer
108 views
PostgreSQL / Dumping 9.0 and reimporting in 9.2
When dumping my database 9.0 with the aim to re import it in 9.2, I have issues with schemas.
For example, my table bar in schema foo is exported like this :
SET search_path = foo, pg_catalog;
...
...
-1
votes
1answer
984 views
PostgresQL: how to start up the database server and create a database
When I try to run a server:
postgres@ubuntu:~$ /usr/local/pgsql/bin/postgres -D /usr/local/pgsql/data
LOG: could not bind IPv4 socket: Address already in use
HINT: Is another postmaster already ...
2
votes
1answer
262 views
JSON data type limits in PostgreSQL
Does anyone know what is the limit on size of JSON data type in PostgreSQL 9.2?
0
votes
2answers
1k views
PostgreSQL 9.2 10x slower than MySQL 5.5? [closed]
I have PostgreSQL 9.2 and MySQL 5.5 (InnoDB) installed on my laptop.
Both database engines using default installation and populated from the same CSV file.
I have 'sales_reports' table with ca. 700K ...
2
votes
2answers
662 views
What is the maximum number of columns in a PostgreSQL select query
Do you know what the maximum number of columns that can be queried in Postgresql? I need to know this before I start my project.
