Articles

SQLServerCentral Article

ANSI Joins

Are you confused by all this inner join style syntax that is becoming more and more prominent lately? This article by Neil Boyle will help you find your footing in the ANSI join syntax.

5 (3)

You rated this post out of 5. Change rating

2001-05-29

10,265 reads

SQLServerCentral Article

Removing NT Administrators as Sysadmins

By default, all NT administrators of the domain that your SQL Server is installed in, have SA rights in every database. This presents interesting challenge for DBAs, political and technical. Does your NT administrator group need SA rights to every database? The answer is no.

1 (1)

You rated this post out of 5. Change rating

2001-05-25

4,055 reads

Blogs

Query Store Keeps Switching Itself Off, Getting it Moving Again

By

I recently received a complaint that Query Store for a particular database was turned...

Modifying sp_QuickieStore Returned Column Order

By

I love QuickieStore, but I wanted some columns to be at the front end...

EightKB 2024 – Schedule and Registration

By

Hello Hello, We. Are. Back! The schedule for EightKB 2024 Edition has been announced!...

Read the latest Blogs

Forums

side effects of giving permissions to run traces

By vsamantha35

Hi All, I would like to know the downsides of giving permissions to run...

Web API Procedure will not run in SQL Server Agent Job

By fxferguson

I have a stored procedure that pulls JSON data from a US government web...

how to bulk insert a file on a azure sql server managed instance

By Snargables

Don't know if this is the right place for this topic. I have an...

Visit the forum

Question of the Day

The Variable DateName

What is wrong with this code?

DECLARE @p NVARCHAR(10) = 'year'
SELECT DATEPART(@p, GETDATE())

See possible answers