It seems we can’t find what you’re looking for. Perhaps searching can help.

Blogs

Minimize Downtime with SQL MI Disaster Recovery

By

I speak to many people who use cloud technologies, especially database tech and how...

Migrate to Azure PostgreSQL Flexible Server

By

I need to migrate from a single server to a flex server. Instead of...

Using Copilot to help me update SQL Saturday

By

An interesting AI experiment here with Copilot from GitHub in handling some code I...

Read the latest Blogs

Forums

History Cleanup Task issue

By Andre 425568

Hi all We have setup History Cleanup tasks at clients to clear Maintenance plan...

Which is the best healthcare app development companies in UAE?

By chariesdevil

Hey everyone! šŸ‘‹ Iā€™m currently researching the best healthcare app development companies based in...

Evaluation in where clause with 'or'

By blom0344

Hello , Consider the following - much simplified -Ā  example of a conditional insert:...

Visit the forum

Question of the Day

Code Blocks

What happens with this code:

DECLARE @Iteration INT = 0;

WHILE @Iteration < 10
    SELECT CustomerName,
        CustomerStatus
    FROM dbo.Customer
    WHERE CustomerID > 3;

    SET @Iteration += 1;

See possible answers