Re: A guide about some topics of Associate Certification

From: Albe Laurenz <laurenz(dot)albe(at)wien(dot)gv(dot)at>
To: "Oscar Calderon *EXTERN*" <ocalderon(at)solucionesaplicativas(dot)com>, "pgsql-general(at)postgresql(dot)org" <pgsql-general(at)postgresql(dot)org>
Subject: Re: A guide about some topics of Associate Certification
Date: 2014-03-26 08:27:13
Message-ID: A737B7A37273E048B164557ADEF4A58B17CE85AD@ntex2010i.host.magwien.gv.at
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Oscar Calderon wrote:
> Everybody have a nice day. Well, finally the place where i currently work paid me a chance to take the
> Associate Certification exam and i'm reviewing some topics, specifically the topics that the exam
> covers (some of them are easy to me like psql, which i use almost everyday) but i have doubt about 2
> of the topics and i don't know if i already have the knowledgement about those topics.
>
> The topics are:
>
> * Postgres Data Dictionary: This is about information schema?

I am not sure because PostgreSQL does not use the term "data dictionary".
It *might* be this refers to the information_schema, but my bet is that
what is meant are the "system catalogs":
http://www.postgresql.org/docs/current/static/catalogs.html
Oracle uses the term "data dictionary" like that.

> * Moving Data: This is about migration? Or about moving tablespaces in the file system?

I'm also not sure.
Maybe it is refering to
ALTER TABLE table_name SET TABLESPACE new_tablespace
which will move the table to a different tablespace
(different from "ALTER DATABASE db_name SET TABLESPACE new_tablespace",
which will set the default for future tables).

Other things that move data around are commands like CLUSTER,
VACUUM FULL or forms of ALTER TABLE that rewrite the table,
but I don't know if I would headline them "moving data".

Yours,
Laurenz Albe

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Joek Hondius 2014-03-26 11:13:12 Solved: could not receive data from server, background writer proces exited with exit code 0
Previous Message Nithya Soman 2014-03-26 05:31:28 To monitor the number of PostgreSQL database connections?