> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kinetica.com/llms.txt
> Use this file to discover all available pages before exploring further.

# show_proc

<div className="kinetica-pydoc">
  <div className="dl py method">
    <div className="dt sig sig-object py" id="gpudb.GPUdb.show_proc"> <span className="sig-name descname"><span className="pre">show\_proc</span></span><span className="sig-paren">(</span><span className="em sig-param"><span className="n"><span className="pre">proc\_name</span></span><span className="o"><span className="pre">=</span></span><span className="default_value"><span className="pre">''</span></span></span>, <span className="em sig-param"><span className="n"><span className="pre">options</span></span><span className="o"><span className="pre">=</span></span><span className="default_value"><span className="pre">{"{"}{"}"}</span></span></span><span className="sig-paren">)</span><a href="https://github.com/kineticadb/kinetica-api-python/blob/master/gpudb/gpudb.py#L38843"><span className="viewcode-link"><span className="pre">\[source]</span></span></a></div>

    <div className="dd">
      <p>Shows information about a proc.</p>
      <p><strong>Parameters</strong></p>

      <div className="blockquote">
        <div>
          <div className="dl">
            <div className="dt">proc\_name (<span className="em">str</span>) –</div>

            <div className="dd">
              <p>Name of the proc to show information about. If specified, must be the name of a currently existing proc. If not specified, information about all procs will be returned. The default value is ‘’.</p>
            </div>

            <div className="dt">options (<span className="em">dict of str to str</span>) –</div>

            <div className="dd">
              <p>Optional parameters. Allowed keys are:</p>

              <ul>
                <li>
                  <p><strong>include\_files</strong> – If set to <span className="em">true</span>, the files that make up the proc will be returned. If set to <span className="em">false</span>, the files will not be returned. Allowed values are:</p>

                  <ul className="simple">
                    <li>
                      <p>true</p>
                    </li>

                    <li>
                      <p>false</p>
                    </li>
                  </ul>

                  <p>The default value is ‘false’.</p>
                </li>
              </ul>

              <p>The default value is an empty dict ( {"{"}{"}"} ).</p>
            </div>
          </div>
        </div>
      </div>

      <p><strong>Returns</strong></p>

      <div className="blockquote">
        <div>
          <p>A dict with the following entries–</p>

          <div className="dl simple">
            <div className="dt">proc\_names (<span className="em">list of str</span>) –</div>

            <div className="dd">
              <p>The proc names.</p>
            </div>

            <div className="dt">execution\_modes (<span className="em">list of str</span>) –</div>

            <div className="dd">
              <p>The execution modes of the procs named in output parameter <span className="em">proc\_names</span>. Allowed values are:</p>

              <ul className="simple">
                <li>
                  <p><strong>distributed</strong> – Distributed</p>
                </li>

                <li>
                  <p><strong>nondistributed</strong> – Nondistributed</p>
                </li>
              </ul>
            </div>

            <div className="dt">files (<span className="em">list of dicts of str to bytes</span>) –</div>

            <div className="dd">
              <p>Maps of the files that make up the procs named in output parameter <span className="em">proc\_names</span>.</p>
            </div>

            <div className="dt">commands (<span className="em">list of str</span>) –</div>

            <div className="dd">
              <p>The commands (excluding arguments) that will be invoked when the procs named in output parameter <span className="em">proc\_names</span> are executed.</p>
            </div>

            <div className="dt">args (<span className="em">list of lists of str</span>) –</div>

            <div className="dd">
              <p>Arrays of command-line arguments that will be passed to the procs named in output parameter <span className="em">proc\_names</span> when executed.</p>
            </div>

            <div className="dt">options (<span className="em">list of dicts of str to str</span>) –</div>

            <div className="dd">
              <p>The optional parameters for the procs named in output parameter <span className="em">proc\_names</span>.</p>
            </div>

            <div className="dt">info (<span className="em">dict of str to str</span>) –</div>

            <div className="dd">
              <p>Additional information.</p>
            </div>
          </div>
        </div>
      </div>
    </div>
  </div>
</div>
