Frank A. Banin

With a robust foundation in enterprise Data Analytics and software engineering, I specialize in strategically planning and implementing sophisticated analytics solutions that drive value through data-driven decision-making to support business growth. My diverse experience spans various environments, including on-premise, PaaS, SaaS, and hybrid solutions, highlighting my versatility and adaptability in tackling complex data challenges.


I am characterized by my intellectual curiosity and a strong aptitude for rapidly learning new tools, coupled with a commitment to staying at the forefront of industry trends. My professional development is underscored by a series of certifications, including:

Microsoft Certifications:
Generative AI for Business with MSFT Azure OpenAI
Fabric Analytics Engineer Associate
Azure Data Engineer Associate
Certified Professional
Certified IT Professional
Technology Specialist

Merrill Lynch Certification:
Six Sigma Green Belt

SQLServerCentral Article

DAX for SQL Folks: Part II - Translating SQL Queries to DAX Queries

Introduction In response to my approach in the popular MDX Guide for SQL Folks series, I am using SQL as a good frame of reference for starting or developing a new approach for improving your Data Analysis Expression(DAX) language learning experience. This is useful for developers starting to learn the DAX language to more advanced developers who […]

5 (10)

You rated this post out of 5. Change rating

2020-04-30

42,233 reads

Blogs

Understanding Lakehouse Permissions in Microsoft Fabric

By

Understanding how permissions work in Microsoft Fabric can be essential for anyone managing access...

The Cost of Not Having a DBA

By

Does skipping a DBA save money? Wait until your system grinds to a halt,...

Who are you? Building an identity map.

By

I admit that until I read the article, Who are you as a Leader?,...

Read the latest Blogs

Forums

How to update using data from three tables?

By mjdemaris

I am in the process of migrating from MySQL to SQL Server. I have...

Select Returning Blank Rows

By JP789

I have the following select statement --#1 Select supplier, s.refnum, desc from supplier as...

How to update a history table with changes.

By bswhipp

Good morning to all.  I am a novice when it comes to SQL so...

Visit the forum

Question of the Day

Replacing a NULL II

What is returned from this code in SQL Server 2022?

DECLARE
  @value INT = NULL
, @value2 VARCHAR(20) = NULL;
SELECT COALESCE (@value, @value2, 100.5) AS Result;
GO

See possible answers