Viewing 15 posts - 3,046 through 3,060 (of 13,469 total)
for individualized emails, i think you'll need two things:
a cursor to go thru the list of email recipients, and which builds the custom subject/body
sp_send_dbmail to actually send the email.
do you...
July 29, 2013 at 6:09 am
Thomas no sense reinventing the wheel; it sounds like you want to search for "free work order system" or "free support ticket system" and maybe include "sql" in it to...
July 26, 2013 at 3:08 pm
dwilliscp (7/26/2013)
July 26, 2013 at 1:14 pm
that extra requirement is easy;
we have to compare the INSERTED row to the DELETED row, and compare in a WHERE statement:
WHERE INSERTED.[Comments] <> DELETED.[Comments]
here's the trigger model again with...
July 26, 2013 at 12:46 pm
yep, that was because of the construction of your trigger:
the [Document] = (select [Document] FROM INSERTED) would make the old trigger fail if more than one row was updated.
my trigger...
July 26, 2013 at 12:27 pm
dwilliscp (7/26/2013)
But I am looking for a better way to not run the...
July 26, 2013 at 12:09 pm
As An FYI for datetime, Luis mentioned you can't add a single millisecond; the minimum is 3 milliseconds, and that's imposed due to the way the data is stored by...
July 26, 2013 at 10:25 am
Patti Johnson (7/26/2013)
Thank you Lowell. It looks like you have installed the Oracle full client not the Oracle Instant client. Is that correct?
Patti yes, that is correct; we...
July 26, 2013 at 10:15 am
my first thought, is that this trigger is checking things that don't make sense in that WHERE statement, and can be updating rows that it should not.
of course the [Document]...
July 26, 2013 at 9:47 am
dwilliscp (7/26/2013)
July 26, 2013 at 8:29 am
Patti I hope this helps:
this is a copy of the definition for scripting my linked server to Oracle; this is working for me, without using a DSN.
note that if your...
July 26, 2013 at 6:55 am
ok, after modifying the SoapAction to the correct name, i get the xml back of the data table, but the xml doesn't contain the schema,just the data i think,...
July 26, 2013 at 6:04 am
||edit||: the code below, as long as you have a web server and a valid conneciton to a sql server from that web server works 100%
I found this interesting when...
July 26, 2013 at 5:56 am
note that the PATH variable is null?
I'm sure that means because someone is actively using SQL Profiler to run the trace live; Profiler will instantly recreate the trace if it...
July 26, 2013 at 5:40 am
Cadavre I love your new signature with the nolock pointers! just noticed it today.
July 26, 2013 at 5:33 am
Viewing 15 posts - 3,046 through 3,060 (of 13,469 total)