Page 3 of 9

No Package.xml found in SFDX CLI deployment

If you have come across an issue when you are trying to deploy your changes through SFDX CLI but facing no package.xml found the issue. We assumed that you have already installed SFDX CLI into your machine. This error shows… Continue Reading →

Retrieve and Deploy your changes to Salesforce using SFDX CLI

To deploy your changes to salesforce from One Org to another Org using SFDX CLI, follow the below step by step guide. Step 1: Open your terminal and Sign In to SFDX CLI using the below command. This command will… Continue Reading →

Type of Hot Coffee

If you remain confused between various types of coffee and are not sure which one to pick when ordering coffee, this article will give you a quick idea to check. Here, we are just talking about the various hot coffee… Continue Reading →

Error (‘01000’, [01000] [unixODBC][Driver Manager]Can’t open lib ‘ODBC Driver 17 for SQL Server’ : file not found (0) (SQLDriverConnect)) in Mac

If you get the Error (‘01000’, [01000] [unixODBC][Driver Manager]Can’t open lib ‘ODBC Driver 17 for SQL Server’ : file not found (0) (SQLDriverConnect)) in Mac then run the below command to fix the issue. brew tap microsoft/mssql-release https://github.com/Microsoft/homebrew-mssql-release brew update… Continue Reading →

Data Preprocessing Steps in python

Whenever you are doing some preprocessing of data in pandas/python and reading data from any CSV file do the following things first. Trim space in all the columns. Convert each column in the right datatype. Contd.

How to set a variable in airflow admin UI and use it in DAG

Sometimes, we need a way to configure the variables from the admin UI of airflow so that we can change the value of that variable whenever required. Instead of digging into code and modify it and then deploy and test…. Continue Reading →

Set up or update base URL in airflow

The default base URL of airflow is http://localhost:8080 and because of this, you may get an issue that log files URL is still showing localhost and you have to remove localhost and replace it with your actual domain on which… Continue Reading →

Stop tracking a file in git

You can run the below commands to stop tracking a file into git. Let’s say we want to remove the data/snapshot.rds file from the git. git rm -r –cached ‘Data/snapshot.rds’ git commit -m “stop tracking Data/snapshot.rds” Happy Coding!!

How to trigger an email from airflow on failure or success of DAG

If you are using airflow in your production environment then you must have come across a requirement to trigger an email if any Dag fails so that you will be notified and fix the issue in the flow. We will… Continue Reading →

« Older posts Newer posts »

© 2024 My Beliefs

Write us at [email protected]