Anshumali Ambasht

Anshumali Ambasht is a seasoned Data Engineering and Analytics Manager with a wealth of experience in implementing innovative data and analytics technology solutions.
Currently affiliated with Deloitte Consulting, Ambasht has amassed over 16 years of exceptional expertise in the fields of data engineering, business intelligence, analytics, data integration, and data warehousing.
His interdisciplinary background, coupled with his master’s degree in Financial Analytics from the esteemed Stevens Institute of Technology, provides him with a unique perspective on data challenges.
Ambasht’s impressive track record includes successfully spearheading numerous large-scale projects and showcasing his leadership skills in managing geographically dispersed development teams.
With a keen focus on data engineering best practices and a commitment to driving business transformation, Ambasht remains at the forefront of revolutionizing data management.

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