Search Results

1
vote

Does Postgres have something similar to Oracle’s Virtual Private Databases?

You could do something like it with views/rules of the data. Also, 8.4 has column level permissions iirc. …
0
votes

Web devs who have made the switch from MySQL, what postgresql features could you now not do without?

Stored Procedures / UDFs in Perl Asynchronous Database Access in libpq Schemas and databases, not databases pretending to be schemas GIN and GIST …
2
votes

Implementing cross-thread/process queues in Perl

In PostgreSQL you could use the NOTIFY/LISTEN combination, would need only a wait on the PG connection socket after running LISTEN(s). …