Answered step by step
Verified Expert Solution
Link Copied!

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 AP.Vendors TO john;
GRANT SELECT, INSERT, UPDATE, DELETE ON AP.Invoices TO john;
GRANT SELECT ON AP.General_Ledger_Accounts TO john;
GRANT SELECT ON AP.Terms TO john;
GRANT SELECT, INSERT, UPDATE, DELETE ON AP.Vendors TO jane;
GRANT SELECT, INSERT, UPDATE, DELETE ON AP.Invoices TO jane;
GRANT SELECT ON AP.General_Ledger_Accounts TO jane;
GRANT SELECT ON AP.Terms 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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Microsoft Visual Basic 2005 For Windows Mobile Web Office And Database Applications Comprehensive

Authors: Gary B. Shelly, Thomas J. Cashman, Corinne Hoisington

1st Edition

0619254823, 978-0619254827

More Books

Students also viewed these Databases questions

Question

Detailed note on the contributions of F.W.Taylor

Answered: 1 week ago

Question

6. Are my sources reliable?

Answered: 1 week ago

Question

5. Are my sources compelling?

Answered: 1 week ago