Book Review: Guru's Guide to T-SQL
This week, Brian Knight reviews the book Gurus Guide to Transact SQL.
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.
I ran into a dilemma when I was told that I should not allow potential competitors to view my JavaScript comments. If they want to figure the code out; make them work for it.
The sixth part of Steve Jones's series on having SQL Server automatically report information to a DBA.
This humorous form was originally desgined for Network Admins, but it works for DBAs as well.
Everyone needs a stable environment. This article discussed ways to keep your team on the same page.
The fifth part of Steve Jones's series on having SQL Server automatically report information to a DBA.
For anyone who supports desktops, this document shows how to sarcastically please your IT department.
If you've ever played around with the toolbox, you may have discovered one of InterDevs hidden gems. Did you know that the InterDev Toolbox allows you to add you own custom tabs? This feature allows you to access frequently used snippets of code in an instant
By Steve Jones
How to apologize: quickly, specifically, sincerely. Don’t ruin an apology with an excuse –...
Try this step-by-step guide to build and deploy a scalable serverless app that’s accessible...
Want to boost your SQL game? Check out this free course, SQL Subqueries: Real-World...
Hello! SQL Clustered resource used to come online during manual or automatic failover in...
Code that can be used in order to create dashboard or SSRS report on...
So, I have an interesting situation that I need a double-check on. One of...
I have this data in a SQL Server 2022 table:
PlayerIDPlayerNamePlayerStatus 1The \%ChampActive 2The ChampActive 3The_ChampionActive 4The__ChampionActive 5The\_ChampActiveHow many rows are returned by this code in SQL Server 2022?
select PlayerName from player where playername like 'The\_C%' escape '\'See possible answers