Brian Knight

Brian Knight, MCSE, MCDBA, is on the Board of Directors for the Professional Association for SQL Server (PASS) and runs the local SQL Server users group in Jacksonville. Brian is a contributing columnist for SQL Magazine and also maintains a weekly column for the database website SQLServerCentral.com. He is the author of Admin911: SQL Server (Osborne/McGraw-Hill Publishing) and co-author of Professional SQL Server DTS (Wrox Press). Brian is a Senior SQL Server Database Consultant at Alltel in Jacksonville and spends most of his time deep in DTS and SQL Server.

Technical Article

Clustering SQL Server 2005

With Windows 2003 now clustered, you're ready to begin to clustering SQL Server 2005. In this presentation, you'll see how to cluster SQL Server 2005 and some best practices in how to configure the SQL Server cluster after the fact.

2006-08-29

2,982 reads

Blogs

PostgreSQL error in Fabric Pipelines – No pg_hba.conf Entry for Host

By

I came across a bit of a weird error when I was trying to...

How I Effortlessly Dockerize Python-Based AWS Lambda Functions

By

As a Software Engineer, i would like to learn how to dockerize my Python...

Export Extended Event Results to CSV or Table

By

This is something that I’ve seen pop up a couple of times on various...

Read the latest Blogs

Forums

Is Perfect Software Attainable?

By Louis Davidson (@drsql)

Comments posted to this topic are about the item Is Perfect Software Attainable?

SQL DB migration

By ShuaibV

Hi I am New To Azure Sql.  Can some one please share  If we...

Contained Availability Groups - Failover Questions.

By krypto69

Hi I am considering creating Contained Availability Groups in my production environment. Thinking I...

Visit the forum

Question of the Day

Multi-Database Marked Transactions

I run a marked transaction across multiple databases with this code:

BEGIN TRAN onemorenewdbTran WITH MARK 'mark from 3 dbs'
USE sandbox2
INSERT dbo.AddressTable
  (AddressID, AddressValue, AddressPostal)
VALUES
  (12, '123 three St', '4444')
GO
USE sandbox3
INSERT dbo.Logger (logdate, logmsg) VALUES (GETDATE(), 'tran message')
GO
INSERT sandbox4.dbo.logger (uid) VALUES (700)
COMMIT TRAN onemorenewdbTran
GO
How many marks are inserted into msdb.dbo.logmarkhistory?

See possible answers