category

Home / DeveloperSection / Category

Which is better Entity Framework or ADO.NET?
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.
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.

WHAT ARE TRIGGERS?
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?
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
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
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.

Difference between Delete, Truncate, Drop
Difference between Delete, Truncate, Drop

Delete command is used to delete all the rows from the table. If we use where clause then according to condition specific rows will be deleted. In del