Skip to content

Commit 63a0896

Browse files
committed
Doc: Update name of db across all database articles
1 parent be49ec4 commit 63a0896

6 files changed

+11
-7
lines changed

databases/00_postgresql_overview.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Welcome to the PostgreSQL tutorial! This tutorial will walk you through the basi
55
For reference, these are the topics we will be covering in the entire database tutorial:
66

77
1. [Postgres Overview](/databases/00_postgresql_overview.md) (this article)
8-
2. [Install Postgres](/databases/01_install_postgresql.md)
8+
2. [Install PostgreSQL](/databases/01_install_postgresql.md)
99
3. [Access PostgreSQL Using PSQL](/databases/access_postgresql/psql.md)
1010
4. [Access PostgreSQL Using DBeaver](/databases/access_postgresql/dbeaver.md)
1111
5. [How to Secure PostgreSQL](/databases/02_how_to_secure_postgresql.md)

databases/01_install_postgresql.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Now that you have a brief understanding of what a database is, you know the hist
55
For reference, these are the topics we will be covering in the entire database tutorial:
66

77
1. [Postgres Overview](/databases/00_postgresql_overview.md)
8-
2. [Install Postgres](/databases/01_install_postgresql.md) (this article)
8+
2. [Install PostgreSQL](/databases/01_install_postgresql.md)(this article)
99
3. [Access PostgreSQL Using PSQL](/databases/access_postgresql/psql.md)
1010
4. [Access PostgreSQL Using DBeaver](/databases/access_postgresql/dbeaver.md)
1111
5. [How to Secure PostgreSQL](/databases/02_how_to_secure_postgresql.md)

databases/02_how_to_secure_postgresql.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Data safety is at the center of all concerns a company may have. The impact of a
55
For reference, these are the topics we will be covering in the entire database tutorial:
66

77
1. [Postgres Overview](/databases/00_postgresql_overview.md)
8-
2. [Install Postgres](/databases/01_install_postgresql.md)
8+
2. [Install PostgreSQL](/databases/01_install_postgresql.md)
99
3. [Access PostgreSQL Using PSQL](/databases/access_postgresql/psql.md)
1010
4. [Access PostgreSQL Using DBeaver](/databases/access_postgresql/dbeaver.md)
1111
5. [How to Secure PostgreSQL](/databases/02_how_to_secure_postgresql.md) (this article)

databases/access_postgresql/dbeaver.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Database Management Tools
22

3-
These are software applications that help users to manage SQL server infrastructure. They allow users to configure, monitor, manage and administer SQL servers and databases. As a web developer or as a database administrator, you will be dealing with SQL statements to explore the database for various reasons:
3+
There are multiple ways you can access the PostgreSQL database. I will focus on two ways: (1) [Using the `psql` utility tool](/databases/access_postgresql/psql.md) and (2) [Using a database management tool](/databases/access_postgresql/dbeaver.md). This article is dedicated to learning how to use DBeaver, a database management tool.
4+
5+
Database management tools are software applications that help users to manage SQL server infrastructure. They allow users to configure, monitor, manage and administer SQL servers and databases. As a web developer or as a database administrator, you will be dealing with SQL statements to explore the database for various reasons:
46

57
- Querying the database
68
- Build and execute SQL code
@@ -13,7 +15,7 @@ It is therefore important to choose and have the right tool that can speed up da
1315
For reference, these are the topics we will be covering in the entire database tutorial:
1416

1517
1. [Postgres Overview](/databases/00_postgresql_overview.md)
16-
2. [Install Postgres](/databases/01_install_postgresql.md)
18+
2. [Install PostgreSQL](/databases/01_install_postgresql.md)
1719
3. [Access PostgreSQL Using PSQL](/databases/access_postgresql/psql.md)
1820
4. [Access PostgreSQL Using DBeaver](/databases/access_postgresql/dbeaver.md) (this article)
1921
5. [How to Secure PostgreSQL](/databases/02_how_to_secure_postgresql.md)

databases/access_postgresql/psql.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,15 @@
22

33
## Overview
44

5+
There are multiple ways you can access the PostgreSQL database. I will focus on two ways: (1) [Using the `psql` utility tool](/databases/access_postgresql/psql.md) and (2) [Using a database management tool](/databases/access_postgresql/dbeaver.md). This article is dedicated to learning how to use the `psql` utility tool.
6+
57
**Psql** is a terminal-based front-end for PostgreSQL. It allows you to issue queries interactively. Once you have connected to the PostgreSQL server, you can begin querying immediately. Besides basic querries, you can also issue certain commands such as `\d` to list all tables in the database, `\c dbname` to connect to another database and `\q` to quit from the postgres shell. You can access a text editor inside `psql` using `\e`. Run `\?` to see what other commands are available for use.
68

79

810
For reference, these are the topics we will be covering in the entire database tutorial:
911

1012
1. [Postgres Overview](/databases/00_postgresql_overview.md)
11-
2. [Install Postgres](/databases/01_install_postgresql.md)
13+
2. [Install PostgreSQL](/databases/01_install_postgresql.md)
1214
3. [Access PostgreSQL Using PSQL](/databases/access_postgresql/psql.md) (this article)
1315
4. [Access PostgreSQL Using DBeaver](/databases/access_postgresql/dbeaver.md)
1416
5. [How to Secure PostgreSQL](/databases/02_how_to_secure_postgresql.md)

databases/project_configure_postgres_in_flask.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ You have now decided to use the PostgreSQL database to manage your data. Given a
55
For reference, these are the topics you can review in the PostgreSQL database series:
66

77
1. [Postgres Overview](/databases/00_postgresql_overview.md)
8-
2. [Install Postgres](/databases/01_install_postgresql.md)
8+
2. [Install PostgreSQL](/databases/01_install_postgresql.md)
99
3. [Access PostgreSQL Using PSQL](/databases/access_postgresql/psql.md)
1010
4. [Access PostgreSQL Using DBeaver](/databases/access_postgresql/dbeaver.md)
1111
5. [How to Secure PostgreSQL](/databases/02_how_to_secure_postgresql.md)

0 commit comments

Comments
 (0)