Viewing 15 posts - 511 through 525 (of 2,486 total)
All
Fixed this by using a simple trigger.
CREATE TRIGGER trg_codes ON dbo.codes FOR UPDATE, INSERT AS IF EXISTS ( SELECT ext.[ID] FROM inserted ins INNER JOIN [dbo].[codes] ext ON ext.[Code] = ins.[Code] AND ext.[EMail] = ins.[EMail] AND ext.[ID]...
December 15, 2005 at 3:09 pm
Yes I know why.
One of the connections in the package you're running can't access it's specified server. The big give away the message "[ DBNETLIB ] [ ConnectionOpen ( Connect ( )...
December 14, 2005 at 5:35 pm
It won't fail ... that is the issue. I need to apply a business rule that the same address cannot be assigned to the same code unless its the generic...
December 12, 2005 at 11:36 pm
But I think more in line with what Carl is trying to produce,
"So as a rule you should avoid using functions"
December 12, 2005 at 4:24 pm
Sergiy, Hmmm ... the @Array table could have been some bits I didn't cleanup from an earlier revision, the function definitely doesn't...
December 12, 2005 at 3:03 pm
This is the function I use for splitting values. It takes advantage of a "Numbers" table to provide a set-based query. I suppose the actual query could be used as...
December 12, 2005 at 2:19 am
Sergiy, I'm beginning to think that there may be something wrong with the system you're running these tests on.
I ran each of...
December 11, 2005 at 9:42 pm
Johnny Mnemonic is a short story Gibson wrote before Neuromancer.
http://www.antonraubenweiss.com/gibson/gibson3.html
December 7, 2005 at 3:01 pm
Coming late to the party here.
Like all suggestions here and agree War Games has to be at the top. Probably because it's something I can relate to
December 6, 2005 at 3:50 pm
December 6, 2005 at 2:36 pm
You might run into instances of the scheduled job hanging while it's waiting for a user response (who knows what is in the macro that's being run
December 5, 2005 at 9:50 pm
... or just to be different
DateAdd(hh, -24, GetDate())
December 5, 2005 at 9:44 pm
Take a look over at http://www.sqldts.com
They have a good article on processing a global variable rowset which should give you the building blocks you need. As suggested you would...
December 5, 2005 at 9:43 pm
"...Mind i m required to compare only time not the dates and @startTime value is always less than @EndTime value)..."
Given this statement, the data you supplied is incorrect
set @StartTime='12/1/2005 12:30:49...
December 1, 2005 at 8:56 pm
December 1, 2005 at 7:21 pm
Viewing 15 posts - 511 through 525 (of 2,486 total)