Kishan Kareliyatechwithkishan.hashnode.dev·Aug 24, 2024Prisma vs. SQL: Why This Modern ORM is a Game-ChangerIntroduction If you’ve been working with databases in Node.js, you might have heard about Prisma. It’s a powerful tool that helps developers interact with databases more easily and efficiently. But what exactly is Prisma, and why should you consider ...1 likeprisma
Jamey Bartondbajamey.hashnode.dev·Jun 10, 2024How to list all available tables in PostgreSQL?Checking the list of database tables is a common task that might be performed multiple times daily, and major database management systems provide built-in methods for this purpose. PostgreSQL offers several methods that will illustrate using the SQL ...PostgreSQL
Jamey Bartondbajamey.hashnode.dev·Jun 6, 2024PostgreSQL List Schemas: Various Ways to Show All SchemasPostgreSQL is one of many popular relational databases, known for its reliability, extensibility, and robust feature set, making it a preferred choice for many. When working with PostgreSQL, grasping the database schema is equal to understanding its ...PostgreSQL
Jamey Bartondbajamey.hashnode.dev·May 30, 2024How to list the users in a MySQL/MariaDB database and Manage PermissionsUser management involves granting database access, setting user permissions, and monitoring activities. This process, traditionally handled via command-line utilities, includes creating, modifying, and deleting accounts, and configuring user privileg...Databases
Jamey Bartondbajamey.hashnode.dev·May 29, 2024A Single Killer Feature You Need For Collaborative Database Development: Source Control For MySQLDatabase development is a complex process that requires quality planning, technical skills, experience, and collaboration. Regardless of the project scope and the development team size, efficient partnership can help you improve, accelerate, and simp...Databases
Jamey Bartondbajamey.hashnode.dev·May 28, 2024Top 9 Database Documentation Tools of 2024 — Free and Paid Options UnwrappedDatabase documentation tools usually aren't the priority for the teams working on small projects. When coping with routine development tasks, it's easy to overlook the importance of creating comprehensive database documentation since there are always...Databases
Jamey Bartondbajamey.hashnode.dev·May 27, 2024How to duplicate a table in PostgreSQLCopying a database table (or duplicating it, for that matter) is one of those basic operations that can be performed for a variety of reasons. Let's have an overview of the most common situations in which you need to copy PostgreSQL tables—and the me...PostgreSQL
Jamey Bartondbajamey.hashnode.dev·May 21, 2024Best Navicat alternative for MySQL and MariaDB databasesNavicat is a popular brand of GUI tools that help handle a number of tasks related to database development and management. Moreover, these tools work across a wide variety of the world's biggest relational database systems, including, among others, M...MySQL
Jamey Bartondbajamey.hashnode.dev·May 20, 2024dbForge Edge: Tutorials and Useful ResourcesLearn how to use dbForge Edge in few minutes. No matter whether you are new to dbForge Edge or you have been using the tool for some time, you'll find information on this page very valuable. Dive into features videos, articles, and other useful resou...Databases
Jamey Bartondbajamey.hashnode.dev·May 14, 2024Tune Performance using MySQL Query EXPLAIN PlanMySQL EXPLAIN plan helps you understand how MySQL queries are executed and what indexing techniques are better for running queries efficiently. The EXPLAIN plan is a handy statement, especially when you need to optimize MySQL queries. Everyone has ex...MySQL