So I started working through
Seven Databases In Seven Weeks. The first database introduced is PostgreSQL. With having zero experience with setting up or configuring PostgreSQL it took me a while to finally figure out how to install all of the modules/extensions that the tutorial requires. Below are the commands used to install the required modules PostgreSQL.
psql book -c "CREATE EXTENSION tablefunc"
psql book -c "CREATE EXTENSION dict_xsync"
psql book -c "CREATE EXTENSION fuzzystrmatch"
psql book -c "CREATE EXTENSION pg_trgm"
psql book -c "CREATE EXTENSION cube"
After that you should be good to go in working through the chapter.
0 comments:
Post a Comment