Re: [SPAM] AD(Active Directory) groups concepts in postgres

From: John R Pierce <pierce(at)hogranch(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: [SPAM] AD(Active Directory) groups concepts in postgres
Date: 2017-02-02 19:17:58
Message-ID: 15628109-8374-6aad-f78e-e5df304518a3@hogranch.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 2/2/2017 11:09 AM, PAWAN SHARMA wrote:
>
> 1: Create User
> 2:Create group
> 3:Alter Group Add/Remove User's......????????

create user user1;
create user user2;
create group group1;
grant group1 to user1, user2;

in fact in postgres, both users and groups are roles, the only
distinction is in how they are used. CREATE USER xxxx is exactly the
same as CREATE ROLE xxxx WITH LOGIN;

--
john r pierce, recycling bits in santa cruz

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message James Bullock 2017-02-02 20:10:53 Consider pgmodeler - Re: Data Modeling Tools - Version specific to Postgres
Previous Message Simon Riggs 2017-02-02 19:13:03 Re: Fastest simple key-value store, multiple writers, like Redis?