Answered step by step
Verified Expert Solution
Question
1 Approved Answer
In the script provided, which user is granted access to all databases and tables on the server? ` ` ` python DROP USER IF EXISTS
In the script provided, which user is granted access to all databases and tables on the server?
python
DROP USER IF EXISTS john;
DROP USER IF EXISTS jane;
DROP USER IF EXISTS jim;
DROP USER IF EXISTS joel;
CREATE USER john IDENTIFIED BY 'sesame';
CREATE USER jane IDENTIFIED BY 'sesame';
CREATE USER jim IDENTIFIED BY 'sesame';
CREATE USER joel IDENTIFIED BY 'sesame';
GRANT SELECT, INSERT, UPDATE, DELETE ON APVendors TO john;
GRANT SELECT, INSERT, UPDATE, DELETE ON APInvoices TO john;
GRANT SELECT ON APGeneralLedgerAccounts TO john;
GRANT SELECT ON APTerms TO john;
GRANT SELECT, INSERT, UPDATE, DELETE ON APVendors TO jane;
GRANT SELECT, INSERT, UPDATE, DELETE ON APInvoices TO jane;
GRANT SELECT ON APGeneralLedgerAccounts TO jane;
GRANT SELECT ON APTerms TO jane;
GRANT ALL PRIVILEGES ON TO jim;
GRANT GRANT OPTION ON TO jim;
GRANT USAGE ON TO joel;
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started