DBAWinnipeg
Programmer
OK i'm a SQL DBA by trade and I'm trying to do some optimization on a Peoplesoft CRM application. Alot of the long running queries look something similar to this
declare @P1 int
set @P1=180154885
declare @P2 int
set @P2=8
declare @P3 int
set @P3=1
declare @P4 int
set @P4=98
exec sp_cursorexecute 4974, @P1 output, @P2 output, @P3 output, @P4 output, 'Reloans', 'May 3 2004 7:54:31:000AM'
select @P1, @P2, @P3, @P4
Which doesn't give me anything I can use. What I'm hoping is that you bunch of experts (required suck up hehee ) would be able to help me figure out how to pick this apart so I can find out what this process is actually running.
Thanks in advance!!!
Colin in da 'Peg
declare @P1 int
set @P1=180154885
declare @P2 int
set @P2=8
declare @P3 int
set @P3=1
declare @P4 int
set @P4=98
exec sp_cursorexecute 4974, @P1 output, @P2 output, @P3 output, @P4 output, 'Reloans', 'May 3 2004 7:54:31:000AM'
select @P1, @P2, @P3, @P4
Which doesn't give me anything I can use. What I'm hoping is that you bunch of experts (required suck up hehee ) would be able to help me figure out how to pick this apart so I can find out what this process is actually running.
Thanks in advance!!!
Colin in da 'Peg