DB2 SQL Error SQLCODE=-805 | Fixes You Need to Know
|

DB2 SQL Error SQLCODE=-805 | Fixes You Need to Know

If you are getting the SQLCODE -805 in DB2, chances are the query you are trying to run is referencing a missing package in the DB. The creation of such packages consists of binding a set of SQL statements with the SQL database. Generally, such binding offers a more optimized solution than the general statement…

Azure Function Connect to SQL Database | 5 Steps to Follow
|

Azure Function Connect to SQL Database | 5 Steps to Follow

You can connect your Azure Function to your SQL Database without any integration programs. The process includes declaring the input and output bindings within the definition of the Azure function you want to connect. In this article, we shall discuss how to use VS Code to achieve just that. How to Connect Azure Function to…

How to Install MongoDB on AWS EC2 Ubuntu | 7 Steps To Go
|

How to Install MongoDB on AWS EC2 Ubuntu | 7 Steps To Go

Installing MongoDB on the Ubuntu EC2 instance in AWS is an excellent option if you plan on shifting to a NoSQL database. On top of the AWS benefits, you can expect efficient data management, on-demand scaling, and better security.  Let’s see how the installation process works with a step-by-step approach. How to Install MongoDB on…

How To Copy SQL Server Database | Covered In 15 Steps
|

How To Copy SQL Server Database | Covered In 15 Steps

Copying a database from an SQL server is the process of copying and distributing data and database objects from one database to another. A part and parcel of this task is to synchronize all data between the databases to ensure data integrity and consistency. To copy the SQL server database, the ‘copy database’ option from…

How to Check Database Size in SQL Server [In-depth Guide]
|

How to Check Database Size in SQL Server [In-depth Guide]

You can rapidly determine the SQL Server database size in SQL Server Management Studio (SSMS) if you only need to examine one database: Click Reports -> Standard Reports -> Disk Usage after doing a right-click on the database.  To obtain database size instead, use a stored procedure like exec sp_spaceused. Both of these approaches, meanwhile,…

3 Ways Your MySQL Migration Project Can Shake You Up

3 Ways Your MySQL Migration Project Can Shake You Up

Once a development or operations team gets over the hurdle of open-source and starts to feel comfortable with the way the software works outside of the enterprise world, they will likely start to settle in and feel comfortable. Best not to get too cushy though for there are more surprises hiding around the corner. Here…

Creating a GUI for SQL Database | Everything You Need to Know
|

Creating a GUI for SQL Database | Everything You Need to Know

Creating a GUI for your SQL database can be intricate if you go the coding route. Building a GUI app from the ground up isn’t easy unless you’re familiar with C#. That said, there are many tools like Azure Data Studio, DbVisualizer, Retool, DBeaver, and Airplane to create a GUI without writing code. What GUI…

How to Create a Database in Oracle [Step-by-Step Guide]
|

How to Create a Database in Oracle [Step-by-Step Guide]

Creating a database in Oracle includes several steps. Oracle software installation and establishing a Database Administration Authentication Method are the first steps. The creation process is then started, options for the database are configured, passwords are created, settings are reviewed, and post-configuration chores are performed. An effective and durable data management system is built around…

SQL Managed Instance vs Azure SQL Database

SQL Managed Instance vs Azure SQL Database

Before comparing SQL Managed Instance and Azure SQL Database, let’s get the similarities out of the way first. To begin with, they both have the same code base with the latest version of SQL Server. Therefore, the SQL language is the same, with identical DBMS features and query processing. As for differences, there are quite…