2008-06-232008-06-23T20:24:18ZY-m-d">June 23, 20082008-06-23T20:24:18ZF j, Y
To dump data from a postgreSQL database you can use the pg_dump command as follows pg_dump database > file.sql To restore that data you can execute the following command psql -d database -f file.sql -U db_username
Read the full article →
2008-03-202008-03-20T08:56:51ZY-m-d">March 20, 20082008-03-20T08:56:51ZF j, Y
Dilemma: I need to store restaurants in a database and then group certain restaurants together. For example: I have restaurants: 1,2,3,4,5. I want to say that 1 & 2 are in group Atlanta, 3,4 in group New York, and 5 in group San Francisco. I also want to create a group called East Coast that [...]
Read the full article →