Search Results

0
votes

PostgreSQL DbLink Compilation on Solaris 10

Does the file it is looking for actually exist? Is it in that location? It may be one of a few things I can think of: 1) The thing did not compile, and therefore does not exist. 2) It e …
6
votes

Migrating from MySQL to PostgreSQL

I have done a similar conversion, but for different reasons. It was because we needed better ACID support, and the ability to have web users see the same data they could via other DB tools (one I …
1
vote

Converting PostgreSQL database to MySQL

pg_dump can do the dump as insert statements and create table statements. That should get you close. The bigger question, though, is why do you want to switch. You may do a lot of work and no …
2
votes

Update VERY LARGE PostgresQL database table efficiently

While you cannot likely fix the problem of space usage (it is temporary, just until a vacuum) you can probably really speed up the process in terms of clock time. The fact that PostgreSQL uses MV …
1
vote

What is PostgreSQL explain telling me exactly?

PgAdmin3 will show you a graphical representation of the explain plan. Switching back and forth between the two can really help you understand what the text representation means. However, if you …
0
votes

postgreSQL - psql \i : how to execute script in a given path

Have you tried using Unix style slashes (/ instead of \)? \ is often an escape or command character, and may be the source of confusion. I have never had issues with this, but I also do n …
1
vote

CASCADE DELETE just once

The delete with the cascade option only applied to tables with foreign keys defined. If you do a delete, and it says you cannot because it would violate the foreign key constraint, the cascade wi …
0
votes

Trip time calculation in relational databases?

Ok, this is a bit beyond geeky, but I built a web application to track my wife's contractions just before we had a baby so that I could see from work when it was getting close to time to go to the …
0
votes

Cascading deletes in PostgreSQL

You do not need to dump and restore. You should be able to just drop the constraint, rebuild it with cascade, do your deletes, drop it again, and the rebuild it with restrict. CRE …
1
vote

Select unlocked row in Postgresql

It appears that you are trying to do something like grab the highest priority item in a queue that is not already being taken care of by another process. A likely solution is to add a where …
0
votes

unable to run postgres as windows service

I have had this issue in the past, and it was that the installer did not set up the permissions correctly for the user that the service was to run as. …
0
votes

Is there a postgres fuzzy match faster than pg_trgm?

Depending on what you are looking for, Postgres can also do matches on regular expressions, instead of the standard "like" syntax. It may be a better fit for you. …
0
votes

postgresql querying on multiple identical tables

The easiest solution would likely be to build a view of all of the tables, then you can query them easily. You could easily write a procedure to generate the view. Also, if you use "union all", …
0
votes

PostgreSQL In Memory Database

The answer is caching. Look into adding memory to the server, then tuning PostgreSQL to maximize memory usage. Also, the file system cache will help with this, doing some of it automatically. …