Database administration

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...
Read More

Implementing a Common MS SQL Server Performance Indicator

Database administration, Performance Tuning

Introduction There is often a need to create a performance indicator that would show database activity related to the previous period or...
Read More

Missing Indexes in MS SQL or Optimization in no Time

Database administration, Database development, Database Optimization & Structure, Indexes • One Comment

When executing a query, the SQL Server optimizer tries to find the best query plan based on existing indexes and available latest...
Read More

Database Optimization: Indexes

Database administration, Database development, Database Optimization & Structure, Indexes

I noticed that very few people understand how indexes work in SQL Server, especially Included...
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 used in SELECT and UPDATE statements to...
Read More

Setting Database Access Permissions

Database administration, Security

Server security mainly depends on how correctly you can configure access permissions on objects. Providing a user with excessive...
Read More

Performance of Table Variables in SQL Server

Database administration, Database development, Performance Tuning, Tables

In this article, we are going to touch upon the topic of performance of table variables. In SQL...
Read More

Query Optimization in PostgreSQL. EXPLAIN Basics – Part 3

Database administration, Performance Tuning, PostgreSQL

I continue a series of articles on the basics of EXPLAIN in PostgreSQL, which is a short review of Understanding EXPLAIN by Guillaume...
Read More

How to Analyze Activity of One Database in SQL Server

Database administration, Database Optimization & Structure

Using one SQL Server instance for many projects is not unusual. However, defining the most active project may be quite difficult. Today, I...
Read More

Using Expressions to Filter Data of Database

Database administration, Work with data

I would like to start with a description of the problem that I encountered. There are entities...
Read More
Close