Very easy, just add a repository and run apt-get install postresql-9.0

Dctr Watson explains how:
Very easy, just add a repository and run apt-get install postresql-9.0

Dctr Watson explains how:
I use the virtual private network software, known as OpenVPN, to connect from my laptops to my home every day. There are several things I’ve noticed:
It is also a very popular port for naughty people trying to see what you have on your network. If you’re not running a web server, set it to port 80 or 443 (TCP) as these ports are normally accessible. If these don’t work, try other ones like 21 (TCP) which is normally used for a FTP server. You will likely see better throughput on some ports than on others due to ‘traffic shaping’, aka giving network priority to certain applications.
On the sybase-l mailing list,
Jeff Tallman replied to a question on how to avoid unnecessary reorgs. He graciously agreed to let me post his response here
You can avoid most (if not all) of the reorgs by doing:
- setting the exp_row_size to something that covers about 90% of the space each row takes up
- changing enable housekeeper GC to a 4 or 5
Both of these are a *MUST* do for DOL (datapages or datarows). See manuals on ‘enable housekeeper GC’ for correct setting of 4 or 5 (refers to whether deletes are batch or OLTP).
You can also watch for housekeeper overflows in monEngine/monOpenObjectActivity……and if you see any HKGC pending – wait a few before shutting down.
Jeff wrote up an excellent article, Locking Redux – APL vs. DOL and Tuning, that goes into detail why this is the case.
It is really really easy to change the default NLS_DATE_FORMAT setting but to be honest, you should set it at a session level IMHO.
We basically just need
to run “ALTER SYSTEM SET NLS_DATE_FORMAT=’YYYY-MM-DD’ SCOPE=SPFILE” as a user with sysdba privileges. If you started the Oracle instance without a spfile (it should be located at $ORACLE_HOME/dbs/spfile[instance name].ora), you will receive the ORA-32001 error.
Just create a new spfile, restart:
INSTANCE_NAME
—————-
UAT2
SQL> CREATE spfile=‘/oracle/10g/dbs/spfileUAT2.ora’ FROM pfile=‘/oracle/10g/dbs/initUAT2.ora’;
*restart*
INSTANCE_NAME
—————-
UAT2
SQL> ALTER SYSTEM SET NLS_DATE_FORMAT=‘YYYY-MM-DD’ SCOPE=SPFILE;
System altered.
*restart*
VALUE
—————————————————————-
YYYY-MM-DD
That’s it.