category

home / developersection / category

10 Best NoSQL Databases
database 10-May-2024
10 Best NoSQL Databases

There are so many types and options, from traditional relational databases (SQL databases) to NoSQL. Here are the best NoSQL databases.

Which is better Entity Framework or ADO.NET?
database 25-Feb-2024
Which is better Entity Framework or ADO.NET?

There are different tools for data access in the .net development like ado.net and Entity Framework. But which one is better. Let's see!

What is database normalization? Explain with example.
database 23-Feb-2024
What is database normalization? Explain with example.

Database normalization is the process of structuring a relational database with a series of so-called normal forms in order to reduce data redundancy.

How executing SQL Queries in SQL Server Management Studio (SSMS) and Displaying Results?
database 30-Oct-2023
How executing SQL Queries in SQL Server Management Studio (SSMS) and Displaying Results?

SQL Server Management Studio (SSMS) is a powerful tool for executing SQL queries and displaying query results.

Connecting to a SQL Server Instance with SQL Server Management Studio: Step-by-Step Guide
database 30-Oct-2023
Connecting to a SQL Server Instance with SQL Server Management Studio: Step-by-Step Guide

SQL Server Management Studio (SSMS) is a powerful tool for working with SQL Server databases. To harness its capabilities.

Exploring Best Practices for Database Security
database 24-Mar-2023
Exploring Best Practices for Database Security

Organizations need to protect their data from potential attackers.

Risks and challenges of data access and sharing
database 14-Dec-2022
Risks and challenges of data access and sharing

Learn Risks and challenges of data access and sharing in this blog

Most Common Data Backup Mistakes in 2020
database 30-Nov-2022
Most Common Data Backup Mistakes in 2020

Learn Most Common Data Backup Mistakes in 2020 in this blog

WHAT ARE TRIGGERS?
database 07-Jul-2017
WHAT ARE TRIGGERS?

A trigger is a set of SQL statements stored in the database structure. A Trigger is a database object that is attached with the table in SQL.A SQL trigger is fired whenever an event or function associated with a table occurs ....

What is Normalization In Database?
database 01-Jul-2017
What is Normalization In Database?

The structuring of Database is normalization, Normalization is the process of restructuring tables to eliminate design problems. This process removes redundant data, makes it possible to access data more easily.

Databases To Learn In 2017
database 30-May-2017
Databases To Learn In 2017

PostgreSQL releases its two versions 9.5 and 9.6, this year. They launched the UPSERT functionality after a long time that we know from MySQL (aka ON DUPLICATE KEY UPDATE), better full text search and speed improvements.

Cursor in Sql server database
database 17-Feb-2017
Cursor in Sql server database

The Cursor is database object use for getting data and manipulating particular row at a time. It is associated with select query it processes each row returned by select query.