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

991 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,057 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,070 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,174 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,915 reads

Blogs

Friday Basics: the CIA Triad

By

In information security (INFOSEC), there several foundational concepts and principles. One of the ones...

A New Word: the standard blues

By

the standard blues– n. the dispiriting awareness that the twists and turns of your...

How Redgate Flyway Can Boost Your DevOps Journey

By

A brief introduction to the tool and its advantages for database migrations DevOps is...

Read the latest Blogs

Forums

client_app_name is empty in Extended Events output but present in sp_who2

By Pete Bishop

I'm tracing activity on one database and would like to include the client_app_name in...

How to compare data in customer table with other customers to find related cust

By Zond Sita

select Custno, Addr1, City, Res_Phone, Bus_Phone, Fax_Phone, Marine_Phone, Pager_Phone, Other_Phone, email1, email2 from customer...

process records in loop

By Bruin

I'm only processing 50,000 records not everything from the Table where there are 250,00...

Visit the forum

Question of the Day

The Marked Transaction

I want to mark a transaction in the log as a recovery point. How do I do this in my code if I use the transaction, myTran?

See possible answers