新博客http://www.cnblogs.com/zhjh256 欢迎访问
分类: 数据库开发技术
2008-11-19 09:27:00
3523 %FSTR does not have %VSTR access to %DBID.%TVMID.
Explanation: The user does not have the proper access rights to execute this request, or the owner of the requested view or macro does not have the proper access rights to underlying tables.
Generated By: SQL modules.
For Whom: End User.
Remedy: Obtain the necessary access rights.
原因,对于通过视图访问的表, 视图需要具有with grant option;
GRANT SELECT ON TABLE_DATABASE TO VIEW_DATABASE WITH GRANT OPTION;
即:GRANT SELECT ON BIC TO BICVIEW_A WITH GRANT OPTION;