Viewing 15 posts - 2,116 through 2,130 (of 2,339 total)
Sending mail from code in the application is, most of the time, problematic. A typical approach is to insert a message into a queue table, and have a separate job...
January 27, 2015 at 4:18 pm
Trelin (1/27/2015)
first a redesign; there is no reason to put this in a trigger. if the trigger fails, your data disappears because the transaction gets rolled back.
Actually, this trigger is...
January 27, 2015 at 12:41 pm
Instead of calculating them, try this table,
January 27, 2015 at 4:57 am
These questions all appear to be written by someone who has worked with Access, especially all of the "over the network" questions.
I can relate to being in a small shop....
January 22, 2015 at 7:13 am
There are numerous splitter functions out there.
The example you provided uses a loop.
If you read the article, the performance of a loop splitter is significantly worse than...
January 21, 2015 at 6:54 am
There is no better splitter function!
January 21, 2015 at 6:09 am
Enclose the table name in square brackets
.
January 20, 2015 at 2:07 pm
SELECT City, Country, Population
FROM tblCities
WHERE EXISTS (SELECT SP.item FROM dbo.DelimitedSplit8k('London,paris,new york',',') SP WHERE SP.item = tblCities.City)
OR...
January 20, 2015 at 11:26 am
January 20, 2015 at 10:12 am
My question, I suppose, has more to do with UDTs in general. I can store the IDs as VarChar(n), or create a UDT and add a Rule to it. Yes,...
January 15, 2015 at 2:04 pm
Why are you making up some sort of artificial value?
What does 3-9 in the first digit stand for? If this stands for something like a "parent type",...
January 15, 2015 at 10:55 am
Jeff Moden (9/3/2014)
JimAtWork (2/3/2014)
January 15, 2015 at 8:11 am
Is the problem that on a regular basis your rights are removed from the server?
The bigger question is why.
Is this production? If so, and you...
January 14, 2015 at 2:48 pm
Try it out. Create a series of procs that generate errors.
See what happens.
The errors bubble up.
January 12, 2015 at 12:41 pm
Put the parent proc in a try/catch also.
A procedure will return 0 if it is successful, and non-zero if it fails.
In the parent proc, you can do this:
DECLARE...
January 12, 2015 at 12:03 pm
Viewing 15 posts - 2,116 through 2,130 (of 2,339 total)