16. Module: Database Concepts with PostgreSQL¶
Relational Databases are an important part of any GIS system. In this module, you’ll learn about Relational Database Management System (RDBMS) concepts and you will use PostgreSQL to create a new database to store data, as well as learning about other typical RDBMS functions.
- 16.1. Lesson: Einführung in Datenbanken
- 16.1.1. Was ist eine Datenbank?
- 16.1.2. Tabellen
- 16.1.3. Spalten / Felder
- 16.1.4. Datensätze
- 16.1.5. Datentypen
- 16.1.6. Modellierung einer Adressendatenbank
- 16.1.7. Datenbanktheorie
- 16.1.8. Normalisierung
- 16.1.9. Try Yourself
- 16.1.10. Indexe
- 16.1.11. Sequenzen
- 16.1.12. Entity Relationship Diagramme
- 16.1.13. Einschränkungen, Primärschlüssel und Fremdschlüssel
- 16.1.14. Transaktionen
- 16.1.15. In Conclusion
- 16.1.16. What’s Next?
- 16.2. Lesson: Implementierung des Datenmodells
- 16.2.1. Installation von PostgreSQL
- 16.2.2. Hilfe
- 16.2.3. Erstellen eines Datenbankbenutzers
- 16.2.4. Überprüfen Sie das neue Konto:
- 16.2.5. Eine Datenbank erstellen
- 16.2.6. Start einer Datenbank shell Sitzung
- 16.2.7. Erstellen von Tabellen in SQL
- 16.2.8. Erstellen von Schlüsseln in SQL
- 16.2.9. Indexe mit SQL erstellen
- 16.2.10. Löschen von Tabellen mit SQL
- 16.2.11. Ein Wort zu pgAdmin III
- 16.2.12. In Conclusion
- 16.2.13. What’s Next?
- 16.3. Lesson: Daten in das Modell einfügen
- 16.4. Lesson: Abfragen
- 16.5. Lesson: Ansichten
- 16.6. Lesson: Regeln