Automate Audit Requests
In this article TJay Belt describes a process to help respond to audit requests in a timely manner
In this article TJay Belt describes a process to help respond to audit requests in a timely manner
Are you in the Zone at work? Can you find those times when you are amazingly productive? Tim Mitchell asks a question in this guest editorial.
Are you in the Zone at work? Can you find those times when you are amazingly productive? Tim Mitchell asks a question in this guest editorial.
Are you in the Zone at work? Can you find those times when you are amazingly productive? Tim Mitchell asks a question in this guest editorial.
This case study describes upgrading to SQL Server 2005 and Windows 2003 Active/Active cluster from and provides upgrade option pros and cons for SQL Server high availability.
This article describes how to use variables in SSIS to dynamically generate folders and file placement.
Money. It's part of the reason why we all work, though hopefully not all of it. Steve Jones comments a bit on financial matters.
Steve Jones looks at the positive side of someone else doing your work when you're on vacation. There's an interesting benefit for the company.
Steve Jones looks at the positive side of someone else doing your work when you're on vacation. There's an interesting benefit for the company.
Steve Jones looks at the positive side of someone else doing your work when you're on vacation. There's an interesting benefit for the company.
By Brian Kelley
But as I've matured over the years, I came to realize that I needed...
By alevyinroc
I will be presenting my latest session, Documenting Your Work for Worry-Free Vacations, in-person...
By Steve Jones
I saw a question asking about the next sequence value and decided to try...
I've read a few posts regarding what we use to design DB models and...
I've got a table with 186,703,969 rows, about 300GB of data. There are several...
I created a SQL Database in Azure Portal but I've just noticed it also...
What values are returned when I run this code?
CREATE TABLE dbo.IdentityTest2
(
id NUMERIC(10,0) IDENTITY(10,10) PRIMARY KEY,
somevalue VARCHAR(20)
)
GO
INSERT dbo.IdentityTest2
(
somevalue
)
VALUES
( 'Steve')
, ('Bill')
GO
SELECT top 10
id
FROM dbo.IdentityTest2 See possible answers