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 CDO’s Playbook for AI Driven Decision Making

By

The New Arena of Leadership The role of the Chief Data Officer is no...

sp_snapshot – The easy way to take database snapshots of one or more databases – V3.0

By

Presenting you with an updated version of our sp_snapshot procedure, allowing you to easily...

SELECT *

By

SELECT * feels convenient, but in SQL Server it bloats I/O, burns network bandwidth,...

Read the latest Blogs

Forums

Cleaning Up the Cloud

By Steve Jones - SSC Editor

Comments posted to this topic are about the item Cleaning Up the Cloud

The Maximum Value in the Identity Column

By Steve Jones - SSC Editor

Comments posted to this topic are about the item The Maximum Value in the...

Oracle Performance Tuning: Practical Techniques Every DBA Should Master

By Udaya Veeramreddygari

Comments posted to this topic are about the item Oracle Performance Tuning: Practical Techniques...

Visit the forum

Question of the Day

The Maximum Value in the Identity Column

I have a table with this data:

TravelLogID CityID StartDate  EndDate
1           1      2025-01-01 2025-01-06
2           2      2025-01-01 2025-01-06
3           3      2025-01-01 2025-01-06
4           4      2025-01-01 2025-01-06
5           5      2025-01-01 2025-01-06
I run this code:
SELECT IDENT_CURRENT('TravelLog')
I get the value 5 back. Now I do this:
SET IDENTITY_INSERT dbo.TravelLog ON
INSERT dbo.TravelLog
(
    TravelLogID,
CityID,
    StartDate,
    EndDate
)
VALUES
(25, 5, '2025-09-12', '2025-09-17')
SET IDENTITY_INSERT dbo.TravelLog OFF
I now run this code.
DBCC CHECKIDENT(TravelLog)
GO
INSERT dbo.TravelLog
(
    CityID,
    StartDate,
    EndDate
)
VALUES
(4, '2025-10-14', '2025-10-17')
GO
What is the value for TravelLogID for the row I inserted for CityID 4 and dates starting on 14 Oct 2025?  

See possible answers