Database Systems - Week 1

    This week we learned about how a (DBMS) Database Management System works and how to create tables, insert data, delete data, and pull data using SELECT, DELETE, CREATE, and UPDATE commands.

    Databases are different from spreadsheets because the data are stored in tables that are relational and use key values to link to other tables.  Some other differences are that spreadsheets often times have formatted data and it is harder to access and manipulate.  Databases store data without formatting.  Also there are many different ways to access the data and only pull out the data you need within databases.

    There are many reasons to store data in a database rather than just in a file system.  You can pull data more easily by querying the database and find data much more quickly.  You can join tables to pull data together and organize it the way you would like.  Databases can also handle a lot of data and access it very quickly.  Also databases can be accessed by multiple people at the same time.

    Some of the things I would like to learn in this class in order to help me in my future career would be to learn the best practices for database setup and how to best implement indirect access to databases from while doing software development.  I want to end the class having a good comprehension of databases and how to interact with them.

Comments

Popular posts from this blog

Learning Journal Final Entry...

Software Engineering - Week 8

Computer Networks - Week 8