[20130319]schema下建表权限

问题描述:

     因为业务上的需要所以要对某些用户赋予表创建权限,当然不能让他瞎建。
     所以把他控制在自己的schema下。

解决方法:

     grant create table to user
     grant control on schema::name to user

     这样用户就有了schema 建表的权限了。

原文地址:https://www.cnblogs.com/Amaranthus/p/2968732.html