Module1_intro Flashcards

1
Q

Postgres is based on what database?

A

ingres database same as SQL Server

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

in what language is postgres written?

A

ANSI C

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

PostgreSQL works on which OS’s?

A

Windows, Linux , Unix and MAC

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

what is Multi-Version concurrency control?

A

Where user can see (old) data when a user is altering data but did not commit yet.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Employs host-based acces control

A

postgres knows where connections can come from.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Big data store formats

A

XML, JSON, PLB8, Hstore,non durable storage, full text indexing

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Foreign data wrappers

A

enable read/write integration with other database technologies (database link?)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

PostgresSQL connectors

A

JDBC, .NET, ECPG,LIBPQ, TCL, ODBC, NODE.JS, PYTHON, PErl DBI

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Maximum database size

A

unlimited

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Max table size

A

32TB

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Max Row Size

A

1.6 TB

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

MAX field size

A

1 GB

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Max rows per table

A

unlimited

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Max columns per table

A

250-1600 depending on column types

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

max indexes per table

A

unlimited and also multiple indexes on 1 column

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

what is the name of Table, Row, Column, Data Block, Page in Postgres

A

Table = relation,
Row = tuple,
Column = attribute,
Data Block = page 8kb default (ON DISK),
Page =buffer (IN MEMORY)