标题: 关于用户权限设定的问题 [打印本页] 作者: wupeng 时间: 2004-07-14 20:25
提示: 作者被禁止或删除 内容自动屏蔽作者: wupeng 时间: 2004-07-14 20:49
提示: 作者被禁止或删除 内容自动屏蔽作者: wupeng 时间: 2004-07-14 21:08
提示: 作者被禁止或删除 内容自动屏蔽作者: czw1413_cn 时间: 2004-07-15 08:55
提示: 作者被禁止或删除 内容自动屏蔽作者: amiescort 时间: 2004-07-15 09:44 标题: 关于用户权限设定的问题 There is a sample:
GRANT DELETE, SELECT, UPDATE (customer_num, fname, lname)
ON customer TO mary, john作者: mailtojacky 时间: 2004-07-15 10:17 标题: 关于用户权限设定的问题 首先要对用户
grant connect to username
然后
revoke all on tablename from "public";
最后
grant select on tablename to username as 授权用户作者: 大梦 时间: 2004-07-15 10:18 标题: 关于用户权限设定的问题 grant connect to user
user将拥有所有表的权限,因为在grant connect to user的同时,informix已经把all table to public了~~~
grant connect to user可以revoke表的权限from public