File size: 15,007 Bytes
66b3b8e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 |
<!DOCTYPE html>
<html lang="en" data-content_root="./">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="viewport" content="width=device-width, initial-scale=1" />
<title>DBMS Job — pgAdmin 4 8.6 documentation</title>
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=fa44fd50" />
<link rel="stylesheet" type="text/css" href="_static/style.css?v=d36593c3" />
<script src="_static/documentation_options.js?v=d4c83366"></script>
<script src="_static/doctools.js?v=9a2dae69"></script>
<script src="_static/sphinx_highlight.js?v=dc90522c"></script>
<script src="_static/sidebar.js"></script>
<link rel="index" title="Index" href="genindex.html" />
<link rel="search" title="Search" href="search.html" />
<link rel="next" title="DBMS Program" href="dbms_program.html" />
<link rel="prev" title="Using EDB Job Scheduler" href="dbms_job_scheduler.html" />
</head><body>
<div class="related" role="navigation" aria-label="related navigation">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
<a href="dbms_program.html" title="DBMS Program"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="dbms_job_scheduler.html" title="Using EDB Job Scheduler"
accesskey="P">previous</a> |</li>
<li class="nav-item nav-item-0"><a href="index.html">pgAdmin 4 8.6 documentation</a> »</li>
<li class="nav-item nav-item-1"><a href="managing_database_objects.html" >Managing Database Objects</a> »</li>
<li class="nav-item nav-item-2"><a href="dbms_job_scheduler.html" accesskey="U">Using EDB Job Scheduler</a> »</li>
<li class="nav-item nav-item-this"><a href="">DBMS Job</a></li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body" role="main">
<section id="dbms-job">
<span id="id1"></span><h1><span class="target" id="index-0"></span>DBMS Job<a class="headerlink" href="#dbms-job" title="Link to this heading">¶</a></h1>
<p>Use the <em>DBMS Job</em> dialog to create a DBMS Job.</p>
<img alt="DBMS Job dialog general tab" class="align-center" src="_images/dbms_job_general.png" />
<p>Use the fields in the <em>General</em> tab to create job:</p>
<ul class="simple">
<li><p>Use the <em>Name</em> field to add a descriptive name for the job. The name will
be displayed in the <em>pgAdmin</em> object explorer.</p></li>
<li><p>Use the <em>Enabled?</em> switch to indicate that job should be enabled or disabled.</p></li>
<li><p>Use the <em>Job Type</em> field to select the type of the job. Type could be SELF-CONTAINED or PRE-DEFINED.
If the Job Type is Self-Contained you need to specify the action and repeat interval in the Action and Repeat tabs respectively.
If the Job Type is Pre-Defined you need to specify the existing Program and Schedule names in the Pre-Defined tab.</p></li>
<li><p>Store notes about the job in the <em>Comment</em> field.</p></li>
</ul>
<p>Click the <em>Action</em> tab to continue.</p>
<img alt="DBMS Job dialog action tab" class="align-center" src="_images/dbms_job_action.png" />
<p>Use the <em>Action</em> tab to select the action for the job. This tab is only enabled when the job type is ‘SELF-CONTAINED’.</p>
<ul class="simple">
<li><p>Use the <em>Type</em> field to select the type of the job. Type could be PLSQL BLOCK or STORED PROCEDURE.</p></li>
<li><p>Use the <em>Procedure</em> field to select an existing procedure that executes when the job is invoked.</p></li>
<li><p><em>Number of Arguments</em> field is read-only and indicates the quantity of arguments necessary for the chosen procedure.</p></li>
</ul>
<p>Click the <em>Code</em> tab to continue.</p>
<img alt="DBMS Job dialog code tab" class="align-center" src="_images/dbms_job_code.png" />
<ul class="simple">
<li><p>Use the <em>Code</em> field to write the code that executes when the job is invoked.
This tab is only enabled when the job type is ‘SELF-CONTAINED’ and type of the action is set to ‘PLSQL BLOCK’.</p></li>
</ul>
<p>Click the <em>Arguments</em> tab to continue.</p>
<img alt="DBMS Job dialog arguments tab" class="align-center" src="_images/dbms_job_arguments.png" />
<ul class="simple">
<li><p><em>Arguments</em> tab outlines the arguments required by the selected procedure in the ‘Action’ tab. This tab is only enabled when the job type is ‘SELF-CONTAINED’.</p></li>
</ul>
<p>Click the <em>Repeat</em> tab to continue.</p>
<img alt="DBMS Job dialog repeat tab" class="align-center" src="_images/dbms_job_repeat.png" />
<p>Use the <em>Repeat</em> tab to select the repeat interval for the job. This tab is only enabled when the job type is ‘SELF-CONTAINED’.</p>
<ul class="simple">
<li><p>Use the calendar selector in the <em>Start</em> field to specify the starting date
and time for the job.</p></li>
<li><p>Use the calendar selector in the <em>End</em> field to specify the ending date and
time for the job.</p></li>
<li><p>Use the <em>Frequency</em> field to select the frequency. Frequency is one of the following:
YEARLY, MONTHLY, WEEKLY, DAILY, HOURLY, MINUTELY.</p></li>
<li><p>Use the <em>Date</em> field to select the date on which job will execute.Date is YYYYMMDD.</p></li>
<li><p>Use the <em>Months</em> field to select the months in which the job will execute.</p></li>
<li><p>Use the <em>Week Days</em> field to select the days on which the job will execute.</p></li>
<li><p>Use the <em>Month Days</em> field to select the numeric days on which the job will
execute.</p></li>
<li><p>Use the <em>Hours</em> field to select the hour at which the job will execute.</p></li>
<li><p>Use the <em>Minutes</em> field to select the minute at which the job will execute.</p></li>
</ul>
<p>Click the <em>Pre-Defined</em> tab to continue.</p>
<img alt="DBMS Job dialog predefined tab" class="align-center" src="_images/dbms_job_predefined.png" />
<p>Use the <em>Pre-Defined</em> tab to select the existing program and schedule to create the job.
This tab is only enabled when the job type is ‘PRE-DEFINED’.</p>
<ul class="simple">
<li><p>Use the <em>Program Name</em> field to select the existing program.</p></li>
<li><p>Use the <em>Schedule Name</em> field to select an existing schedule.</p></li>
</ul>
<p>Click the <em>SQL</em> tab to continue.</p>
<p>Your entries in the <em>DBMS Job</em> dialog generate a SQL command (see an example below).
Use the <em>SQL</em> tab for review; revisit or switch tabs to make any changes to the
SQL command.</p>
<p><strong>Example</strong></p>
<p>The following is an example of the sql command generated by user selections in
the <em>DBMS Job</em> dialog:</p>
<img alt="DBMS Job dialog sql tab" class="align-center" src="_images/dbms_job_sql.png" />
<ul class="simple">
<li><p>Click the <em>Info</em> button (i) to access online help.</p></li>
<li><p>Click the <em>Help</em> button (?) to access dialog help.</p></li>
<li><p>Click the <em>Save</em> button to save work.</p></li>
<li><p>Click the <em>Close</em> button to exit without saving work.</p></li>
<li><p>Click the <em>Reset</em> button to restore configuration parameters.</p></li>
</ul>
</section>
<div class="clearer"></div>
</div>
</div>
</div>
<div class="sphinxsidebar" role="navigation" aria-label="main navigation">
<div class="sphinxsidebarwrapper">
<h3><a href="index.html">Table of Contents</a></h3>
<ul class="current">
<li class="toctree-l1"><a class="reference internal" href="getting_started.html">Getting Started</a></li>
<li class="toctree-l1"><a class="reference internal" href="external_database.html">External database for pgAdmin user settings</a></li>
<li class="toctree-l1"><a class="reference internal" href="connecting.html">Connecting To A Server</a></li>
<li class="toctree-l1"><a class="reference internal" href="managing_cluster_objects.html">Managing Cluster Objects</a></li>
<li class="toctree-l1 current"><a class="reference internal" href="managing_database_objects.html">Managing Database Objects</a><ul class="current">
<li class="toctree-l2"><a class="reference internal" href="cast_dialog.html">Cast Dialog</a></li>
<li class="toctree-l2 current"><a class="reference internal" href="dbms_job_scheduler.html">Using EDB Job Scheduler</a></li>
<li class="toctree-l2"><a class="reference internal" href="collation_dialog.html">Collation Dialog</a></li>
<li class="toctree-l2"><a class="reference internal" href="domain_dialog.html">Domain Dialog</a></li>
<li class="toctree-l2"><a class="reference internal" href="domain_constraint_dialog.html">Domain Constraints Dialog</a></li>
<li class="toctree-l2"><a class="reference internal" href="event_trigger_dialog.html">Event Trigger Dialog</a></li>
<li class="toctree-l2"><a class="reference internal" href="extension_dialog.html">Extension Dialog</a></li>
<li class="toctree-l2"><a class="reference internal" href="foreign_data_wrapper_dialog.html">Foreign Data Wrapper Dialog</a></li>
<li class="toctree-l2"><a class="reference internal" href="foreign_server_dialog.html">Foreign Server Dialog</a></li>
<li class="toctree-l2"><a class="reference internal" href="foreign_table_dialog.html">Foreign Table Dialog</a></li>
<li class="toctree-l2"><a class="reference internal" href="fts_configuration_dialog.html">FTS Configuration Dialog</a></li>
<li class="toctree-l2"><a class="reference internal" href="fts_dictionary_dialog.html">FTS Dictionary Dialog</a></li>
<li class="toctree-l2"><a class="reference internal" href="fts_parser_dialog.html">FTS Parser Dialog</a></li>
<li class="toctree-l2"><a class="reference internal" href="fts_template_dialog.html">FTS Template Dialog</a></li>
<li class="toctree-l2"><a class="reference internal" href="function_dialog.html">Function Dialog</a></li>
<li class="toctree-l2"><a class="reference internal" href="language_dialog.html">Language Dialog</a></li>
<li class="toctree-l2"><a class="reference internal" href="materialized_view_dialog.html">Materialized View Dialog</a></li>
<li class="toctree-l2"><a class="reference internal" href="package_dialog.html">Package Dialog</a></li>
<li class="toctree-l2"><a class="reference internal" href="procedure_dialog.html">Procedure Dialog</a></li>
<li class="toctree-l2"><a class="reference internal" href="publication_dialog.html">Publication Dialog</a></li>
<li class="toctree-l2"><a class="reference internal" href="schema_dialog.html">Schema Dialog</a></li>
<li class="toctree-l2"><a class="reference internal" href="sequence_dialog.html">Sequence Dialog</a></li>
<li class="toctree-l2"><a class="reference internal" href="subscription_dialog.html">Subscription Dialog</a></li>
<li class="toctree-l2"><a class="reference internal" href="synonym_dialog.html">Synonym Dialog</a></li>
<li class="toctree-l2"><a class="reference internal" href="trigger_function_dialog.html">Trigger Function Dialog</a></li>
<li class="toctree-l2"><a class="reference internal" href="type_dialog.html">Type Dialog</a></li>
<li class="toctree-l2"><a class="reference internal" href="user_mapping_dialog.html">User Mapping Dialog</a></li>
<li class="toctree-l2"><a class="reference internal" href="view_dialog.html">View Dialog</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="modifying_tables.html">Creating or Modifying a Table</a></li>
<li class="toctree-l1"><a class="reference internal" href="management_basics.html">Management Basics</a></li>
<li class="toctree-l1"><a class="reference internal" href="backup_and_restore.html">Backup and Restore</a></li>
<li class="toctree-l1"><a class="reference internal" href="developer_tools.html">Developer Tools</a></li>
<li class="toctree-l1"><a class="reference internal" href="processes.html">Processes</a></li>
<li class="toctree-l1"><a class="reference internal" href="pgagent.html">pgAgent</a></li>
<li class="toctree-l1"><a class="reference internal" href="contributions.html">pgAdmin Project Contributions</a></li>
<li class="toctree-l1"><a class="reference internal" href="release_notes.html">Release Notes</a></li>
<li class="toctree-l1"><a class="reference internal" href="licence.html">Licence</a></li>
</ul>
<search id="searchbox" style="display: none" role="search">
<h3 id="searchlabel">Quick search</h3>
<div class="searchformwrapper">
<form class="search" action="search.html" method="get">
<input type="text" name="q" aria-labelledby="searchlabel" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"/>
<input type="submit" value="Go" />
</form>
</div>
</search>
<script>document.getElementById('searchbox').style.display = "block"</script>
</div>
<div id="sidebarbutton" title="Collapse sidebar">
<span>«</span>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="related" role="navigation" aria-label="related navigation">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
>index</a></li>
<li class="right" >
<a href="dbms_program.html" title="DBMS Program"
>next</a> |</li>
<li class="right" >
<a href="dbms_job_scheduler.html" title="Using EDB Job Scheduler"
>previous</a> |</li>
<li class="nav-item nav-item-0"><a href="index.html">pgAdmin 4 8.6 documentation</a> »</li>
<li class="nav-item nav-item-1"><a href="managing_database_objects.html" >Managing Database Objects</a> »</li>
<li class="nav-item nav-item-2"><a href="dbms_job_scheduler.html" >Using EDB Job Scheduler</a> »</li>
<li class="nav-item nav-item-this"><a href="">DBMS Job</a></li>
</ul>
</div>
<div class="footer" role="contentinfo">
<div class="related" role="navigation" aria-label="related navigation">
<ul>
<li class="left" style="margin-left: 10px">© Copyright (C) 2013 - 2024, The pgAdmin Development Team.</li>
<li class="right" style="margin-right: 10px"><a href="genindex.html" title="General Index" accesskey="I">index</a></li>
<li class="right" ><a href="dbms_program.html" title="DBMS Program" accesskey="N">next</a> |</li>
<li class="right" ><a href="dbms_job_scheduler.html" title="Using EDB Job Scheduler" accesskey="P">previous</a> |</li>
</ul>
</div>
</div>
</body>
</html> |