...
Your Maintenance Plan (Update statistics) is all set.Save it
Plant Applications Database Purge
Purging the plant applications database should only be done by someone who knows the configuration and business rules of the system very well. Careful investigation and consideration should be done prior to making decisions about what to purge and when to purge. There are many different versions of purge utilities. The following links will bring you to the GE knowledge base articles that describe the purge utility and include downloads of the various versions. Depending on the size of the database, the initial purge could take several hours and should be done offline.
It is recommended that you perform backups prior to purging and develop a test plan to validate the system after the purge to identify any issues that it may have introduced.
Plant Applications Database Purge 2.0 - Version 215.8, 4.2.3, 4.3.1, 4.4, 4.4.1 | GE Customer Center
Plant Applications Database Purge - Compatible with Plant Apps 5.0, 6.1 & 6.2 | GE Customer Center
SQL Maintenance Recommendations for Plant Applications Database
SQL Maintenance Recommendations for Plant Applications Database based on Ola Hallegren solution.
The attached document is old solution which may be used when #1 can't be deplyed due to e.g. local customer's policy. Please reference the attached document for more information on SQL table fragmentations, SQL Statistics, and SQL Execution Plans.
Solution
Using Ola Hallengren Solution for Index Maintenance
Ola Hallengren's scripts are simple to configure and can be used to optimize SQL Server indexes:
Index Maintenance: The script performs index defragmentation, index rebuilding and update statistics on all indexes in a database.
Index Optimization: The script analyzes index fragmentation and recommends indexes to rebuild or reorganize.
Index Verify: The script performs index verification and reports any corrupted indexes.
By using Ola Hallengren's scripts, you can automate and simplify index maintenance tasks, improve database performance, and ensure the integrity of your indexes.
Below is the Configuration of Maintenance Solution:
CommandLog.sql: Table to log commands
URL to Download: https://ola.hallengren.com/scripts/CommandLog.sql
CommandExecute.sql: Stored procedure to execute and log commands
URL to Download: https://ola.hallengren.com/scripts/CommandExecute.sql
IndexOptimize.sql: Stored procedure to rebuild and reorganize indexes and update statistic
URL to Download: https://ola.hallengren.com/scripts/IndexOptimize.sql
Usage for IndexOptimize Proc: Refer https://ola.hallengren.com/sql-server-index-and-statistics-maintenance.html
One of the Best ways of Index and Statistics Maintenance is having as below:
Update only Modified Statistics on Daily Basis and Log to Table “CommandLog”.
Code Block |
---|
EXECUTE master.dbo.IndexOptimize --
@Databases = 'SOADB', --List of Databases can be passed as CSV String
@FragmentationLow = NULL,
@FragmentationMedium = NULL,
@FragmentationHigh = NULL,
@UpdateStatistics = 'ALL',
@OnlyModifiedStatistics = 'Y',
@LogToTable = 'Y'; |
Index Re-Build and Re-Organize along on Weekly Basis based on the Fragmentation Percentage.
Code Block |
---|
EXECUTE master.dbo.IndexOptimize --
@Databases = 'SOADB',
@FragmentationLow = NULL,
@FragmentationMedium = 'INDEX_REORGANIZE,INDEX_REBUILD_ONLINE,INDEX_REBUILD_OFFLINE',
@FragmentationHigh = 'INDEX_REBUILD_ONLINE,INDEX_REBUILD_OFFLINE',
@FragmentationLevel1 = 5,
@FragmentationLevel2 = 30,
@UpdateStatistics = 'ALL',
@OnlyModifiedStatistics = 'Y',
@LogToTable = 'Y'; |
We can use master.dbo.CommandLog Table to Analyze the frequency of Indexes and Statistics Updation.
SQL minimum configuration
Minimum requirements (TCP/IP and PIPEs enabled, Port 1433)
...
Proficy Plant Applications is made up of 100's if not 1000+ tables. Below are some of the key tables that grow larger and a used very often. If their indexes have high fragmentation Plant Applications will experience poor performance.
Primary Key Tables |
Tests |
Timed_Event_Details |
Event_Status_Transitions |
Event_Components |
Events |
Event_Details |
Secondary Key Tables |
Test_History |
Timed_Event_Detail_History |
Event_History |
DBCC
The primary purpose is to check for consistency errors, and should ideally be run every day.
The basic syntax is:
DBCC CHECKDB ('YourDatabase') WITH NO_INFOMSGS
DBCC CHECKDB('DatabaseName') WITH NO_INFOMSGS, ALL_ERRORMSGS
NO_INFOMSGS prevents an excessive number of informational messages from being generated. There are several other options, but this is the syntax you should aim to use as it performs all integrity checks.
This may take a long time on large databases and you may want to specify the PHYSICAL_ONLY option. This checks physical on-disk structures, but omits the internal logical checks. The syntax is:
DBCC CHECKDB ('YourDatabase') WITH PHYSICAL_ONLY
...
In order to reduce fragmentation, we will have to reorganize or rebuild the indexes. Choosing between reorganizing or rebuilding depends on the query results.For heavily fragmented indexes a rebuild process is needed, otherwise index reorganization should be sufficient. The following table summarizes when to use each one:
Reference Values (in %) | Action | SQL statement |
avg_fragmentation_in_percent > 5 AND < 30 | Reorganize Index | ALTER INDEX REORGANIZE |
avg_fragmentation_in_percent > 30 | Rebuild Index | ALTER INDEX REBUILD |
SQL logs
SQL server log files are found in the Management section of the Object Browser of SQL.
...
Plant Applications is installed with a Stored procedure that will determine whether there is Blocking occurring in the database. There may be a need to have heightened permissions to execute this. Below is an example of running it and observing that there are no blocks.
...
Real Time Information Portal Maintenance
"Portal" has reached its end of life with GE. If you are still operating Proficy Portal then you should back up your configuration files regularly.
Example of a Backup batch command for Portal files.
@echo off
rem
rem copy portal config and screens
rem
cd "C:\Program Files\GE Fanuc\Proficy Portal\webapps\"
xcopy /E /q /y C: \\remotestorageshare\MESbackups\MESPortal
Executed daily via Scheduled job Backup_Portal.job
Historian Server Maintenance
The Historian server is the central point for managing all of the client and collector interfaces, storing and (optionally) compressing data and retrieving data. All tag data (numbers, strings, BLOBs) are stored in a proprietary format in Data Archives. Each Data Archive represents a specific time period of historical data.
...
On a regular schedule, examine and analyze the system performance indicators displayed on the System Statistics screen of the Historian Administrator, as follows:
Field | What to Monitor |
Est. Days to Full | If time is growing short, make sure that the server has sufficient unused storage capacity to open a new archive when the active one fills up. Verify that the Create New Archives Automatically function is enabled. If it is disabled, you must manually create a new archive before the active archive fills up. If you do not have enough unused storage capacity, you may have to enable the Overwrite Old Archives feature. Since this feature overwrites existing data, exercise caution in using it. |
Consumption Rate of Archive Storage | If the rate is excessively high, you must either reduce the rate at which data flows into the system or increase the filtering applied to the data to lower the rate of archiving. To reduce the collection rate, slow the polling rate on some or all tags. To increase filtering, enable compression at the collector and/or archiver and widen the compression deadbands. |
Failed Writes | If the display shows a significant number of failed writes, investigate the cause and take corrective action to eliminate the malfunctions. Refer to the DataArchiver-XX.log file or query the message database to determine the tags for which failed writes occurred.For example, trying to write values to a deleted archive causes failed writes. Trying to archive data with a timestamp that precedes the start time of the first archive, trying to write to a read-only archive, or trying to write a value with a timestamp more than 15 minutes ahead of the current time on an archiver will produce a failed write. |
System Alerts | Examine the messages and alerts and take appropriate action to correct any problems. |
Collector Performance Indicators (see Collector Maintenance, Performance Tab) | Avg. Event Rate Chart – is the rate at a normal level? |
Avg. Event Rate |
Chart, Compression |
Chart, Overruns Chart | Does the chart exhibit an acceptable trend line? If not, determine why. Balance polling schedules, adjust scan frequencies (collection intervals), and modify compression deadbands to lighten load. Compression Chart – is compression effectiveness acceptable? If not, verify that compression is enabled and then widen the deadbands to increase the effect of compression.Overruns Chart – if the value is anything other than zero, determine the severity and cause of the problem and take corrective action. |