当前位置: 代码迷 >> ASP >> asp调用oracle存储过程返回的recordset结果集数据太大,显示时response缓存溢出解决思路
  详细解决方案

asp调用oracle存储过程返回的recordset结果集数据太大,显示时response缓存溢出解决思路

热度:418   发布时间:2013-03-26 21:10:04.0
asp调用oracle存储过程返回的recordset结果集数据太大,显示时response缓存溢出
RT

recordset结果集大概有上百万甚至上千万条记录,能用什么办法把它们显示出来么,来点具体的办法

------解决方案--------------------
分页显示
select top 100 * from table

增大服务器资源
我的异常网推荐解决方案:oracle存储过程,http://www.myexception.cn/oracle-develop/177537.html
  相关解决方案