Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

reassign_owned(7) [suse man page]

REASSIGN 
OWNED(7) SQL Commands REASSIGN OWNED(7) NAME
REASSIGN OWNED - change the ownership of database objects owned by a database role SYNOPSIS
REASSIGN OWNED BY old_role [, ...] TO new_role DESCRIPTION
REASSIGN OWNED instructs the system to change the ownership of the database objects owned by one of the old_roles, to new_role. PARAMETERS
old_role The name of a role. The ownership of all the objects in the current database owned by this role will be reassigned to new_role. new_role The name of the role that will be made the new owner of the affected objects. NOTES
REASSIGN OWNED is often used to prepare for the removal of one or more roles. Because REASSIGN OWNED only affects the objects in the cur- rent database, it is usually necessary to execute this command in each database that contains objects owned by a role that is to be removed. The DROP OWNED [drop_owned(7)] command is an alternative that drops all the database objects owned by one or more roles. The REASSIGN OWNED command does not affect the privileges granted to the old_roles in objects that are not owned by them. Use DROP OWNED to revoke those privileges. COMPATIBILITY
The REASSIGN OWNED statement is a PostgreSQL extension. SEE ALSO
DROP OWNED [drop_owned(7)], DROP ROLE [drop_role(7)] SQL - Language Statements 2010-05-14 REASSIGN OWNED(7)

Check Out this Related Man Page

REASSIGN 
OWNED(7) PostgreSQL 9.2.7 Documentation REASSIGN OWNED(7) NAME
REASSIGN_OWNED - change the ownership of database objects owned by a database role SYNOPSIS
REASSIGN OWNED BY old_role [, ...] TO new_role DESCRIPTION
REASSIGN OWNED instructs the system to change the ownership of the database objects owned by one of the old_roles, to new_role. PARAMETERS
old_role The name of a role. The ownership of all the objects in the current database owned by this role will be reassigned to new_role. new_role The name of the role that will be made the new owner of the affected objects. NOTES
REASSIGN OWNED is often used to prepare for the removal of one or more roles. Because REASSIGN OWNED only affects the objects in the current database, it is usually necessary to execute this command in each database that contains objects owned by a role that is to be removed. REASSIGN OWNED requires privileges on both the source role(s) and the target role. The DROP OWNED (DROP_OWNED(7)) command is an alternative that drops all the database objects owned by one or more roles. Note also that DROP OWNED requires privileges only on the source role(s). The REASSIGN OWNED command does not affect the privileges granted to the old_roles in objects that are not owned by them. Use DROP OWNED to revoke those privileges. The REASSIGN OWNED command does not affect the ownership of any databases owned by the role. Use ALTER DATABASE (ALTER_DATABASE(7)) to reassign that ownership. COMPATIBILITY
The REASSIGN OWNED statement is a PostgreSQL extension. SEE ALSO
DROP OWNED (DROP_OWNED(7)), DROP ROLE (DROP_ROLE(7)), ALTER DATABASE (ALTER_DATABASE(7)) PostgreSQL 9.2.7 2014-02-17 REASSIGN OWNED(7)
Man Page

5 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How about finding out all objects by owner

Hi How about finding out all objects 1. owned by a particular owner / 2. or accessed by group id Thanks in advance Regards, HAA (3 Replies)
Discussion started by: HAA
3 Replies

2. UNIX for Dummies Questions & Answers

How to delete everything owned bya particular user?

Hi I am an Oracle DBA and I want to delete everything owned byOracle on the AIX server. What command would do that? (5 Replies)
Discussion started by: sarangishere
5 Replies

3. What is on Your Mind?

ADABAS anyone?

A recent job advertisement caught my attention, because I thought I was already broadly familiar with all the major OSes and database engines: Apparently (according to Wikipedia), ADABAS is an 'inverted list database... described as "Post-relational" but "Relational Like" in its characteristics'... (4 Replies)
Discussion started by: quadphonic
4 Replies

4. Shell Programming and Scripting

ignoring multiple patterns

Hi, Using grep how to ignore multiple patterns for example # multiple #installOption #role role #ROLE I want to ignore all that comes with # in a single command If I use grep -v \^\#"role" <filename> (2 Replies)
Discussion started by: dbashyam
2 Replies

5. Shell Programming and Scripting

Any Sample ksh script to validate all the database objects

Hi, I need a sample script to validate all the database objects like 1. table structure(columns, datatypes,key contraints if any) 2. synonyms 3. grants 4. indexes ....etc thank you! (2 Replies)
Discussion started by: srikanth_sagi
2 Replies