Viewing 2 posts - 1 through 2 (of 2 total)
We have done a couple of different things to work around this behavior. You can force the proc to recompile like:
ALTER PROCEDURE [usp_testRecompile]
@begin bigint,
@end bigint,
with recompile
as
set nocount on
SELECT column1, column2,...
May 13, 2004 at 8:00 am
#506318
Are you running replication with this database? If you are, and the distribution agent has stopped for some reason, the log file will continue to grow until the distribution agent...
May 11, 2004 at 11:22 am
#506021