How SQL Cluster Resource DLLs work with Cluster Components
In this article Nirmal Sharma explains the SQL Server internal clustering process
In this article Nirmal Sharma explains the SQL Server internal clustering process
While reviewing the new features in SQL Server 2008, we noticed Transparent Data Encryption. This sounds very interesting. Could you provide us with an explanation and the details to implement it?
Steve Jones talks about being right versus being effective in your IT work.
Steve Jones looks back at the news of the past, including a look at RC0, the latest release of SQL Server 2008.
Learn storage area network (SAN) basics that SQL Server DBAs must know. Understand SQL storage concerning RAID levels, redundancy and snapshots vs. backups.
SQL Server 2008 February CTP introduces a new feature, SQL Server Audit. This feature facilitates auditing of Database Engine events by providing simple T-SQL statements to enable, store, and view audits on server and database objects. Part 1 of this series focuses on the server level events.
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.
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.
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 talks about being right versus being effective in your IT work.
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