PracticalSQLDba

Stellar Toolkit for MS SQL - Software Review

As a SQL database administrator, I am responsible for maintaining our organization's SQL Server and databases. But despite implementing best database maintenance practices, including backups and performing DBCC CHECKDB...

2021-03-11 (first published: )

761 reads

Blogs

Is Your Business Truly Ready for AI?

By

The AI revolution isn’t coming – it’s here. Companies are racing to integrate artificial...

Data Governance: The Invisible AI Accelerator

By

Introduction Do you remember the effort of tidying up your BI and reporting systems,...

Making a PostgreSQL Backup in a Container

By

I needed to back up a PostgreSQL database as a part of the repro...

Read the latest Blogs

Forums

CU31 breaking non clustered Availability Groups

By bmcmeans76

Last week I downloaded and applied the newest CU31 patch to our lower environment...

Master Data Services many tables starting with starting tbl

By jaango123

  Hi All, I can see many tables under MasterDataServices like below in an...

Need Guidance on Data Types and Lengths.

By Ahr Aitch

I need some guidance on choosing data types and lengths for columns in my...

Visit the forum

Question of the Day

A Simple Choice

I have this data in a table?

CatIDCatName
3Monitors
What is returned when I run this code?
SELECT CHOOSE(catid, 'Laptops', 'PCs') FROM dbo.Categories AS c
 

See possible answers