Steve Rezhener

Steve Rezhener specializes in Microsoft Data Platform, SQL Server, AWS/Azure and Microsoft BI Stack.
Steve holds a degree Computer Information Systems and Software Development from Champlain College in Burlington, VT, and is graduate of the MBA Program in Information Technology from University of Redlands in Redlands, CA.

Steve is known in the SQL Community as a co-organizer of SQL Saturday in Los Angeles event, co-leader of LA Data Platform (fka SQLMalibu) User Group, frequent SQLSaturday speaker, and President and Co-Founder of Data Driven Technologies, Inc 501.c.3. non-profit.

Steve lives in Los Angeles, CA. When not dealing with data, he is fixing a house, and playing an XBOX with his 2 kids.

SQLServerCentral Article

Identify Profiles Actually In-use to Make Database Mail Migration Efficient

Introduction According to Microsoft, Database Mail is an enterprise solution for sending e-mail messages from the SQL Server Database Engine. Using Database Mail, your database applications can send e-mail messages to users. The messages can contain query results and can also include files from any resource on your network. This article is going to discuss […]

You rated this post out of 5. Change rating

2021-04-27

992 reads

SQLServerCentral Article

Hacking the DTSX (SSIS XML file) to Change Defaults

Introduction According to Microsoft, DTSX is an XML-based file format that stores the instructions for the processing of a data flow from its points of origin to its points of destination, including transformations and optional processing steps between the origin and destination points. In a nutshell, when you are creating your SSIS package, the SQL […]

5 (2)

You rated this post out of 5. Change rating

2021-03-25

4,064 reads

SQLServerCentral Article

Syncing your SQL Server database backups to an AWS S3 bucket

Introduction "Sometimes" just having all the database backups in one place is not enough. In fact, most of the time, putting all the eggs in one basket is a bad idea. You want to have some piece of mind that during the time of crisis, all your database backups are restorable. This is probably why […]

4 (1)

You rated this post out of 5. Change rating

2021-02-11

6,082 reads

SQLServerCentral Article

Boost performance of your SQL Server tables with a TURBO button

Introduction Performance, performance, performance. While performance in SQL Server can be achieved with code improvement and proper infrastructure maintenance, both tasks require an effort. Code reviews and deep index analysis would take time, but sometimes the obvious is right in front of you. Let's talk about HEAP tables, aka tables with no clustered indexes that […]

2.13 (8)

You rated this post out of 5. Change rating

2020-12-08

7,176 reads

SQLServerCentral Article

Block user objects from being created in a master database

Introduction The Master database. Just in case that you are not familiar with this database, the Master database is used in SQL Server to store all the system information, instance-level settings, logon information, database file locations, etc. SQL Server can't run without access to a fully functional master database. It's highly recommended not to use […]

5 (7)

You rated this post out of 5. Change rating

2020-11-10

3,918 reads

Blogs

Migrate datetime data to datetimeoffset with AT TIME ZONE

By

I recently reviewed, worked on, and added a similar example to the DATETIMEOFFSET Microsoft...

The Comprehensive Guide to Mastering Your SQL DBA Skills

By

Database administrators (DBAs) are the backbone of data-driven organizations. If you're looking to break...

Friday Basics: Authentication vs. Authorization

By

Another security fundamentals topic is authentication versus authorization. For those who have a clear...

Read the latest Blogs

Forums

Take Care

By Grant Fritchey

Comments posted to this topic are about the item Take Care

WhatsApp+19254941544 La guía definitiva para obtener una licencia de conducir en

By Ethan Daniel

WhatsApp+19254941544 La guía definitiva para obtener una licencia de conducir en California El Departamento...

Performance

By LearningDBA

Experts, I am learning some skills so I can troubleshoot some performance-related issues. I...

Visit the forum

Question of the Day

Two Table Hints

What happens when I run this code:

SELECT
  p.ProductName
, p.ProductCategory
FROM dbo.Product AS p WITH (NOLOCK, TABLOCK);

See possible answers