Question

Write ACL statements to perform the following actions first step, add a new user : 'sheldon'...

Write ACL statements to perform the following actions

first step, add a new user : 'sheldon' and assign him this passwrod : 'Bazinga'

second step make 'sheldon' a DBA.

0 0
Add a comment Improve this question Transcribed image text
Answer #1
Step 1:CREATE USER sheldon
IDENTIFIED BY Bazinga;

Step 2:

Grant DBA priveledges

GRANT DBA TO sheldon;

Add a comment
Know the answer?
Add Answer to:
Write ACL statements to perform the following actions first step, add a new user : 'sheldon'...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Write a calculator that will give the user this menu options: 1)Add 2)Subtract 3)Multiply 4)Divide 5)Exit...

    Write a calculator that will give the user this menu options: 1)Add 2)Subtract 3)Multiply 4)Divide 5)Exit . Your program should continue asking until the user chooses 5. If user chooses to exit give a goodbye message. After the user selections options 1 - 4, prompt the user for two numbers. Perform the requested mathematical operation on those two numbers. Round the result to 1 decimal place. Please answer in python and make it simple. Please implement proper indentation, not just...

  • First box is to add in curved arrows that illustrate the first step of this mechanism....

    First box is to add in curved arrows that illustrate the first step of this mechanism. Second box is Draw the two intermediates that form and show curved arrows depicting the next step. Third is Draw the intermediate and the small molecule with which it will react. Show curved arrows depicting the next step. Fourth box is Draw the intermediate and the small molecule with which it will react. Show curved arrows depicting the next step. 05 Question (1 point)...

  • Write a program that performs the following: 1. Presents the user a menu where they choose...

    Write a program that performs the following: 1. Presents the user a menu where they choose between:              a. Add a new student to the class                           i. Prompts for first name, last name                           ii. If assignments already exist, ask user for new student’s scores to assignments              b. Assign grades for a new assignment                           i. If students already exist, prompt user with student name, ask them for score                           ii. Students created after assignment will need to...

  • Please use Pyton 3 19. Write a for-loop to perform each of the following actions Print...

    Please use Pyton 3 19. Write a for-loop to perform each of the following actions Print out every item in a 2D list Print out the first letter in the first item in a list, 2nd letter in the 2nd item in the list, 3rd letter in the 3rd item, etc Create a 4x4 2D list that counts up from 1-16 . . o Writ ach ofthese fnetions and correctlv use them in mainQ:

  • Write a C program as follows: Single source code file Requests the user to input two...

    Write a C program as follows: Single source code file Requests the user to input two integer numbers Requests the user to make a choice between 0 (add), 1 (subtract), or 2 (multiply) Declares three separate functions Uses a pointer to these three functions to perform the requested action Outputs the result to the screen Submit your program source code file to this assignment. Sample Output Enter first integer number: 15 Enter second integer number: 10 Enter Choice: 0 for...

  • rite statements to perform the following: (Hint: You may use combined assignment operators!) a. Add 9...

    rite statements to perform the following: (Hint: You may use combined assignment operators!) a. Add 9 to apples and store the result in apples. b. Divide peaches by 13 and store the result in peaches. c. Subtract 17 from oranges and store the result in oranges. d. Multiply payRate by 1.5 and store the result in payRate. 9. Write statements to perform the following operations: Declare two variables p and q. Subtract 250 from p and store the result in...

  • Please make a JAVA program for the following using switch structures Write a program that simulates...

    Please make a JAVA program for the following using switch structures Write a program that simulates a simple Calculator program. The program will display menu choices to the user to Add, Subtract, Multiply and Divide. The program will prompt the user to make a selection from the choices and get their choice into the program. The program will use a nested if….else (selection control structure) to determine the user’s menu choice. Prompt the user to enter two numbers, perform the...

  • Write a brief report. You should add to your code a solution to the following user...

    Write a brief report. You should add to your code a solution to the following user story: Make a random path generator that creates a path that goes through all the cities exactly once. For example, a random path might be 4, 2, 1, 3. Turn in your code, as well as some console output showing your code is working.

  • using visual studio 2) For each of the following, write C++ statements that perform the specified...

    using visual studio 2) For each of the following, write C++ statements that perform the specified task.. (Ref: classwork named pointer2) a) Declare a built-in array of type unsigned int called values with five elements, and initialize the elements to the even integers from 2 to 10. b) Declare a pointer vPtr that points to a variable of type unsigned int. c) Write two separate statements that assign the starting address of array values to pointer variable vPtr. d) Use...

  • Instructions We're going to create a program which will allow the user to add values to a list, p...

    Instructions We're going to create a program which will allow the user to add values to a list, print the values, and print the sum of all the values. Part of this program will be a simple user interface. 1. In the Program class, add a static list of doubles: private statie List<double> _values new List<double>) this is the list of doubles well be working with in the program. 2. Add ReadInteger (string prompt) , and ReadDouble(string prompt) to the...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT