Fontos
A fordítás közösségi munka eredménye, amelyhez itt tudsz csatlakozni. Ennek az oldalnak eddig a 66.67% részét fordítottuk le.
15. Module: Database Concepts with PostgreSQL
A relációs adatbázisok fontos részei bármely térinformatikai rendszernek. Ebben a modulban a relációs adatbáziskezelő rendszerekről (RDBMS) fogalmakról fogunk tanulni és PostgreSQL használatával létrehozunk egy új adatbázist adattárolásra, de hallani fog más tipikus RDBMS funkciókról is.
- 15.1. Lesson: Introduction to Databases
- 15.1.1. What is a Database?
- 15.1.2. Tables
- 15.1.3. Columns / Fields
- 15.1.4. Records
- 15.1.5. Datatypes
- 15.1.6. Modelling an Address Database
- 15.1.7. Database Theory
- 15.1.8. Normalisation
- 15.1.9. Try Yourself: ★☆☆
- 15.1.10. Indexes
- 15.1.11. Sequences
- 15.1.12. Entity Relationship Diagramming
- 15.1.13. Constraints, Primary Keys and Foreign Keys
- 15.1.14. Transactions
- 15.1.15. In Conclusion
- 15.1.16. What’s Next?
- 15.2. Lesson: Implementing the Data Model
- 15.2.1. Install PostgreSQL
- 15.2.2. Súgó
- 15.2.3. Create a database user
- 15.2.4. Verify the new account
- 15.2.5. Create a database
- 15.2.6. Starting a database shell session
- 15.2.7. Make Tables in SQL
- 15.2.8. Create Keys in SQL
- 15.2.9. Create Indexes in SQL
- 15.2.10. Dropping Tables in SQL
- 15.2.11. A word on pgAdmin III
- 15.2.12. In Conclusion
- 15.2.13. What’s Next?
- 15.3. Lesson: Adding Data to the Model
- 15.4. Lesson: Queries
- 15.5. Lesson: Views
- 15.6. Lesson: Rules