Articles

External Article

Power BI Treemap Chart Step-by-Step Tutorial

Microsoft Power BI Desktop provides a wide variety of visuals to its users. Sometimes, one wants to conduct a comparative analysis, a simple way to explore the relationship between the data categories within a set hierarchy. Hence, when a decision revolves around understanding the relationship of each element, this visual can provide an insightful analysis. This article will highlight all the steps to create a treemap chart in Power BI Desktop.

2024-06-14

SQLServerCentral Article

Memory Grant Feedback Persistence in SQL Server 2022

By using input from real memory consumption during query execution, Memory Grant input Persistence in SQL Server 2022 is a potent feature that helps optimize query performance. In order to improve the accuracy of memory grant calculations for subsequent executions of the same or comparable queries, SQL Server gathers and stores this information.

5 (3)

You rated this post out of 5. Change rating

2024-06-12

938 reads

SQLServerCentral Article

PostgreSQL is Now Faster than Pinecone, 75% Cheaper, with New Open Source Extensions

Two new open-source extensions from Timescale make PostgreSQL even better for AI applications, unlocking large-scale, high-performance AI use cases previously only achievable with specialized vector databases like Pinecone.

4.5 (2)

You rated this post out of 5. Change rating

2024-06-12

462 reads

Blogs

Data Technology Learning Resources

By

Hey all! Quick one here. Tracy Boggiano, awesome person that she is, has put...

How to use a Script Activity in ADF as a Lookup

By

In Azure Data Factory (ADF, but also Synapse Pipelines and Fabric Pipelines), you have...

Create a copy of an Azure SQL DB

By

Where I work, we will be migrating data from one set of databases into...

Read the latest Blogs

Forums

What Metrics Do You Collect?

By Steve Jones - SSC Editor

Comments posted to this topic are about the item What Metrics Do You Collect?

Updating Sensitivity Classifications

By Steve Jones - SSC Editor

Comments posted to this topic are about the item Updating Sensitivity Classifications

Visit the forum

Question of the Day

Updating Sensitivity Classifications

I ran this code on a column in my SQL Server 2022 database:

ADD SENSITIVITY CLASSIFICATION TO dbo.Customer.ContactEmail
WITH (
    LABEL = 'Highly Confidential',
    INFORMATION_TYPE = 'Contact',
    RANK = CRITICAL
);
GO
I then realize I've made a mistake and run this:
ADD SENSITIVITY CLASSIFICATION TO dbo.Customer.ContactEmail
WITH (
    LABEL = 'Highly Confidential',
    INFORMATION_TYPE = 'Contact',
    RANK = HIGH
);
GO
What happens?

See possible answers