2

Questions:

  • Is there a way, using SQL, to identify how many views are in the database per user?

  • How can you authorize/deny users access to delete views created by another user?

RolandoMySQLDBA
  • 182,700
  • 33
  • 317
  • 520
neeraj
  • 260
  • 3
  • 8
  • You should check the database information_schema. 2. No, a user has DROP permissions or not. You can store permissions on a table-based level though.
  • – Konerak Jan 23 '12 at 07:18
  • I want to list the view from information_schema on user basis. Is it possible to get it through query. Can you provide such query 2. Okay.
  • –  Jan 23 '12 at 07:23