Srinivasarao Daruna

My career spans deep expertise in software development, data engineering, machine learning, and big data technologies which is supported by pioneering work evidenced through my patents cited by industry giants. As one of the earliest certified professionals in Apache Spark and an active contributor to open-source projects, I have consistently driven innovation and shared knowledge across the tech community. My leadership in developing cutting-edge solutions—from real-time financial insights to sophisticated anomaly detection—has not only enhanced operational efficiency and customer experience but also set a benchmark for cost optimization and scalable engineering practices. With a proven track record in mentoring and training, I am committed to empowering teams and advancing technology through both practical applications and thought leadership.
  • Interests: Software development, distributed computing, Non Relational databases, Data Engineering, Machine Learning
  • Blog: https://srinidaruna.com/
  • Jobs: Senior Software Engineer at Amazon
  • Skills: Data Engineering, Apache Spark, Apache Cassandra, Java, Machine Learning

It seems we can’t find what you’re looking for. Perhaps searching can help.

Blogs

Advice I Like: Apologies

By

How to apologize: quickly, specifically, sincerely. Don’t ruin an apology with an excuse –...

Build a Serverless Todo App With AWS, Pulumi, and Python

By

Try this step-by-step guide to build and deploy a scalable serverless app that’s accessible...

Master SQL Subqueries with This Free Course

By

Want to boost your SQL game? Check out this free course, SQL Subqueries: Real-World...

Read the latest Blogs

Forums

SQL Clustered Resource in online pending for about 3-5 mins before coming online

By PJ_SQL

Hello! SQL Clustered resource used to come online during manual or automatic failover in...

SQL Query to use in MS SSRS server to give you your report structure.

By wolfsvein

Code that can be used in order to create dashboard or SSRS report on...

Temp table security

By Brandie Tarvin

So, I have an interesting situation that I need a double-check on. One of...

Visit the forum

Question of the Day

Escaping Like I

I have this data in a SQL Server 2022 table:

PlayerIDPlayerNamePlayerStatus
1The \%ChampActive
2The ChampActive
3The_ChampionActive
4The__ChampionActive
5The\_ChampActive
How many rows are returned by this code in SQL Server 2022?
select PlayerName from player
where playername like 'The\_C%' escape '\'
 

See possible answers