Re: create tablespaces and users

From: Pepe TD Vo <pepevo(at)yahoo(dot)com>
To: Shreeyansh Dba <shreeyansh2014(at)gmail(dot)com>
Cc: Pgsql-admin <pgsql-admin(at)postgresql(dot)org>
Subject: Re: create tablespaces and users
Date: 2019-01-14 16:34:26
Message-ID: 1912808677.18373278.1547483666303@mail.yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

what happened if I have 6 tablespaces from Oracle, should I create all tablespaces in Postgres as well?
thank you. Bach-Nga

No one in this world is pure and perfect.  If you avoid people for their mistakes you will be alone. So judge less, love and forgive more.To call him a dog hardly seems to do him justice though in as much as he had four legs, a tail, and barked, I admit he was, to all outward appearances. But to those who knew him well, he was a perfect gentleman (Hermione Gingold)
**Live simply **Love generously **Care deeply **Speak kindly.*** Genuinely rich *** Faithful talent *** Sharing success

On Monday, January 14, 2019 11:33 AM, Pepe TD Vo <pepevo(at)yahoo(dot)com> wrote:

yes, we want to migrate oracle to postgres with a new name of database in postgres and keep all the schemas/triggers as same as oracle, not migrate oracle to postgres using the default postgres database. Do I need to build a new database name with all the tablespaces?
CREATE TABLESPACE cidr_data LOCATION '/ssd1/postgresql/data';REATE TABLESPACE cidr_data LOCATION '/ssd1/postgresql/data';CREATE DATABASE "CIDR"    WITH     OWNER = "PSmasteruser"    ENCODING = 'UTF8'    LC_COLLATE = 'en_US.UTF-8'    LC_CTYPE = 'en_US.UTF-8'    TABLESPACE = cidr_data    CONNECTION LIMIT = -1;
you can keep the  schema / trigger same as oracle or transfer data in different schema by creating new as per your requirement whereas the public is the default schema in PostgreSQL.

Bach-Nga

No one in this world is pure and perfect.  If you avoid people for their mistakes you will be alone. So judge less, love and forgive more.To call him a dog hardly seems to do him justice though in as much as he had four legs, a tail, and barked, I admit he was, to all outward appearances. But to those who knew him well, he was a perfect gentleman (Hermione Gingold)
**Live simply **Love generously **Care deeply **Speak kindly.*** Genuinely rich *** Faithful talent *** Sharing success

On Monday, January 14, 2019 11:27 AM, Shreeyansh Dba <shreeyansh2014(at)gmail(dot)com> wrote:

Are you talking about migration..?? If yes, you can keep the  schema / trigger same as oracle or transfer data in different schema by creating new as per your requirement whereas the public is the default schema in PostgreSQL.

Thanks & Regards,
Shreeyansh DBA Team
www.shreeyansh.com

On Mon, Jan 14, 2019 at 9:39 PM Pepe TD Vo <pepevo(at)yahoo(dot)com> wrote:

thank you.  so after create the database, I need to create user and tablespace with each ownershipcreate user <user name>;create tablespace <name> location '<directory path>' owner <user name>;
what if I transfer the schemas/triggers, etc... from oracle to postgres, are they stayed the same or what?  What is the best way suggestion I need to do?
thank you.
v/r, Bach-Nga

No one in this world is pure and perfect.  If you avoid people for their mistakes you will be alone. So judge less, love and forgive more.To call him a dog hardly seems to do him justice though in as much as he had four legs, a tail, and barked, I admit he was, to all outward appearances. But to those who knew him well, he was a perfect gentleman (Hermione Gingold)
**Live simply **Love generously **Care deeply **Speak kindly.*** Genuinely rich *** Faithful talent *** Sharing success

On Monday, January 14, 2019 10:48 AM, Shreeyansh Dba <shreeyansh2014(at)gmail(dot)com> wrote:

In PostgreSQL tablespaces and user all cluster level objects. tablespace is just another name for a folder where the Postgres server process owner (typically “postgres” system user) is the owner and can write some files. 
In PostgreSQL All objects stored in default tablespace i.e. pg_default. You can create or alter databases in the tablespace and assign ownership for that tablespace.
Commands use for creating user and tablespace:create user <user name>;create tablespace <name> location '<directory path>' owner <user name>;
Thanks & Regards,
Shreeyansh DBA Team
www.shreeyansh.com

On Mon, Jan 14, 2019 at 8:55 PM Pepe TD Vo <pepevo(at)yahoo(dot)com> wrote:

Hello experts,
From oracle databases, I have few tablespaces and users created for that particular database.  How could I do the same for postgres? 
thank you. Bach-Nga

No one in this world is pure and perfect.  If you avoid people for their mistakes you will be alone. So judge less, love and forgive more.To call him a dog hardly seems to do him justice though in as much as he had four legs, a tail, and barked, I admit he was, to all outward appearances. But to those who knew him well, he was a perfect gentleman (Hermione Gingold)
**Live simply **Love generously **Care deeply **Speak kindly.*** Genuinely rich *** Faithful talent *** Sharing success

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Paul Carlucci 2019-01-15 00:50:18 Re: Delete Enhancement Request
Previous Message Pepe TD Vo 2019-01-14 16:33:01 Re: create tablespaces and users