SQL: DATA GROWTH

MS-SQLQueriesSQL

Data growth refers to an increase in the amount of the database’s data files. For SQL Server, (.MDF) file extension, for Oracle, (.DBF) file extension.

This metric is intended to identify any case where the database file has grown to be bigger than expected. The threshold sets a level beyond which file size growth triggers a warning. The database file size is highly dependent on the level of activity and the overall health of the database. The trigger levels should be set in accordance with past behavior and also take into account capacity levels to absorb such growth.

Find out how you can save hours of work when investigating the root cause of this issue.
Symptoms

The total database size increased and is now larger than the designated threshold.

Impact: High

If uncontrolled, data files can consume all available disk space, leading to a system crash, and the rapid increase in database size might slow down queries’ performance.

The bigger the database file, the backup and restore processes of the database are going to be longer, as well as maintenance tasks. When the data load is high, higher resource utilization (CPU, Memory, Disk I/O) is expected.

Expected behavior

There is no standard metric for database growth. This alert indicates unexpected behavior and needs to be investigated.
The best practice, in this case, is to evaluate the total data disk space (MDF or DBF files), together with full/differential backups disk space and slow executions, in light of the business flow and specific database role. Tables usage (including in-memory tables) should also be checked periodically, including indexes’ usage.

Possible causes

1- Inefficient Coding or recent data updates without deletions.  Priority: High

If the sudden increase is noted during normal operations, it may be an indication that a query is inserting new data in an invalid manner – possibly a loop.
When doing data insertion, new records update and are inserted into tables, causing the growth of the database file might as it accumulates over time. Without managing the deletions properly, the database data files might grow uncontrolled, resulting in unused space within the database files.

Problem identification:

Identify big data files which have grown rapidly. Check if some are with large unused data space or had many inserts of new records recently.

Hands-on approach
Get the answer in just seconds!
Hands-on approach
  1. You should regularly monitor the database’s size, checking if it has grown or not. For that, you can implement a script written by a DBA. You should also track disk usage, using the Performance monitor for that.
  2. Identify and analyze queries that are frequently executed and contribute to data growth. For SQL Server, you can use SQL Server profiler. For Oracle, you can use Oracle Enterprise Manager. Both Oracle and SQL Server also provide system views that offer insights into query performance. Take into account that you should track this issue, taking some time in order to have results in a wide time range, and still, you don’t have history data to compare with.
  3. Examine execution plans for inefficient queries. Track queries with major updates and inserts of data to the overgrown databases.
  4. Optimize inefficient queries by using appropriate indexing, rewriting queries, and utilizing the execution plans.
  5. Track this issue over time and check if the database data file has grown slower or lesser.
Get the answer in just seconds!

AimBetter automatically tracks and alerts about abnormalities in data growth.

You can easily follow big inserts and updates through our solution’s capabilities to drill into the database code level.

In addition, the examination of plans is automatically done with our algorithms, providing insights on poor performance queries.

Recommended action :

Examine all currently running queries, especially those that remained active for unexpected lengths, investigating these queries code.
Avoid doing many operations that involve full table scans, excessive sorting, or high disk I/O.

Optimize queries by implementing new indexes, investigating the execution plan, and trying to lower the ratio of updates and corresponding deletions. Make sure to have data integrity checks for the databases in high routine.

2- Index Creation, Maintenance, and Corruption  Priority: Medium

Indexes allow the database engine to locate rows that match certain search conditions quickly.
Creating, rebuilding, or reorganizing indexes can contribute to database file growth since it consumes additional storage space. Reindexing can increase the size of the database. The reason for this is that when you rebuild an index, there must be enough empty room in the database to create a copy of the largest table in the database as the index rebuilding occurs.
Indexes for sure contribute to better performance, as indexes accumulate, queries might become faster. However, the storage space required by the indexes can impact overall database file growth.

Problem identification:

Identify queries related to index creation, maintenance or corruption that involve high disk I/O to a recently grown database data file.

Hands-on approach
Get the answer in just seconds!
Hands-on approach
  1. Using tracking tools, identify queries with high disk I/O, causing an overgrown database data file. It might be because of high execution time or non-optimal query plans. You can use performance analysis, SQL Server profiler, or Oracle Enterprise Manager. This step might take time, and there is no guarantee of accurate results since you check only current issues without historical events.
  2. Apply filters to focus on queries involving index creation, maintenance, or corruption. In order to identify missing indexes, you can use Database Engine Tuning Advisor or other tools.
  3. Another option, also for live environments, is querying system views to identify active queries with high I/O activities.
  4. Investigate the execution plans of I/O-intensive queries. Look for operations that involve index creation, maintenance, or corruption. For that, you should monitor database event logs and error messages.
  5. Analyze any scheduled jobs or scripts responsible for index maintenance. For that, you should know your database environment.
