Product: | PDFKeeper |
---|---|
Release Number: | 3.0.0 |
Release Date: | 201x/mm/dd |
Customer Support: | For more information or support, please visit website or send an email to rffrasca@gmail.com |
Title - Extracted from the PDF summary (InfoDictionary). This column is searchable.
To give the user the ability to upload documents, enter the following statements:
grant insert on docs to user_name;
grant select on docs_seq to user_name;
To give the user the ability to edit document notes, enter the following statement:
grant update on docs to user_name;
To give the user the ability to delete documents, enter the following statement:
grant delete on docs to user_name;
To prevent the user from uploading documents, enter the following statements:
revoke insert on docs from user_name;
revoke select on docs_seq from user_name;
To prevent the user from editing document notes, enter the following statement:
revoke update on docs from user_name;
To prevent the user from deleting documents, enter the following statement:
revoke delete on docs from user_name;