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

The First Steps: Understanding the Basics of FinOps

By

As a DevOps professional, I’ve seen firsthand how cloud costs can quickly spiral out...

Monday Monitor Tips: AI Query Analysis

By

AI is everywhere. It’s in the news, it’s being added to every product, management...

AI: Blog a Day – Day 8: RAG – Retrieval Augmented Generation

By

RAG — Retrieval Augmented Generation. we have covered so far — embeddings, vectors, vector...

Read the latest Blogs

Forums

would it be so terrible to install ssms on a few user desktops?

By stan

Hi, ssms is free here.   I can think of other reasons to do this...

I'm thinking about submitting some articles

By Doctor Who 2

I've written some documentation on using different Markdown types of files on GitHub. It's...

Not Just an Upgrade

By Steve Jones - SSC Editor

Comments posted to this topic are about the item Not Just an Upgrade

Visit the forum

Question of the Day

Restoring On Top I

I am doing development work on a database and want to keep a backup so I can reset my database. I make some changes and want to restore over top of my changes. When I run this code, what happens?

USE Master
BACKUP DATABASE DNRTest TO DISK = 'dnrtest.bak'
GO

USE DNRTest
GO
CREATE TABLE MyTest(myid INT)
GO
USE master
RESTORE DATABASE DNRTest FROM DISK = 'dnrtest.bak' WITH REPLACE

See possible answers