Mystery of Failing Database Mail
Have you ever seen this error when you have setup database mail:
The mail could not be sent to the recipients...
2009-07-20
429 reads
Have you ever seen this error when you have setup database mail:
The mail could not be sent to the recipients...
2009-07-20
429 reads
I just learned about a Connect item entered on Friday: https://connect.microsoft.com/SQLServer/feedback/ViewFeedback.aspx?FeedbackID=475337 . Here's the description in the item. Please invoke the...
2009-07-20
448 reads
Like many SQL Server (and other technology) people, I utilize several social networking vehicles to stay in touch with others...
2009-07-20
1,859 reads
I read a nice article by Steve M List called Think Before You Speak in MSDN Magazine and it talks...
2009-07-19
495 reads
We are in the early stages of planning a SQL Saturday event in the Dallas area for January or February...
2009-07-19
1,077 reads
This is as far as I ever plan to stray from writing purely technical posts. It just strikes so close...
2009-07-19
702 reads
Ford is adding Eco-Boost to a number of vehicles. A combination of a turbo and fuel injection technology that can...
2009-07-17
840 reads
With my hard drive failing in the laptop recently, I scrambled to do something. I was on the road, and...
2009-07-17
2,627 reads
I finished reading Fault Line by Barry Eisler ($16.50 @ Amazon) a few weeks ago. I’ve been a fan for a...
2009-07-17
595 reads
Every so often I run into a fellow DBA or database developer who isn't crystal clear on how file/folder and...
2009-07-16
5,991 reads
By HeyMo0sh
Learning any kind of theory is easy, but adapting FinOps and watching it rescue...
By Vinay Thakur
As discussed introduction of Always Encryption blog and initial Encryption at rest as TDE...
By Vinay Thakur
Transparent Data Encryption(TDE): TDE was initially introduced in SQL Server 2008 Enterprise Edition; this...
Comments posted to this topic are about the item The day-to-day pressures of a...
Comments posted to this topic are about the item The Problem Isn't Always Your...
Comments posted to this topic are about the item Identity Defaults
What happens when I run this code?
CREATE TABLE dbo.IdentityTest
(
id int IDENTITY(10) PRIMARY KEY,
somevalue VARCHAR(20)
)
GO
See possible answers