Unlocking Data Insights: SAP ECC to Snowflake Integration with Qlik on Azure Cloud

Introduction In today's data-driven world, businesses are constantly seeking ways to harness the power of their data for strategic decision-making. As organizations evolve and embrace modern data warehousing solutions, integrating data from diverse sources becomes crucial. In this blog post, we will explore how to unlock valuable data insights by seamlessly transferring data from SAP … Continue reading Unlocking Data Insights: SAP ECC to Snowflake Integration with Qlik on Azure Cloud

Enhance Your Security with Trivy: The Comprehensive Vulnerability Scanner for Container Workloads

Introduction The security of your software and systems has become a top priority in an era where data breaches and cyber threats frequently make the news. Fortunately, improvements in security tools and technology have made it simpler to detect vulnerabilities early on and lower the likelihood that they will be exploited. Trivy is one such … Continue reading Enhance Your Security with Trivy: The Comprehensive Vulnerability Scanner for Container Workloads

The ultimate Snowflake migration checklist

Migration to a new data platform can be a complex and time-consuming process. To ensure a successful migration, it's important to have a well-defined plan and a checklist in place. In this blog, I will outline my own Snowflake migration checklist created based on my experience helping customers migrating their workloads to Snowflake, a cloud-based … Continue reading The ultimate Snowflake migration checklist

Determine the last database backup in SQL Server with T-SQL

Problem: T-SQL code to obtain the last database backup time, the last backup location, the last backup size and check if the file exists on the disk or not. Note: Result will only include database backups that were taken on disk. SELECT A.[Server], A.database_name, A.last_db_backup_date, B.backup_size/1024/1024 as backup_size, B.physical_device_name , 'Yes' as 'file_exists' into dbo.##BackupReport … Continue reading Determine the last database backup in SQL Server with T-SQL

SQL Server In-Place Upgrade Failed – Wait on the Database Engine Recovery Handle Failed

Issue Few weeks ago I was performing an in-place upgrade from SQL Server 2014 to SQL Server 2017. I followed each and every pre-check before performing an in-place upgrade, but got this error message at the end of the installation: The following error has occurred: Wait on the Database Engine recovery handle failed. Check the … Continue reading SQL Server In-Place Upgrade Failed – Wait on the Database Engine Recovery Handle Failed

Build a Data Lake using Lake Formation on AWS

What is a Data Lake? A Data Lake is a centralized repository for large amounts of structured and unstructured data to enable direct analytics. The above image illustrates multiple functions of a data lake, such as data ingestion, data indexing, data processing, machine learning, and data visualization. Data Lakes provides the ability to harness more … Continue reading Build a Data Lake using Lake Formation on AWS

Online Data Migration from SQL Server to Cloud Spanner using Striim

This post will focus on the implementation of a continuous migration from SQL Server to Cloud Spanner using Striim. The explanation will include steps for configuring and initial load and a continuous data replication using Change Data Capture. this is enablement post and doesn't talk about a full scale database migration and its challenges. This … Continue reading Online Data Migration from SQL Server to Cloud Spanner using Striim

Automated Database Backups for Cloud Spanner using Terraform

This post shows how to use cloudspannerecosystem/scheduled-backups to configure scheduled backups for your cloud spanner database. The setup of the required resources (cloud scheduler, pub\sub and cloud function) will be done by using terraform in this tutorial. The Architecture is as follows: We will provision the following GCP services using terraform: Cloud Scheduler: trigger tasks … Continue reading Automated Database Backups for Cloud Spanner using Terraform

SQL Server Always On Availability Groups on Google Kubernetes Engine

This tutorial shows you how to configure SQL Server AlwaysOn availability groups (AG) using DH2i DxEnterprise and Google Kubernetes Engine (GKE). This offering helps you achieve high availability for your SQL Server databases running on containers in Kubernetes. Infrastructure Design GCP Resources that will be created for this demonstration VPC Network named network-1privatenet subnetpublicnet subnetPrivate … Continue reading SQL Server Always On Availability Groups on Google Kubernetes Engine