CREATE TABLE "FunctionPrivileges"
(
"Name" VARCHAR(40) COLLATE "ANSI_CI",
"Privilege" VARCHAR(15) COLLATE "ANSI_CI",
"GrantedTo" VARCHAR(40) COLLATE "ANSI_CI",
"GrantedBy" VARCHAR(40) COLLATE "ANSI_CI"
)
CREATE INDEX "Name" ON "FunctionPrivileges"
("Name")
CREATE INDEX "GrantedTo" ON "FunctionPrivileges"
("GrantedTo")
DescriptionThis table contains the function privileges assigned to the users in an ElevateDB configuration for the functions contained within an ElevateDB database. You can find out more about users and privileges in the User Security topic.