Viewing 15 posts - 3,676 through 3,690 (of 9,643 total)
Have you checked the documentation for xp_smtp_sendmail at sqldev.net? If you run the procedure in QUery Analyzer you should be able to see the error message in the Messages...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
December 4, 2009 at 7:51 am
I believe in SQL Server you will need to do this in a trigger or in the process that does the insert. I'd lean toward having it in the...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
December 4, 2009 at 7:37 am
SQL Server uses ownership chaining to handle these types of issues or as Gus has mentioned you can use EXECUTE AS. I have written a series of blog posts...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
December 4, 2009 at 7:20 am
Have you tried running the backup to another physical location? Are your backups and data on the same physical drive?
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
December 4, 2009 at 7:14 am
When SSMS came out with 2005 I was very disappointed to see EM and QA combined. I'd still prefer to have my query application separate from the management application....
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
December 4, 2009 at 7:10 am
Grant Fritchey (12/4/2009)
In general, I'd say that's a hint to blow the dust off the resume.
Unfortunately I agree with Grant here. It's never a good sign when all the...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
December 4, 2009 at 7:08 am
You need to put teh expression in the color property of the textbox, not in the textbox.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
December 4, 2009 at 6:34 am
Wow, can you still "freeze" IO in 2005 and later?
And this is why I use native SQL Backups until the DB's get too big so backups get too...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
December 3, 2009 at 12:27 pm
The only "gotcha" is that doing:
DECLARE @var VARCHAR(10)
SELECT
@var = NAME
FROM
sys.databases AS D;
SELECT @var;
works even thought there are multiple rows returned,...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
December 3, 2009 at 9:49 am
Gift,
I'd be interested in knowing what you are doing in the stored procedures that make it so you can't use EXECUTE AS. I'm not saying you should, I'm just...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
December 3, 2009 at 9:25 am
What events are you tracing using Profiler?
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
December 3, 2009 at 9:04 am
A trigger will have some impact on performance as triggers do work, consume resources, and extend transactions. The amount of impact depends on the work being done in the...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
December 3, 2009 at 8:52 am
Sorry. Looks like the only way you can modify jobs is to be sysadmin or own the job.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
December 3, 2009 at 8:46 am
Elliott W (12/2/2009)
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
December 3, 2009 at 8:22 am
Ha ha, I just remembered that my signature contains the quote:
"Don't let the good be the enemy of the best."
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
December 2, 2009 at 9:52 am
Viewing 15 posts - 3,676 through 3,690 (of 9,643 total)