您的位置:首页 > 运维架构 > 网站架构

只返回DB架构信息

2005-10-14 13:43 176 查看
SET NO_BROWSETABLE ON is an undocumented option performed for Remote Data Service (RDS) ActiveX Data Connector (ADC) connections to SQL Server. Enabling this option makes every SELECT statement act as though FOR BROWSE had been appended to the statement, but bypasses the temporary table that FOR BROWSE normally pipes the results through. The net effect is to add keys and timestamps to the query as hidden output columns so the client can update specific rows (updateable cursors) without separate trips to the server to pick up the meta-data and munging the query to get the appropriate columns.

SET FMTONLY OFF; SET NO_BROWSETABLE ON; SET FMTONLY ON;select * from sb_channel SET FMTONLY OFF; SET NO_BROWSETABLE OFF;
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: