Profile Creation

Started by Brajendra Pratap Singhover 5 years ago6 messagesgeneral
Jump to latest
#1Brajendra Pratap Singh
singh.bpratap766@gmail.com

Hi All,

How can we create a user profile in open postgresql db?

Thanks,
Singh

#2Adrian Klaver
adrian.klaver@aklaver.com
In reply to: Brajendra Pratap Singh (#1)
Re: Profile Creation

On 10/2/20 1:40 PM, Brajendra Pratap Singh wrote:

Hi All,

How can we create a user profile in open postgresql db?

You are going to need to be more specific about what you consider a user
profile to be.

Thanks,
Singh

--
Adrian Klaver
adrian.klaver@aklaver.com

#3David G. Johnston
david.g.johnston@gmail.com
In reply to: Brajendra Pratap Singh (#1)
Re: Profile Creation

On Fri, Oct 2, 2020 at 1:43 PM Brajendra Pratap Singh <
singh.bpratap766@gmail.com> wrote:

How can we create a user profile in open postgresql db?

?

CREATE TABLE user_profile (...);
INSERT INTO user_profile VALUES (...);

David J.

#4Brajendra Pratap Singh
singh.bpratap766@gmail.com
In reply to: Adrian Klaver (#2)
Re: Profile Creation

Hi Adrian,

Here the user profile means which contains the following functionality same
as in EDB profile contains like password_verify_function,
password_life_time, password_lock_time etc.

Thanks,
Singh

On Sat, 3 Oct, 2020, 2:14 AM Adrian Klaver, <adrian.klaver@aklaver.com>
wrote:

Show quoted text

On 10/2/20 1:40 PM, Brajendra Pratap Singh wrote:

Hi All,

How can we create a user profile in open postgresql db?

You are going to need to be more specific about what you consider a user
profile to be.

Thanks,
Singh

--
Adrian Klaver
adrian.klaver@aklaver.com

#5Rob Sargent
robjsargent@gmail.com
In reply to: David G. Johnston (#3)
Re: Profile Creation

On 10/2/20 2:45 PM, David G. Johnston wrote:

On Fri, Oct 2, 2020 at 1:43 PM Brajendra Pratap Singh
<singh.bpratap766@gmail.com <mailto:singh.bpratap766@gmail.com>> wrote:

How can we create a user profile in open postgresql db?

?

CREATE TABLE user_profile (...);
INSERT INTO user_profile VALUES (...);

David J.

I'm betting on
CREATE ROLE rolename WITH option

https://www.postgresql.org/docs/13/sql-createrole.html

#6Adrian Klaver
adrian.klaver@aklaver.com
In reply to: Brajendra Pratap Singh (#4)
Re: Profile Creation

On 10/2/20 1:56 PM, Brajendra Pratap Singh wrote:

Hi Adrian,

Here the user profile means which contains the following functionality
same as in  EDB profile contains like password_verify_function,
password_life_time, password_lock_time etc.

The below then?:

https://www.enterprisedb.com/edb-docs/d/edb-postgres-advanced-server/user-guides/database-compatibility-for-oracle-developers-guide/9.5/Database_Compatibility_for_Oracle_Developers_Guide.1.073.html

If that is the case, there is no built in mechanism for that in the
community edition. It would need to be built by you.

Thanks,
Singh

On Sat, 3 Oct, 2020, 2:14 AM Adrian Klaver, <adrian.klaver@aklaver.com
<mailto:adrian.klaver@aklaver.com>> wrote:

On 10/2/20 1:40 PM, Brajendra Pratap Singh wrote:

Hi All,

How can we create a user profile in open postgresql db?

You are going to need to be more specific about what you consider a
user
profile to be.

Thanks,
Singh

--
Adrian Klaver
adrian.klaver@aklaver.com <mailto:adrian.klaver@aklaver.com>

--
Adrian Klaver
adrian.klaver@aklaver.com