SQLServerCentral Editorial

Limits, Not Goals

I just saw one of "those" questions. You know the ones: 'We're hitting an error with a stored procedure. What is the maximum number of parameters you can have?" <sigh> Look, I get it. Breaking the land speed record is cool. Getting the most people into a phone booth (look it up), also cool. Fastest, […]

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