Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
AlterEgo20
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
AlterEgo20
10y ago
As for number 5 - Postgres already does that. This feature is called "constraints". Such constraints can be applied to multiple columns and are used to build better query plans (as well as limiting DML operations)
2.
▲
by
AlterEgo20
10y ago
Even a single rare rollback can kill a prod DB. We had a situation when a bug in our code caused a series of huge UPDATEs in Oracle DB and LOCKed some critical tables. After ~2 hours we found this session and killed it. The problem - we had
3.
▲
by
AlterEgo20
11y ago
There is not suck thing as "NoSQL store". NoSQL is just a buzzword that is used to describe dozens (hundreds?) of very different solutions.
4.
▲
by
AlterEgo20
11y ago
Google "Postgres BDR". It is new, but it allows you to replicate changes on master to another master. With some configuration it can even change replicated data.
5.
▲
by
AlterEgo20
11y ago
Any SQL DBMS is able to store and handle NUMERIC data type. It is a binary decimal with any precision you may want. Some of the DBMS's also have dedicated currency types.
6.
▲
by
AlterEgo20
11y ago
Backup: http://www.postgresql.org/docs/current/static/app-pgdump.htm... In short: pg_dump -Fc mydb > db.dump Restore: http://www.postgresql.org/docs/current/static/app
7.
▲
by
AlterEgo20
11y ago
Easy. Just use dblink or foreign table to execute part of the statement inside other transaction. dblink to the same server/db is often used as way to create an "AUTONOMOUS_TRANSACTION"
8.
▲
by
AlterEgo20
11y ago
Why `nohup postgres 2>&1 > postgres.log &` instead of `pg_ctl start`? You could also use `pg_ctl -w start` to wait for proper server startup instead of `sleep 2`
9.
▲
by
AlterEgo20
12y ago
"modern development frameworks can handle data integrity stuff". Wrong. They cant. If you have 2+ applications working with the same db, there will be problems with data integrity that no "modern development framework" c
10.
▲
by
AlterEgo20
12y ago
"one view per user" - you can have a single VIEW, that filters rows based on user name ("owner_user_name" column in the base table). Or use some kind of mapping table for "user_name" <-> "table PK id
11.
▲
by
AlterEgo20
12y ago
There are `security_barrier` VIEWs. They give a "way of restricting a given connection/user to only rows with the right foreign key in a table". Still you have to create them all (not a simple task for complex DB scheme).
12.
▲
by
AlterEgo20
12y ago
Yep. Damn auto correct.
13.
▲
by
AlterEgo20
12y ago
Postgres has transactional DDL and DML. If anything fails - everything is rolled back.
14.
▲
by
AlterEgo20
12y ago
Hm. "rows actually not being written to the db during normal circumstances". A database that acts like /dev/null ? Like BLACKHOLE MySQL storage engine? I can not imagine a real use case, where it will be needed. If you a
15.
▲
by
AlterEgo20
12y ago
There is Asynchronous Commit feature in postgres, that allows you to gain performance by allowing postgres to lose some commited transactions. It can be controlled on transaction level and is exactly :"Go ahead, lose this. I don't
16.
▲
by
AlterEgo20
13y ago
phppgadmin?
17.
▲
by
AlterEgo20
13y ago
> 3) Better backup options. Already exist as "Continuous Archiving". Was done by third party tools in version 8, part of the core in 9. Details: http://www.postgresql.org/docs/current/static/conti
18.
▲
by
AlterEgo20
13y ago
Did you use default postgres configuration? By default postgres uses very small amount of RAM and is forced to store hash maps on disk -> very significant slowdown.