Get the answer in just seconds!

You will receive an alert once the data file of the database has grown larger than the set threshold.

You can review the query content and filter by its code.

Recommended action :

A normal effect of reindexing is data growth. However, good practice is for the DBCC DBREINDEX process to be run at times when normal activity is lowest. The reindexing process should be followed by the process to shrink the database (DBCC SHRINKFILE). Normal database size should be seen after that has finished.
Make sure to follow routinely for unnecessary or fragmented indexes and check if it’s possible to compress part of it.

3- Large and complex queries or bulk operations.  Priority: High

Bulk data load is defined as the process of rapidly inserting a large volume of data into a database. Data growth might happen because of loading too much data at once by implementing bulk operations. It might be BULK INSERT (for SQL Server) or SQL*Loader (for Oracle).
When the query is too complex, for example, having large joins, it can require additional space and thus affect database file growth.

Problem identification:

Identify bulk load operations in SQL Server or Oracle by monitoring database activity and analyzing performance metrics. Furthermore, search for large queries with many operations. Check which of the queries are related to the database with the overgrown data file.
Hands-on approach
Get the answer in just seconds!
Hands-on approach
  1. Use tracking tools in order to identify bulk insert operations or queries with complex joins. For SQL Server, you might use SQL Server Profiler or extended events. For Oracle, you might use Oracle Enterprise Manager (OEM). It might take time and require a DBA. Filter by the relevant database that its data file has grown.
  2. Other option is using performance counters related to bulk insert operations, or query performance views to identify statements involving high rows count.
  3. Identify irregular I/O patterns to identify bulk operations or large queries.
  4. Investigate the query execution plan in order to identify queries with meaningful and many joins operations.
Get the answer in just seconds!

You don’t have to work hard in order to identify large queries or bulk operations. Filter by needed content using AimBetter’s queries panel only when receiving an alert about extensive data growth.

Recommended action :

Avoid implementing many large queries and divide them into several executions if possible. For bulk operations, consider implementing minimal logging and better data-loading options. Instead of inserting all data in a single batch, consider breaking bulk operations into smaller chunks.

4- Logging and long Transactions. Priority: Low

Along with log growth, which might be caused by high levels of transaction activities (updates, inserts, and deletions, which the transaction log needs to record), data growth might also occur.
When data is modified or added to databases during a transaction, new data pages can be required, resulting in database data file growth.

Problem identification:

Monitor the database to identify increased activity measured by data file growth, transaction rates, disk I/O, and performance.
Hands-on approach
Get the answer in just seconds!
Hands-on approach
  1. Using tracking tools such as SQL Server Profiler (for SQL Server) or Oracle Enterprise Manager might help to capture events related to increased data activity which is measured by data page allocations. Take into account that you have to wait until getting efficient results since history data is not provided.
  2. Other options might be using database logs or DMVs (dynamic management views), which should be done by someone familiar with these tools.
  3. Investigate the queries’ code in order to prevent them from causing data growth, if possible.
Get the answer in just seconds!

All data is provided in one panel including a view of historical performance, enabling immediate comparison with no need to wait for data to aggregate.

Recommended action :

Make sure the transactions don’t remain open for more time than needed. When new pages are created, data growth will happen since it’s a consequence of database activity, yet you can make sure that performance won’t be harmed. Check the database design and storage. If the database is big, separate storage should be allocated for it.

5- TempDB Usage.  Priority: Low
TempDB in SQL Server stores temporary data, such as temporary tables, stored procedures, and query results. It’s common when queries cause tempdb’s file growth.

Problem identification:

Identify growth of the tempdb file by identifying increased performance and long-running queries.

Hands-on approach
Get the answer in just seconds!
Hands-on approach
  1. Connect to the SQL Server Management Studio, and check the tempdb database properties. Otherwise, use system views.
  2. Use extended events or traces (using SQL Server Profiler) to capture information about TempDB growth events. A DBA might do it, yet it won’t provide historical data. Therefore you wouldn’t be able to identify this issue as new or repetitive unless you wait for an undefined period of time when this issue might keep happening again and again.
Get the answer in just seconds!

You don’t have to track this issue alone when having an automatic notification system.

Easily find queries causing tempdb growth, including recommendations for improvements if needed.

Recommended action :

Make sure that tempdb has multiple data files to divide I/O utilization, and allocate these files to separate storage from the other database data files. Optimize problematic queries and control their performance. Continuously monitor tempdb database file usage and performance metrics to detect growth when it happens.

    Learn more how you can solve IT systems performance issues faster.



    Share with friends:

    Testimonials:

    FEATURED POSTS

    Menu
    Skip to content