List of database table types and security permissions?
I can't find any list for the various table types and if possible the basic default 'good practice' security permis开发者_开发百科sions for tables types. I am referring to a complete list like this: http://www.databasejournal.com/features/oracle/article.php/3616476/Types-of-Tables-in-Oracle.htm
The above list has few general but not in depth like Lookup tables differ between user lookups, sytem lookups, temporary lookups etc..
That article is just talking about the different ways that tables might be used, e.g. "staging" tables versus "operational" tables.
The basic default "good practice" security permissions are the same no matter what type of table you're designing:
Grant only the minimum necessary privileges.
What more is there?
As for your table prefixes, this is very much a subjective question. There is no "right answer" except "whatever seems to cause least confusion for your developers and maintainers".
精彩评论