Storage Limitations of Databases

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/19

flashcard set

Earn XP

Description and Tags

These flashcards review key points about overall database size limits, data-type limits, table limits, storage planning considerations, and the importance of monitoring disk space from the lecture on storage limitations.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

20 Terms

1
New cards

What are the three V’s affected by storage decisions when selecting a DBMS?

Velocity, Volume, and Variety

2
New cards

Why is storage capacity a key factor when choosing a DBMS?

Because different DBMSs have different storage offerings and limits, which impact performance, cost, reliability, and scalability.

3
New cards

Which popular open-source DBMSs have effectively unlimited database size, constrained only by hardware?

PostgreSQL, MariaDB, and MySQL

4
New cards

Name two commercial DBMSs that impose maximum caps on overall database size.

Oracle and Microsoft SQL Server (also SQLite).

5
New cards

How large can a Microsoft SQL Server Express database grow?

Up to 10 GB.

6
New cards

What is the size limit of Oracle’s free edition database?

12 GB.

7
New cards

What is the maximum size of a SQL Server Enterprise Edition database?

524 petabytes (PB).

8
New cards

How large can an Oracle Enterprise Edition database be?

Over 2,047 PB.

9
New cards

List three key factors (other than size) to evaluate when planning database storage.

Compliance & security, cost, data access patterns (others include redundancy, scalability, integration with infrastructure).

10
New cards

Give two symptoms that indicate a database server is running low on disk space.

Performance degradation and a sharp increase in failed transactions (others: application errors, unpredictable behavior, data corruption).

11
New cards

What is the ANSI SQL maximum size for VARCHAR data?

ANSI SQL does not define a limit.

12
New cards

What is the VARCHAR size limit in MySQL?

65,535 characters.

13
New cards

How large can a VARCHAR be in SQL Server?

Up to 2 GB.

14
New cards

State the VARCHAR limit in Oracle and PostgreSQL, respectively.

Oracle: 32,767 characters; PostgreSQL: 1 GB.

15
New cards

What is the CLOB size limit in MySQL?

216 bytes (per the lesson’s figure).

16
New cards

What is the CLOB limit in SQL Server?

2^31 − 1 bytes (~2 GB).

17
New cards

How large can a CLOB be in Oracle and PostgreSQL?

Oracle: 4 GB – 1 byte; PostgreSQL: 1 GB.

18
New cards

Which DBMS allows an unlimited table size and which limits MySQL tables to 256 TB?

Teradata allows unlimited table size; MySQL limits tables to 256 TB.

19
New cards

In SQL Server, what is the maximum table size?

A table can be as large as the database itself (up to 524,272 TB).

20
New cards

Why is monitoring available disk space critical for databases?

It prevents data corruption, transaction failures, and performance issues by alerting administrators before storage is exhausted.