Search Results

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 …
0
votes

SQL clone record with a unique index

You could create an insert trigger to do this, however, you would lose the ability to do an insert with an explicit ID. It would, instead, always use the value from the sequence. …
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

Looking for an SQL statement which groups by type

The answer here is to normalize the data. Table 1: System ID - key Description Table 2: Port Type ID - key Description Table 3: System ID - Key Port ID - Key Port Type Select cou …