-
SQL Server Data Tools (SSDT)
SQL Server Data Tools (SSDT) is a modern development tool for building SQL Server relational databases, Azure SQL Databases, Analysis Services (AS) data models, Integration Services (IS) packages, and Reporting Services (RS) reports, which comes integrated with Visual Studio. With SSDT, you can design and deploy any SQL Server data models with the same ease as…
-
Integration of Git into Eclipse IDE
The Eclipse IDE provides support for the Git version control system. You can easily perform the necessary Git commands like staging, commit, merge, pull and push via the Eclipse IDE. Git is pre-installed in Eclipse IDE. If git is not installed by default, go to Help > Eclipse Marketplace and install git explicitly. 1. Git Cloning Process: – This tutorial…
-
Implementing Azure DevSecOps with Microsoft Credential Scanner
Let’s look at CredScan which is a Microsoft Code Analysis extension and it is abbreviated as MSCA in Azure DevOps. This blog outlines a set of simple steps to implement Credential Scanning using Azure DevOps on an ASP.NET application. Introducing MSCA Microsoft Security Code Analysis extension is a set of tasks that helps implement security analysis…
-
Difference Between K8S vs Azure Kubernetes Service (AKS)
Kubernetes aka K8s is container orchestration tool, which helps us to control our containers in the clusters. It is open source platform for managing containerized applications. Born in GOOGLE, written in GO/Golang. Donated to CNCF in 2014. Kubernetes v1.0 was released on July 21 2015. Current stable version in 1.14 and latest is 1.17. K8S…
-
Code Analysis & Code Metrics Integration in Azure Pipelines
This documentation shows the tutorial on how to integrate Visual Studio Code Analysis and Code Metrics in Azure Pipelines using YAML. Follow the steps: Open Visual Studio 2019 and open project or solution and select your project. Now you have to add a NuGet package named “Microsoft.CodeAnalysis.Metrics” to your solution. For this right click on…
-
Reusable Workflows
Reusable Workflows: A reusable workflow is a pre-defined GitHub Actions workflow that can be called from another workflow. Reusable workflows make it easy to treat a workflow like an Action. It can be referenced and executed from other workflows in the caller’s context. This allows teams to share common workflow patterns, to centralize best practices,…
-
Migrate SQL Server Database To Azure SQL Server
In this blog we will see how to migrate the SQL Server database to Azure SQL Server. The Import and Export Wizard is a simple way to copy data using bacpac file. Export to bacpac file in SQL Server Management Studio (SSMS) Open and connect database file in SQL Server Management Studio (SSMS) …
-
Migrate SQL Server Database To Azure SQL
In this blog we will see how to migrate the SQL Server database to Azure SQL Server. The Import and Export Wizard is a simple way to copy data using bacpac file. Export to bacpac file in SQL Server Management Studio (SSMS)
-
Migrate SQL Server Database To Azure SQL Server
In this blog we will see how to migrate the SQL Server database to Azure SQL Server. The Import and Export Wizard is a simple way to copy data using bacpac file. Export to bacpac file in SQL Server Management Studio (SSMS) Open and connect database file in SQL Server Management Studio (SSMS) 2. To export a database…
-
Microsoft Azure : Azure App Service [Build And Host Web Apps, Mobile-Back Ends Without Managing Infrastructure]
Introduction In this blog post we will see what is Azure App Service and it’s features and why do we use it, we can develop an application in any language or framework, such as .NET, .NET Core, Java, Node.js, PHP, or Python. Applications run and scale as per our need with complex architecture on both Windows…