Viewing 15 posts - 1,096 through 1,110 (of 2,647 total)
Hmm... Still not a mindreader. Are you setting an alert or a notification? Can you send an email using db_sendmail? Is the job "supposed" to send an email (alert or...
April 18, 2012 at 11:32 am
Are you sending one? đŸ™‚ What are you doing to send the emails. Please provide the script in your post.
April 18, 2012 at 11:26 am
PiMané (4/18/2012)
I remember that a long time ago,...
April 18, 2012 at 11:21 am
Its your job, so do what you think is right. The thing is, you cannot look at statistics to make the decision. Only outside information can help you to...
April 18, 2012 at 10:45 am
You want to create a user for the database admins, and 1 for the application. Then, use the Asp.net security that is built in to manage the application credentials.
April 18, 2012 at 10:40 am
My first question is... Why do you want to remove them? There are several reasons that the index may not be used. Refer to this thread:
http://www.sqlservercentral.com/Forums/Topic1285037-391-1.aspx
The removal of...
April 18, 2012 at 10:21 am
Run this:
SELECT *
FROM msdb.dbo.sysmail_allitems
WHERE subject = 'your subject'
ORDER BY sent_date DESC;
Look at the records and verify that SQL Server is itself sending 2 emails.
April 18, 2012 at 10:15 am
Have you verified that the email is getting "sent" twice, or cound it be that it is getting sent once and 2 emails are being received?
April 18, 2012 at 10:04 am
I assume you are using VS to do this? If so, you can add tables to your existing database, or create one. The best way to explain database...
April 18, 2012 at 10:02 am
Lynn Pettis (4/18/2012)
SQLKnowItAll (4/18/2012)
CREATE TABLE tableA(
column1 VARCHAR(64) NOT NULL...
April 18, 2012 at 9:15 am
sturner (4/18/2012)
April 18, 2012 at 8:46 am
Take a look here at the sp_addlogin stored proc. It shows you the parameters.
April 18, 2012 at 8:43 am
Going along with the others... Who asked you these questions and why were they asked? The answers to these 2 questions may help us get you to a proper answer.
April 18, 2012 at 8:12 am
Not knowing the product, I am guessing it is trying to script a user and the password it is creating does not meet your requirements. You may want to...
April 18, 2012 at 8:05 am
Jeff Moden (4/17/2012)
SQLKnowItAll (4/17/2012)
I've dropped some indexes that have 0 reads (or very few) and a high number of writes.
If I did that, I'd be fired. If you don't know...
April 17, 2012 at 6:59 pm
Viewing 15 posts - 1,096 through 1,110 (of 2,647 total)