Skip to main content

plugin_proval_scripttimesaved_

Purpose

These queries are used to generate tables and triggers to retain information about the total time saved per script in an Automate instance. Below are the explanations of the tables generated and their contents that are filled by the triggers.

Dependencies

N/A - These tables are populated with the associated triggers.

Tables

plugin_proval_scripttimesaved_daily

ColumnTypeExplanation
ScriptGUIDVARCHARThe GUID of the script that is being measured.
DateDATEThe current full date of the measurement.
TimeSavedINTThe total number of minutes saved by this script for the current date.
CountINTThe total number of script runs for this script for the current date.

plugin_proval_scripttimesaved_weekly

ColumnTypeExplanation
ScriptGUIDVARCHARThe GUID of the script that is being measured.
WeekINTThe current week of the year (1 - 52) of the measurement.
YearINTThe current year of the measurement.
TimeSavedINTThe total number of minutes saved by this script for the current week/year combination.
CountINTThe total number of script runs for this script for the current week/year combination.

plugin_proval_scripttimesaved_monthly

ColumnTypeExplanation
ScriptGUIDVARCHARThe GUID of the script that is being measured.
MonthINTThe current month of the year (1 - 12) of the measurement.
YearINTThe current year of the measurement.
TimeSavedINTThe total number of minutes saved by this script for the current month/year combination.
CountINTThe total number of script runs for this script for the current month/year combination.

plugin_proval_scripttimesaved_yearly

ColumnTypeExplanation
ScriptGUIDVARCHARThe GUID of the script that is being measured.
YearINTThe current year of the measurement.
TimeSavedINTThe total number of minutes saved by this script for the current year.
CountINTThe total number of script runs for this script for the current year.

SQL

Download SQL Queries