Featured post
sql server - Getting the ROWCOUNT value (not @@ROWCOUNT) in SQL -
is there way see rowcount set to?
the component used call stored procedure has option limit how many rows returned, apparently setting rowcount. 1 stored procedure returns single aggregated row, intermediate queries return more limit , getting truncated. function of generic , used call other stored procedures; other procedures may need limit.
right setting rowcount large number @ top of stored procedure , setting (hard-coded) regular limit before return result. don't maintain component calls stored procedures may not know if returned row limit changed. i'd set local variable current rowcount value, , set @ end. there way see rowcount set to?
if query sys.dm_exec_sessions dmv return number of rows returned on session point (should of course same @@rowcount).
select row_count sys.dm_exec_sessions session_id = @@spid
you might able play around see if can use it
right setting rowcount large number @ top of stored procedure
you can set rowcount 0
, in case return rows
- Get link
- X
- Other Apps
Comments
Post a Comment