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

From Planning to Practice: Setting Up Your FinOps Framework

By

As someone who works in DevOps, I’m always focused on creating systems that are...

“We love to debate minutiae”

By

I am guilty as charged. The quote was in reference to how people argue...

Advice I Like: Knots

By

Learn how to tie a bowline knot. Practice in the dark. With one hand....

Read the latest Blogs

Forums

Restoring On Top II

By Steve Jones - SSC Editor

Comments posted to this topic are about the item Restoring On Top II

SQL Art 2: St Patrick’s Day in SSMS (Shamrock + Pint + Pixel Text)

By Terry Jago

Comments posted to this topic are about the item SQL Art 2: St Patrick’s...

Breaking Down Your Work

By Steve Jones - SSC Editor

Comments posted to this topic are about the item Breaking Down Your Work

Visit the forum

Question of the Day

Restoring On Top II

I have a database, DNRTest, that has a number of tables and other objects in it. The other day, I was trying to mock up a test and ran this code on the same server:

-- run yesterday
CREATE DATABASE DNRTest2
GO
USE DNRTest2
GO
CREATE TABLE NewTable (id INT)
GO
Today, I realize that I need a copy of DNRTest for another mockup, and I run this:
-- run today
USE Master
BACKUP DATABASE DNRTest TO DISK = 'dnrtest.bak'
GO
RESTORE DATABASE DNRTest2 FROM DISK = 'dnrtest.bak' WITH REPLACE
What happens?

See possible answers