Tag: sql

Logon Triggers in SQL Server

Database development, Triggers

A logon trigger, as the name suggests, is a trigger that fires in response to a LOGON event in SQL...
Read More

Difference Between Inline and Out-of-Line Constraints

Constraints, Database development

Constraints on tables and columns allow you to enforce the data quality. In SQL, there are two ways of creating constraints on a...
Read More

How to Handle Errors in SQL Server Nested Transactions

Database administration, Troubleshooting Issues

In this article, we will explore SQL Server Nested Transactions, a transaction block with one or several transactions. The image describes...
Read More

Calculating Running Total with OVER Clause and PARTITION BY Clause in SQL Server

Database development, Statements • One Comment

You often come across scenarios where you have to calculate a running total of a quantity. A...
Read More

SQL Server Table Partitioning and Partitions Tutorial

Database development, Tables

Problem In this article, we will focus on the demonstration of table partitioning. The simplest explanation of table partitioning can be...
Read More

Microsoft SQL Operations Studio: Understanding and Installation

Tools & technologies, Utilities & Extensions

SQL Server Management Studio is considered as the default integrated graphical user interface tool that has been used for many years to...
Read More

Dynamic SQL vs Stored Procedure

SQL Server

Dynamic SQL and stored procedures are among the most important SQL Server components. Both have...
Read More

Example of Improving Query Performance with Indexes

Database administration, Database development, Indexes, Oracle, Performance Tuning

In this article, we’ll look at how an index can improve the query performance. Indexes in Oracle and other databases are objects that...
Read More

50 Shades of Oracle Database Certification Exam

Database development

In this article, I would like to talk about one of the basic certifications from Oracle – Oracle Database SQL Certified Expert....
Read More

5 Ways to Update Data with a Subquery in Oracle SQL

Database administration, Work with data

A subquery is a powerful way to find the data you want to use for another query. They are often...
Read More
Close