Author: user

Snowflake

Comparing two tables in Snowflake – An easy to implement document

When working with Snowflake, there might be scenarios where you need to compare two tables to determine differences. These differences…

Continue Reading Comparing two tables in Snowflake – An easy to implement document
Google Big Query @ Freshers.in

Google BigQuery: Filling null dates with previous row value

In the data world, it’s not uncommon to encounter scenarios where certain records might have missing date values. In BigQuery,…

Continue Reading Google BigQuery: Filling null dates with previous row value

CICD : The benefits of automating build, test, and deployment processes

In the software development world, the ability to automatically build, test, and deploy code has revolutionized the way teams deliver…

Continue Reading CICD : The benefits of automating build, test, and deployment processes

Comparing Git branch differences while ignoring specific directories

In this article, we’ll guide you through the process of comparing differences between two Git branches, and we’ll also show…

Continue Reading Comparing Git branch differences while ignoring specific directories
getDbt

DBT : Understanding the core tenets of data mesh

To fully appreciate the innovative approach of data mesh compared to traditional monolithic structures, we must delve into its foundational…

Continue Reading DBT : Understanding the core tenets of data mesh
getDbt

DBT : Understanding Data mesh: Its definition and significance

Software development and data analytics share many similarities, particularly when it comes to managing large-scale tasks, intricate operations, growing collaboration,…

Continue Reading DBT : Understanding Data mesh: Its definition and significance

Getting total number of elements in a NumPy array using Python NumPy’s np.ndarray.size

In NumPy, np.ndarray.size is an attribute that provides information about the total number of elements in a NumPy array. It…

Continue Reading Getting total number of elements in a NumPy array using Python NumPy’s np.ndarray.size

Dividing an array vertically along rows, creating multiple smaller arrays using NumPy’s np.vsplit

np.vsplit is one such function that allows you to divide an array vertically along rows, creating multiple smaller arrays. It…

Continue Reading Dividing an array vertically along rows, creating multiple smaller arrays using NumPy’s np.vsplit