Articles

SQLServerCentral Article

Path to Your MCDBA

Did you know that the mean salary of a MCSE certified professional is $65,100, well above the industry standard (source MCP Magazine)? That's not including the long term benefits such as bonuses and promotions. No salary surveys have been conducted by Microsoft as of today for MCDBA certification. With the limited amount of MCDBA certified DBAs though, the demand far by out weighs the suply.

You rated this post out of 5. Change rating

2001-05-01

5,057 reads

Blogs

5 Free Data Analysis Books to Kickstart Your Career

By

Dreaming of a data analyst career but feeling a little lost? Already playing with...

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...

Read the latest Blogs

Forums

Servers being moved go new location - new IP addresses.

By krypto69

Hi Our Physical servers are going to be moved to a new location and...

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...

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