Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

reassign_owned(7) [centos 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)

Check Out this Related Man Page

DROP 
ROLE(7) SQL Commands DROP ROLE(7) NAME
DROP ROLE - remove a database role SYNOPSIS
DROP ROLE [ IF EXISTS ] name [, ...] DESCRIPTION
DROP ROLE removes the specified role(s). To drop a superuser role, you must be a superuser yourself; to drop non-superuser roles, you must have CREATEROLE privilege. A role cannot be removed if it is still referenced in any database of the cluster; an error will be raised if so. Before dropping the role, you must drop all the objects it owns (or reassign their ownership) and revoke any privileges the role has been granted. The REASSIGN OWNED [reassign_owned(7)] and DROP OWNED [drop_owned(7)] commands can be useful for this purpose. However, it is not necessary to remove role memberships involving the role; DROP ROLE automatically revokes any memberships of the target role in other roles, and of other roles in the target role. The other roles are not dropped nor otherwise affected. PARAMETERS
IF EXISTS Do not throw an error if the role does not exist. A notice is issued in this case. name The name of the role to remove. NOTES
PostgreSQL includes a program dropuser [dropuser(1)] that has the same functionality as this command (in fact, it calls this command) but can be run from the command shell. EXAMPLES
To drop a role: DROP ROLE jonathan; COMPATIBILITY
The SQL standard defines DROP ROLE, but it allows only one role to be dropped at a time, and it specifies different privilege requirements than PostgreSQL uses. SEE ALSO
CREATE ROLE [create_role(7)], ALTER ROLE [alter_role(7)], SET ROLE [set_role(7)] SQL - Language Statements 2010-05-14 DROP ROLE(7)
Man Page

11 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

help regarding file ownership

hi friends,i have a doubt,if there is a file for which i have only read access then is there any way to execute it,plz reply soon (5 Replies)
Discussion started by: amit007
5 Replies

2. HP-UX

HP-UX 11i Security Containment

Has there been much success (or failure for that matter) around implementing these three core techbologies? Has it delievered what it has promised (fine grain privileges, compartments, and role based access control)? I haven't found very much commentary here or around the Internet on the... (0 Replies)
Discussion started by: jon ford
0 Replies

3. 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

4. UNIX for Dummies Questions & Answers

change owner of a file

im running into changing the ownership of a file. I am trying to change the ownership to "system", but it doesn't want to work. I sudo chown system /preferences.plist Password: chown: system: Invalid argument is there a way to read the ownership of a file, something like read chown... (3 Replies)
Discussion started by: CBarraford
3 Replies

5. 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

6. AIX

AIX Contract role

(0 Replies)
Discussion started by: AIX Recruiter
0 Replies

7. UNIX for Advanced & Expert Users

UNIX starter role?

(1 Reply)
Discussion started by: B_Jay
1 Replies

8. Shell Programming and Scripting

change multiple ownership

Good afternoon, Sir's, i owuld like to search for some advice, whats the fastest way to change multiple files ownership. For HostnameA will be their basis, for what ever files and permissions that hostnameA has, it should replicate the permissions and ownership to hostname B. $hostname... (1 Reply)
Discussion started by: invinzin21
1 Replies

9. UNIX for Dummies Questions & Answers

changing ownership?

how would i change ownership of file1 so the user NATE gets ownership of the file? (1 Reply)
Discussion started by: trob
1 Replies

10. UNIX for Dummies Questions & Answers

What is the need of ownership to a file/dir?

Hi, I understand the permissions of a file/directory. I just needs to understand how ownership works. Can some one help me on this please? Thanks in advance. (6 Replies)
Discussion started by: praveen_b744
6 Replies

11. 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