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.
This article describes how to create a Visual Basic application for merge replication that will handle both conflict and non-conflict changes between the affected tables.
This article shows you the basics of connecting to SQL Server in Active Server Pages.
How can you maintain a stable environment? Keeping track of all changes is the time-tested and proven technique. Read about it here.
Got a plan for moving your data to the new server? Try this one! Andy Warren offers step by step instructions on how to move your data without doing a backup/restore or using detach and attach.
The eighth part of Steve Jones's series on having SQL Server automatically report information to a DBA.
This week, Brian Knight reviews the book Gurus Guide to Transact SQL.
This article shows you in a step-by-step manner how to restore the master database.
The seventh part of Steve Jones's series on having SQL Server automatically report information to a DBA.
By Patrick
SQL Server Audit is an efficient way to track and log events that occur...
I presented at SQL Saturday Pittshburgh this past weekend about populating your data warehouse...
By Steve Jones
A customer was asking recently about the RPO for their estate, and I showed...
Comments posted to this topic are about the item The Modern Algorithm of Chance
Comments posted to this topic are about the item Use Logic Apps To Save...
Comments posted to this topic are about the item AWS Services Using SQL for...
I have this data in my Customer table:
CustomerID CustomerName 1 Steve 2 Andy 3 Brian 4 Allen 5 DevinI run this code:
SELECT t.CustomerID , c.value FROM ( SELECT CustomerID , STRING_AGG (CustomerName, ',') AS me FROM customer GROUP BY CustomerID) t CROSS APPLY STRING_SPLIT(me, ',') c;What is returned? See possible answers