Viewing 4 posts - 1 through 4 (of 4 total)
and that answer was
set rowcount 10
select * from tableA
April 18, 2006 at 12:23 pm
#632937
Was having a Stupid Attack found my answer
April 18, 2006 at 12:22 pm
#632936
Thanks that worked like a charm. I appreciate the input
March 27, 2006 at 12:15 pm
#628993
Thanks for the suggestion
here is my script
alter procedure JFM_process
as
set nocount on
declare @mySPID int ,
@myPrint varchar(200)
declare curProcess cursor
for
select spid from master.dbo.sysprocesses
where loginame like...
March 24, 2006 at 2:29 pm
#628749