SQL Server Table Design Guidelines - Data Types, Designing for Deletes and Primary Keys
In this article, we look at three table design guidelines when building an SQL table including data types, designing for deletes, and primary keys
In this article, we look at three table design guidelines when building an SQL table including data types, designing for deletes, and primary keys
See a first look at Azure Data Studio from Kenneth Igiri and read about his impressions.
The idea of working on just projects is tailor made for a data professional. Or is it?
If you’ve been in Azure or Amazon for a few years, you’re probably on old, slow hardware.
While the cloud is recognized as more secure than on-premises servers and infrastructures, it does come with the often talked about shared responsibility model. Cloud providers are responsible for security ‘of’ the cloud, while their clients are responsible for security ‘in’ the cloud. Find out more in this Q&A with Dustin Dorsey
Steve doesn't think you need a degree to work in technology and more companies agree with this all the time.
The 2023 First-Timer guide to the PASS Data Community Summit is available from Edwin Sarmiento
Learn the basics of Apache Druid and how it can be used to ingest data into a data lake.
Is MongoDB in use within your organization? The Flyway development team is adding MongoDB support into Flyway and would like to better understand the current pain points. If you are able help, or are interested in finding out more, please participate in our 5-minute survey.
By Steve Jones
With the AI push being everywhere, Redgate is no exception. We’ve been getting requests,...
By Steve Jones
fawtle – n. a weird little flaw built into your partner that somehow only...
AWS recently added support for Post-Quantum Key Exchange for TLS in Application Load Balancer...
Comments posted to this topic are about the item Where Your Value Separates You...
Comments posted to this topic are about the item Fixing the Error
Comments posted to this topic are about the item T-SQL in SQL Server 2025:...
On SQL Server 2025, I have a database that has this collation: SQL_Latin1_General_CP1_CI_AS. I decide I want to run this code:
SELECT UNISTR('*3041*308A*304C*3068 and good night', '*') AS 'A Classic';
I get this error:Msg 9844, Level 16, State 4, Line 24 The char/varchar input type uses an unsupported collation. Only a UTF8 collation is supported with char/varchar input type in UNISTR function.What is the easiest way to fix this error? See possible answers