Person with positive thoughts and believes whatever happens is for the good but work hard for the best. I am a developer, designer, blogger, entrepreneur, camper and overall thinker. I work as a freelancer and can develop applications ranging from CMS to Enterprise Applications using Java and PHP. I am a professional with latest technologies like JEE6, HTML5, CSS3, JQuery, NoSQL Databases, Sql Databases - MySQL, Postgresql, etc.
Showing posts with label database. Show all posts
Showing posts with label database. Show all posts
Saturday, December 24, 2011
JPA Performance, Don't Ignore the Database
http://weblogs.java.net/blog/caroljmcdonald/archive/2009/08/28/jpa-performance-dont-ignore-database-0
Friday, December 16, 2011
Install Postgresql 9.1 in Ubuntu 9.04
first install python-software-properties:
sudo apt-get install python-software-properties
now add repository and update apt.
sudo add-apt-repository ppa:pitti/postgresql
sudo apt-get update
now instal postgresql
sudo apt-get install postgresql-9.1 libpq-dev
Now change the postgres user password (still running as root):
su postgres
psql -d postgres -U postgres
alter user postgres with password 'a';
\q
To install GUI client pgsql
sudo apt-get install pgadmin3
original article: http://bit.ly/sUFCgb
sudo apt-get install python-software-properties
now add repository and update apt.
sudo add-apt-repository ppa:pitti/postgresql
sudo apt-get update
now instal postgresql
sudo apt-get install postgresql-9.1 libpq-dev
Now change the postgres user password (still running as root):
su postgres
psql -d postgres -U postgres
alter user postgres with password 'a';
\q
To install GUI client pgsql
sudo apt-get install pgadmin3
original article: http://bit.ly/sUFCgb
Labels:
database,
postgresql,
ubuntu
Subscribe to:
Posts (Atom)