Question
Explain Access Control Lists.

Answers

An ACL (Access Control List) is a list of permissions that is associated with an object. This list is the basis for MySQL server’s security model and it helps in troubleshooting problems like users not being able to connect.
MySQL keeps the ACLs (also called grant tables) cached in memory. When a user tries to authenticate or run a command, MySQL checks the authentication information and permissions against the ACLs, in a predetermined order.   Your Comment




More Software Questions..
What is the inputsplit in map reduce software?

What is software configuration management?

What Is Java Api For Xml-based Rpc (jax-rpc)?

How can you implement fine-grained auditing?

What is IBM’s simple explanation for Big Data’s four critical features?

What is static synchronized method in JDBC API? Give an example?

What does the NULLIF function do?

What happens if a start method is not invoked and the run method is directly invoked?

Should we override finalize method

what is the difference between mysql_fetch_array and mysql_fetch_object?

How will XML affect my document links?

Why to use Style Sheets?

What are Filters in MVC?

Can you explain Application layer in OSI model?

How to define new testplan attributes?

What are the minimum system requirements to run Photoshop? Is it possible to run Photoshop over linux?

Which oracle package is used to manage the oracle lock management services?

What is Latch Up? Explain Latch Up with cross section of a CMOS Inverter. How do you avoid Latch Up?

What is marker interface?

What types of partitioning are there for BW?



Search
Can you Answer!!
  • Q Is a Tsunami and a tidal wave the same thing?
  • Q How can you obtain the value of a method parameter in restful resource method?
  • Q Does the corba specification define any specific capabilities for a factory object?
  • Q Organisms that generate energy using light are known as
  • Q The criminal code applicable to which Indian territory is the Ranbir Penal Code?
  • Q What is the official language of Nagaland State?
  • Q What are the two ways to incorporate images into a oracle forms application?
  • Q In exception handling we have some NOT_FOUND and OTHERS. In inner layer we have some NOT_FOUND and OTHERS. While executing which one whether outer layer or inner layer will check first?
  • Q What is the short cut to filter the information based on the monetary value all most from all report screens in Tally ERP 9?
  • Q A gardener plants 100 meters towards east, next 100 meters towards north,next 100 meters towards west. 98 meters towards east, 96 meters towards north and 96 meters towards west, 94 towards west. 98 meters towards east, 96 meters towards north and 96 meters towards west, 94 meters towards south. and 94 meters towards east and so on. If a person walks between the trees what is the total distance travelled by him before he reaches the center.
  • Q #include #include void main() { char buffer[82]={80}; char *result; printf( "input line of text, followed by carriage return : "); result = cgets(buffer); printf("text=%s ",result); } (a) printf("length=%d",buffer[1]); (b) printf("length=%d",buffer[0]); (c) printf("length=%d",buffer[81]); (d) printf("length=%d",buffer[2]);