How To Install perl-SQL-Translator on AlmaLinux 8

In this tutorial we learn how to install perl-SQL-Translator in AlmaLinux 8. perl-SQL-Translator is Manipulate structured data definitions (SQL and more)

Introduction

In this tutorial we learn how to install perl-SQL-Translator on AlmaLinux 8.

What is perl-SQL-Translator

SQL SQL table definitions into other formats, such as other vendor-specific SQL, ER diagrams, documentation (POD and HTML), XML, and Class classes. The main focus of SQL for other structured data formats, including Excel spreadsheets and arbitrarily delimited text files. Through the separation of the code into parsers and producers with an object model in between, it’s possible to combine any parser with any producer, to plug in custom parsers or producers, or to manipulate the parsed data via the built-in object model. Presently only the definition parts of SQL are handled (CREATE, ALTER), not the manipulation of data (INSERT, UPDATE, DELETE).

We can use yum or dnf to install perl-SQL-Translator on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install perl-SQL-Translator.

Install perl-SQL-Translator on AlmaLinux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install perl-SQL-Translator using dnf by running the following command:

sudo dnf -y install perl-SQL-Translator

Install perl-SQL-Translator on AlmaLinux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install perl-SQL-Translator using yum by running the following command:

sudo yum -y install perl-SQL-Translator

How To Uninstall perl-SQL-Translator on AlmaLinux 8

To uninstall only the perl-SQL-Translator package we can use the following command:

sudo dnf remove perl-SQL-Translator

References

Summary

In this tutorial we learn how to install perl-SQL-Translator on AlmaLinux 8 using yum and dnf.