Viewing 12 posts - 1 through 12 (of 12 total)
I was getting many dealock error's myself and I finally found and old Trigger that was running. Drove me nuts but that was the problem. DO NOT USE Triggers unless...
October 25, 2005 at 11:56 am
I need the same thing, I hope there are some examples
December 27, 2004 at 7:10 pm
This may not be the best answer but I have a similar situation. I have a helpdesk table and a helpdesk history table. I have a trigger that inserts a...
December 21, 2004 at 5:29 pm
I can actually answer this one!!! I will post the script that will inventory all of your software one PC's specified!!
Jason
December 20, 2004 at 5:49 pm
That was it thank you so much!!! the finished trigger is below:
CREATE TRIGGER [HelpdeskNewUser] ON dbo.Helpdesk
AFTER INSERT
AS
if @@ROWCOUNT = 0
return
set nocount on
INSERT...
August 11, 2004 at 7:29 am
I don't know about your SP, but you should be able to query NT-Username by group if they belong to a common group for CaliforniaLocations VBScript would be like below:
On...
August 10, 2004 at 1:19 pm
it is VARCHAR and the above works fine i just need the AM/PM part as well
August 10, 2004 at 8:00 am
Dan that did the trick!!! I forgot that I need AM/PM too! But your help is greatly appreciated!!!
August 10, 2004 at 7:33 am
Dan I tried it again and it WORKED!!!
Dan your the man!!! Thank you so much!
July 2, 2004 at 6:51 am
I tried it that way too, that doesn't work either I know it has to be something small I am missing.
July 2, 2004 at 6:44 am
Dan,
That looks like exactly what I need, but I am getting a syntax error somewhere near the from clause. Below is the trigger.
********Update Trigger with auto increment
CREATE TRIGGER [TicketHUP] ON [dbo].[Ticket]...
July 2, 2004 at 6:33 am
Viewing 12 posts - 1 through 12 (of 12 total)