Farooq Aziz

Farooq Aziz has extensive experience as a data analytics solution architect with a Bachelor of Business Administration degree and an Associate of Science degree. He holds certifications including Microsoft Certified: Data Analyst Associate, Microsoft Certified: Azure Data Administrator, AWS Partner: Sales Accreditation, and AWS Partner: Technical Accreditation.In various roles, including Managing Consultant, Principal Consultant, Advisory Software Engineer, and Business Intelligence Consultant, Farooq has designed and architected business intelligence standards, policies, best practices, adoption roadmaps, and operating models for enterprise clients.He specializes in leveraging data analytics to provide valuable insights to both existing and potential clients, creating new business opportunities and enabling clients to make more informed decisions for their growth. Farooq has built data models in Power BI, Crystal Reports, SSAS Tabular, and SAP BO Universe, and performed complex transformations in Power Query.He has also implemented Power BI embedded reports for customers and organizations, presented POC and solution designs on data analytics platforms to prospective clients, and published articles on business intelligence technology community platforms to educate global data analytical professionals about possible data analytical solutions and best practices.
  • Tagline: Data Analytics Business Intelligence
  • Interests: Data Analytics, Business Intelligence, Business Analytics, Healthcare Analytics, Retail Analytics,
  • Jobs: Business Intelligence and Data Analytics Consultant
  • Skills: Power BI, SSAS Tabular, SAP BO, Cognos, Data Architect, Data Modeling, Data Governance, Business Intelligence Framework

Blogs

T-SQL Tuesday #193 – A Note to Your Past, and a Warning from Your Future

By

I haven’t posted in a while (well, not here at least since I’ve been...

Keeping MS Docs Up to Date

By

One of the things that I like about the SQL Server docs (MS Learn...

Patch Tuesday – Where to get more information

By

For a number of years I have subscribed to Randy Franklin Smith's Patch Tuesday...

Read the latest Blogs

Forums

is there a no code way to limit an ssis extract from excel to the 1st 21 rows?

By stan

is there a no code way to limit an ssis extract from excel to...

Pivot but preserve all rows on Aggregate column

By getsaby

Hello Need help in pivoting this data set, the Pivot takes MIN/MAX on a...

any reason to avoid asking ssis to extract files from ftp

By stan

hi we have to replace talend which generally was used to move files. talend's...

Visit the forum

Question of the Day

What is the PRODUCT

In SQL Server 2025, what does this return?

CREATE TABLE Numbers
( n INT)
GO
INSERT dbo.Numbers
(
n
)
VALUES
(1), (2), (3)
GO
SELECT PRODUCT(n)
FROM dbo.Numbers

See possible answers