Sachin Pandey

Data Leader at Oracle | SaaS Product | AI/ML | Data Engineering & Data Science

Current Role:
* Leading advanced Data Science and Data Engineering initiatives for a cutting-edge SaaS product.
* Overseeing the full data lifecycle: ingestion, transformation, AI/ML modeling, and deployment.
* Driving data analytics initiatives to provide real-time insights and predictive analytics for strategic business decisions.

Previous Experience:
* Walmart: Led integration of IoT sensor data to optimize operational efficiency and enhance customer experience.
* Accenture & Drug Information Group: Gained deep expertise in retail, healthcare, and IoT industries.

Leadership & Team Development:
* Passionate about building high-performing, cross-functional teams.
* Focus on mentorship, continuous learning, and team growth through coaching and development.
* Proven track record in recruiting and scaling diverse teams for complex, large-scale data solutions.

Technical Expertise:
* Proficient in modern data engineering and data science stacks, including:
* Cloud platforms (AWS, GCP, Azure)
* Data orchestration tools (Apache Airflow)
* Machine learning frameworks (TensorFlow, PyTorch, Scikit-Learn)
* Data pipeline tools (Apache Kafka, Apache Spark, SQL solutions)
* Experienced in implementing real-time streaming analytics and batch processing systems.

Additional Skills:
* Strong background in Software Development, system design, API architecture, and cloud-native technologies.
* Expertise in bridging the gap between technical teams and business stakeholders, aligning data strategies with business objectives.

Continuous Innovation:
* Always exploring emerging technologies and methodologies in data science, engineering, and AI.
* Committed to driving business growth through data and staying ahead of industry trends.Data Lead
  • Interests: AI, ML, Data Science, Data Engineering & LLMs
  • Skills: AI, ML, Data Science, Data Engineering & LLMs

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