SQLServerCentral Article

Determining Whether Home Addresses Fall Within a Tornado Polygon Using Spatial Functions

Geographic information systems (GIS) play a critical role in emergency response planning and risk assessment. One of the key challenges in this field is determining whether a specific location falls within an area of interest. This capability is especially valuable for property and casualty (P&C) insurers, who need to assess their insured property exposure when severe weather events such as tornadoes occur.

SQLServerCentral Editorial

What is time?

There was a post on X I read today about valuing your time. The gist was that since this person had waited 9 minutes to save $4, they valued their time at $27 an hour. I get the point being made. Time is valuable and you need to set the value of your time. It […]

Blogs

Knoxville M365 Community Days Recap

By

Hello data friends! Had a blast at my first ever M365 Community Day this...

What is Deferred Name Resolution?

By

One interesting concept in SQL Server is Deferred Name Resolution. This is something many...

SQL Server Time Bombs

By

Common Reasons for Emergency SQL calls If you are a production DBA (or Accidental...

Read the latest Blogs

Forums

List the Databases To Which You Have Access

By rathiaakash91@gmail.com

Comments posted to this topic are about the item List the Databases To Which...

Deadlocks after index rebuild

By btork

We rebuilt a bunch of indexes that had avg_fragmentation_in_percent>30. Now we have 1 job...

Healing Zone Physiotherapy Clinic

By healingzonephysiotherapy

Healing Zone Physiotherapy Clinic is a newly owned and well-established physiotherapy center located in...

Visit the forum

Question of the Day

Dateadd with a numeric value

What is returned from the following query ?

declare @currentDateTime DATETIME = '2025-01-01 00:00:00.000'

select  dateadd(hour, 3.0/2, @currentDateTime);

See possible answers