SQL Server

SQLServerCentral Article

Creating a Hyperscale Database in Azure Using the Azure Portal

  • Article

One of the most effective ways to fully utilize your data is to create an Azure Hyperscale database. The principles of Azure Hyperscale databases have been discussed in this article, including their cost-effectiveness, worldwide accessibility, automatic scaling, and reliable performance.

(1)

You rated this post out of 5. Change rating

2023-12-22

1,336 reads

External Article

Profiler and Server Side Traces

  • Article

Profiler is a GUI based tool that runs a SQL Server trace to capture the metrics listed above as well additional data. This data can then be used to determine where your SQL Server performance issues are related to your TSQL code. Running a trace without using Profiler is known as a Server Side Trace. You can create and start the trace using TSQL commands instead of having to use the GUI.

2023-09-29

Blogs

Don’t Treat Your Data Catalog Like a Data Museum

By

Introduction Treating your data catalog like a “data museum”—a static collection where information quietly...

The trade-offs associated with low-code solutions

By

Low-code solutions often accelerate development and make tasks accessible to people who can’t or...

Monday Monitor Tips: Looking Back in Time

By

Often we find out about a problem reported by a customer after the incident...

Read the latest Blogs

Forums

SSIS - ADO Source Datetime Issue

By RonMexico

I'm using an ADO Net Source to extract data and running into an issue...

Cummulative Total

By jagjitsingh

Hi I have below query and i want Cummulative Total . Total should be...

Everyone is a Newbie?

By Phil Parkin

Everyone seems to be a Newbie with zero points today! Browser = Chrome

Visit the forum

Question of the Day

Replacing a Null

What is returned from this code in SQL Server 2022?

DECLARE @value INT = NULL;
SELECT ISNULL(@value, 100.5) AS Result;

See possible answers