Udaya Veeramreddygari

Experienced software engineering leader with over two decades of proven expertise in architecting, developing, and managing enterprise-scale applications across automotive, retail, finance, and telecommunications domains. Specialized in implementing scalable, cloud-native systems using modern frameworks and architectural patterns, Databases, AWS, and GenAI technologies, leading global cross-functional teams to deliver high-performance, secure, cloud-native solutions aligned with business strategy. In his current role as Lead Software Engineer at Cox Automotive, he drives legacy system modernization, ML/AI integration, and generative AI enablement—boosting productivity, fostering automation, and orchestrating agent-driven workflows across the SDLC. Certified professional in AWS, Anthropic, Scrum, ITIL, and architecture

Beyond engineering, actively engaged with the technology community through global conference speaking, technical program committee memberships (ICoSEIT, BDAA), and peer reviews of conference papers, and serving as a judge for Globee® Awards and Business Intelligence Group. An active IEEE Senior member in producing research papers, also contributes scholarly articles on Data, Microservices, Event Driven architecture, Data, LLMs, GenAI, AI productivity, and sustainability across platforms like DZone, Dev.to, Medium, and Dataversity. Udaya brings a rare combination of deep technical expertise, leadership acumen, and thought leadership, enabling teams and organizations to navigate modern engineering challenges with clarity and innovation.

Blogs

What DevOps Look Like in Microsoft Fabric

By

Microsoft Fabric (not to be confused with the more general term “fabric” in DevOps)...

T-SQL Tuesday #192: What career risks have you taken?

By

I’m honored to be hosting T-SQL Tuesday — edition #192. For those who may...

AI: Blog a Day – Day 3: LLM Models – Open Source vs Closed Source

By

Continuing from Day 2 , we learned introduction on Generative AI and Agentic AI,...

Read the latest Blogs

Forums

Can an Azure App Service Managed Identity be used for SQL Login?

By jasona.work

I'm fairly certain I know the answer to this from digging into it yesterday,...

Azure Synapse database refresh

By Sreevathsa Mandli

Hi Team, I am trying to refresh the Azure Synapse Dedicated pool from production...

how to write this query?

By water490

hi everyone I am not sure how to write the query that will produce...

Visit the forum

Question of the Day

Fun with JSON I

I have some data in a table:

CREATE TABLE #test_data
(
    id INT PRIMARY KEY,
    name VARCHAR(100),
    birth_date DATE
);

-- Step 2: Insert rows  
INSERT INTO #test_data
VALUES
(1, 'Olivia', '2025-01-05'),
(2, 'Emma', '2025-03-02'),
(3, 'Liam', '2025-11-15'),
(4, 'Noah', '2025-12-22');
If I run this query, how many rows are returned?
SELECT *
FROM OPENJSON(
     (
         SELECT t.* FROM #test_data AS t FOR JSON PATH
     )
             ) t;

See possible answers