8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 20:43:02 +01:00

Fixed CORE-5009: remove obsolete readme on user management

This commit is contained in:
alexpeshkoff 2015-11-11 15:16:38 +00:00
parent ea5a949d1a
commit 2e7b9d255a

View File

@ -1,28 +0,0 @@
Issue:
======
New SQL operators to maintain user accounts.
Scope:
======
Affects firebird versions starting with 2.5.
Document author:
=================
Alex Peshkov (peshkoff@mail.ru)
Document date: Fri Dec 28 2007
==============
Added following DSQL operators:
CREATE USER name PASSWORD 'pass' [FIRSTNAME 'text'] [MIDDLENAME 'text'] [LASTNAME 'text'];
ALTER USER name [SET] [PASSWORD 'pass'] [FIRSTNAME 'text'] [MIDDLENAME 'text'] [LASTNAME 'text'];
DROP USER name;
At least one of PASSWORD / FIRSTNAME / MIDDLENAME / LASTNAME is required in ALTER USER.
Non-privileged (non-SYSDBA) user can use only ALTER USER operator with his own name
as name parameter in it.
WARNING! These operators do not support 2 phase commit - changes in secure DB
take place at first (prepare) phase, and there is no limbo state in it.