Git Product home page Git Product logo

w205-exercise2's Introduction

W205-exercise2

After running the instance and making sure that all the librarys are installed

Please run :

psql -U postgres

CREATE USER tali WITH PASSWORD 'pass'

CREATE DATABASE Tcount WITH OWNER tali ENCODING 'utf-8';

If you got an error for utf-8 Please run the following scripts:

First, we need to drop template1. Templates can’t be dropped, so we first modify it so t’s an ordinary database:

UPDATE pg_database SET datistemplate = FALSE WHERE datname = 'template1';

Now we can drop it:

DROP DATABASE template1;

Now its time to create database from template0, with a new default encoding:

CREATE DATABASE template1 WITH TEMPLATE = template0 ENCODING = 'UNICODE';

Now modify template1 so it’s actually a template:

UPDATE pg_database SET datistemplate = TRUE WHERE datname = 'template1';

Now switch to template1 and VACUUM FREEZE the template:

\c template1

VACUUM FREEZE;

Then create the DATABASE

CREATE DATABASE tcount WITH OWNER tali ENCODING 'utf-8';

go to tcount database

psql -U tali tcount

DELETE TABLE Tweetwordcount;

CREATE TABLE Tweetwordcount (id serial PRIMARY KEY, word TEXT      NOT NULL,count INT     NOT NULL);

exit from postgres or open a new terminal

make a projetc of EX2Twwetwordcount

sparse quick EX2Twwetwordcount

go to the directory of EX2Twwetwordcount

replace the topology and spouts and bolts

sparse run 

w205-exercise2's People

Contributors

taliehzargar avatar

Watchers

 avatar  avatar

Forkers

nelson-yao

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.