Reputation: 95
I want to GRANT some privileges to a particular user in Firebird like we can do it in MySql as shown below.
CREATE USER 'user123'@'localhost' IDENTIFIED BY 'user123pass';
GRANT CREATE, SELECT, INSERT, DELETE, DROP, UPDATE ON MyTestDb.* TO 'user123'@'localhost';
Is possible in Firebird?
Upvotes: 1
Views: 5419
Reputation: 109264
Unfortunately, this is not possible. You will need to grant privileges per table or view explicitly and individually.
See also the GRANT
syntax in the Firebird 2.5 Language Reference and the Firebird 3 release notes
Upvotes: 2