Viewing 15 posts - 17,251 through 17,265 (of 18,923 total)
Search on these boards..
sp4 awe bug should give you something like this :
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&messageid=182669
June 7, 2005 at 3:15 pm
What happened when you didn't reboot?
Find a problem a few months later when you have to reboot?
June 7, 2005 at 3:14 pm
As I said, this MIGHT be it, but I would expect to have this problem reoccuring once in a while, not just at the first execute after the proc is...
June 7, 2005 at 3:10 pm
hmm.. I don't see any reference to the deleted table in here :
UPDATE LogOn
SET LogoffDate = GETDATE()
Where
logon.scrnnbr = deleted.scrnnbr...
June 7, 2005 at 3:02 pm
Just a thaught, I've learned that temp tables can cause locks in tempdb when the procs are run... Maybe that would be something else to check but I doubt that...
June 7, 2005 at 3:00 pm
Here's an exemple of the join you need to write... Msg back if you need some help.
CREATE TRIGGER LogOn_Delete
on ACCESS
For
DELETE
as
SET NOCOUNT ON
UPDATE L
SET LogoffDate = GETDATE()
FROM LogOn L inner join...
June 7, 2005 at 2:58 pm
Well I'm out of ideas... maybe somebody else will figure it out.
Maybe just for luck, can you post the code of the stored procs?
June 7, 2005 at 2:46 pm
I'm trying to stop... but I like the users to have the right answer.. sorry about that
.
June 7, 2005 at 2:45 pm
What happens if you backup the log every 10 minutes?? maybe the spikes will be much shorter and it would cause any problems...
June 7, 2005 at 2:45 pm
Should this update have a join to relate the 2 tables??
Also I would make sur that this is not causing you the error
: EXEC master.dbo.xp_cmdshell 'copy "C:\Documents and Settings\Administrator\My Documents\Commander\AutoPrintPackingLabel.txt"...
June 7, 2005 at 2:43 pm
It's the first time I see us zip codes of more than 5 numbers. Is this a common occurance?
If not maybe you could ship that in its own colum...
June 7, 2005 at 2:37 pm
In sp_who2, scan the column BlkBy, anything different than "-" will mean that this process is blocked by the spid in that column.
You can see what that process is running...
June 7, 2005 at 2:33 pm
To finish Ron's thaught :
CREATE TRIGGER LogOn_Delete
on ACCESS
For
DELETE
as
SET NOCOUNT ON
UPDATE L
SET LogoffDate = GETDATE()
FROM LogOn L inner join Deleted D on L.scrnnbr = D.scrnnbr and L.userid =...
June 7, 2005 at 2:30 pm
Viewing 15 posts - 17,251 through 17,265 (of 18,923 total)