Hi,
I am trying to build a user database. The steps for creating a new user are:
1. Use gen_salt to create a salt.
2. Compute the hash based on the salt and password and store both the hash and
the salt into a new row.
The pl/pgsql would look like this:
CREATE OR REPLACE FUNCTION system.c
Hi,
We are trying build a multi tenant application and are debating which
approach we should take: (also my understanding is based on that pgbouncer
connection pool doesn’t work across different user/database pair):
1. For each tenant, we create a dedicated database and a dedicated user. Thi
(5000)?
--
Regards
Ryan
On August 1, 2016 at 10:30:48 PM, Venkata Balaji N (nag1...@gmail.com) wrote:
On Sun, Jul 31, 2016 at 12:07 PM, Silk Parrot wrote:
Hi,
We are trying build a multi tenant application and are debating which
approach we should take: (also my understanding is based on
Hi,
I am trying to model a social login application. The application can
support multiple login providers. I am thinking of creating a custom type for
each provider. e.g.
CREATE TYPE system.google_user AS (
email TEXT
);
CREATE TYPE system.facebook_user AS (
id TEXT
);
And having
Hi Hackers,
I am interested in writing a FDW. I setup my environment on
Windows. However, I am not able to figure out how to build FDW
successfully. Here is what I have done:
-Install the 9.2.2 by using EnterpriseDB installer. Add bin/ to the PATH
-I have followed the windows build instr