SQLServerCentral Article

Using InterDev's Toolbox

If you've ever played around with the toolbox, you may have discovered one of InterDevs hidden gems. Did you know that the InterDev Toolbox allows you to add you own custom tabs? This feature allows you to access frequently used snippets of code in an instant

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