> ## 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.

# createJoinTable

<div className="kinetica-doxygen">
  <div id="a22df97e3a14e1ef0ff8b0a7222889427" />

  <h2 className="memtitle"><span className="permalink"><a href="#a22df97e3a14e1ef0ff8b0a7222889427">◆ </a></span>createJoinTable() <span className="overload">\[1/2]</span></h2>

  <div className="memitem">
    <div className="memproto">
      <table className="mlabels">
        <tr>
          <td className="mlabels-left">
            <table className="memname">
              <tr>
                <td className="memname"><a className="el" href="/content/api/cs/classkinetica_1_1CreateJoinTableResponse">CreateJoinTableResponse</a> kinetica.Kinetica.createJoinTable </td>
                <td>(</td>
                <td className="paramtype"><a className="el" href="/content/api/cs/classkinetica_1_1CreateJoinTableRequest">CreateJoinTableRequest</a></td>
                <td className="paramname"><span className="paramname"><span className="em">request\_</span></span></td>
                <td>)</td>

                <td />
              </tr>
            </table>
          </td>

          <td className="mlabels-right"> <span className="mlabels"><span className="mlabel inline">inline</span></span> </td>
        </tr>
      </table>
    </div>

    <div className="memdoc">
      <p>Creates a table that is the result of a SQL JOIN. </p>
      <p>For join details and examples see: <a href="/content/concepts/joins/" target="_top">Joins</a>. For limitations, see <a href="/content/concepts/joins/#limitations-cautions" target="_top">Join Limitations and Cautions</a>.</p>

      <div className="dl params">
        <div className="dt">Parameters</div>

        <div className="dd">
          <table className="params">
            <tr>
              <td className="paramname">request\_</td>
              <td>Request object containing the parameters for the operation.</td>
            </tr>
          </table>
        </div>
      </div>

      <div className="dl section return">
        <div className="dt">Returns</div>
        <div className="dd">Response object containing the result of the operation. </div>
      </div>

      <p className="definition">Definition at line <a className="el" href="https://github.com/kineticadb/kinetica-api-cs/blob/master/Kinetica/KineticaFunctions.cs#L21026">21026</a> of file <a className="el" href="https://github.com/kineticadb/kinetica-api-cs/blob/master/Kinetica/KineticaFunctions.cs">KineticaFunctions.cs</a>.</p>
    </div>
  </div>

  <div id="a4f15e1efe7b458f4173608d75d44a4d8" />

  <h2 className="memtitle"><span className="permalink"><a href="#a4f15e1efe7b458f4173608d75d44a4d8">◆ </a></span>createJoinTable() <span className="overload">\[2/2]</span></h2>

  <div className="memitem">
    <div className="memproto">
      <table className="mlabels">
        <tr>
          <td className="mlabels-left">
            <table className="memname">
              <tr>
                <td className="memname"><a className="el" href="/content/api/cs/classkinetica_1_1CreateJoinTableResponse">CreateJoinTableResponse</a> kinetica.Kinetica.createJoinTable </td>
                <td>(</td>
                <td className="paramtype">string</td>
                <td className="paramname"><span className="paramname"><span className="em">join\_table\_name</span></span>, </td>
              </tr>

              <tr>
                <td className="paramkey" />

                <td />

                <td className="paramtype">IList\< string ></td>
                <td className="paramname"><span className="paramname"><span className="em">table\_names</span></span>, </td>
              </tr>

              <tr>
                <td className="paramkey" />

                <td />

                <td className="paramtype">IList\< string ></td>
                <td className="paramname"><span className="paramname"><span className="em">column\_names</span></span>, </td>
              </tr>

              <tr>
                <td className="paramkey" />

                <td />

                <td className="paramtype">IList\< string ></td>
                <td className="paramname"><span className="paramname"><span className="em">expressions</span></span><span className="paramdefsep"> = </span><span className="paramdefval">null</span>, </td>
              </tr>

              <tr>
                <td className="paramkey" />

                <td />

                <td className="paramtype">IDictionary\< string, string ></td>
                <td className="paramname"><span className="paramname"><span className="em">options</span></span><span className="paramdefsep"> = </span><span className="paramdefval">null</span> )</td>
              </tr>
            </table>
          </td>

          <td className="mlabels-right"> <span className="mlabels"><span className="mlabel inline">inline</span></span> </td>
        </tr>
      </table>
    </div>

    <div className="memdoc">
      <p>Creates a table that is the result of a SQL JOIN. </p>
      <p>For join details and examples see: <a href="/content/concepts/joins/" target="_top">Joins</a>. For limitations, see <a href="/content/concepts/joins/#limitations-cautions" target="_top">Join Limitations and Cautions</a>.</p>

      <div className="dl params">
        <div className="dt">Parameters</div>

        <div className="dd">
          <table className="params">
            <tr>
              <td className="paramname">join\_table\_name</td>
              <td>Name of the join table to be created, in \[schema\_name.]table\_name format, using standard <a href="/content/concepts/tables/#table-name-resolution" target="_top">name resolution rules</a> and meeting <a href="/content/concepts/tables/#table-naming-criteria" target="_top">table naming criteria</a>.</td>
            </tr>

            <tr>
              <td className="paramname">table\_names</td>
              <td>The list of table names composing the join, each in \[schema\_name.]table\_name format, using standard <a href="/content/concepts/tables/#table-name-resolution" target="_top">name resolution rules</a>. Corresponds to a SQL statement FROM clause.</td>
            </tr>

            <tr>
              <td className="paramname">column\_names</td>
              <td>List of member table columns or column expressions to be included in the join. Columns can be prefixed with 'table\_id.column\_name', where 'table\_id' is the table name or alias. Columns can be aliased via the syntax 'column\_name as alias'. Wild cards '<span className="em">' can be used to include all columns across member tables or 'table\_id.</span>' for all of a single table's columns. Columns and column expressions composing the join must be uniquely named or aliased–therefore, the '\*' wild card cannot be used if column names aren't unique across all tables.</td>
            </tr>

            <tr>
              <td className="paramname">expressions</td>
              <td>An optional list of expressions to combine and filter the joined tables. Corresponds to a SQL statement WHERE clause. For details see: <a href="/content/concepts/expressions/" target="_top">expressions</a>. The default value is an empty List. </td>
            </tr>

            <tr>
              <td className="paramname">options</td>

              <td>
                Optional parameters.

                <ul>
                  <li>
                    <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableRequest_1_1Options#abb438de594c6a6f05adf503917426e9a">CREATE\_TEMP\_TABLE</a>: If <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableRequest_1_1Options#a32082d143550f6c3106d5e47834788a7">TRUE</a>, a unique temporary table name will be generated in the sys\_temp schema and used in place of <span className="em">join\_table\_name</span> . This is always allowed even if the caller does not have permission to create tables. The generated name is returned in <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableResponse_1_1Info#a78bb8efa65faee97e225f8031f977d34">QUALIFIED\_JOIN\_TABLE\_NAME</a>. Supported values:

                    <ul>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableRequest_1_1Options#a32082d143550f6c3106d5e47834788a7">TRUE</a> </li>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableRequest_1_1Options#ab25ba5a114c0930218fec8655e7b8492">FALSE</a> </li>
                    </ul>

                    The default value is <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableRequest_1_1Options#ab25ba5a114c0930218fec8655e7b8492">FALSE</a>.
                  </li>

                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableRequest_1_1Options#a8801ec82f8dc7634f6ebdb66c47bae92">COLLECTION\_NAME</a>: \[DEPRECATED–please specify the containing schema for the join as part of <span className="em">join\_table\_name</span> and use <a className="el" href="#ac754b44062e7b90b8afa50ddfa8ccbf2">createSchema</a> to create the schema if non-existent] Name of a schema for the join. If the schema is non-existent, it will be automatically created. The default value is ''. </li>
                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableRequest_1_1Options#a7913bc1844b82af6757dea6f28b5336a">MAX\_QUERY\_DIMENSIONS</a>: No longer used. </li>
                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableRequest_1_1Options#a976af01aaba323b01390f13b7ca7f068">STRATEGY\_DEFINITION</a>: The <a href="/content/rm/concepts/#tier-strategies" target="_top">tier strategy</a> for the table and its columns. </li>
                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableRequest_1_1Options#a9c235d84751d62a597897d4e0c74b904">TTL</a>: Sets the <a href="/content/concepts/ttl/" target="_top">TTL</a> of the join table specified in <span className="em">join\_table\_name</span> . </li>
                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableRequest_1_1Options#a69232c201f9c8800930ffcd2842b18ba">VIEW\_ID</a>: View this projection is part of. The default value is ''. </li>
                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableRequest_1_1Options#a91d2498d4bb20dc6a37d1983bf8be6a5">NO\_COUNT</a>: Return a count of 0 for the join table for logging and for <a className="el" href="#af70f60085dc4c30ab3ffd15ff4622837">showTable</a>; optimization needed for large overlapped equi-join stencils. The default value is 'false'. </li>
                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableRequest_1_1Options#a61dd9c92f15b7a97883985b858e7ba4f">CHUNK\_SIZE</a>: Maximum number of records per joined-chunk for this table. Defaults to the gpudb.conf file chunk size. </li>
                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableRequest_1_1Options#ad0e555f28a442238941da41d7dfa13ac">ENABLE\_VIRTUAL\_CHUNKING</a>: Collect chunks with accumulated size less than chunk\_size into a single chunk. The default value is 'false'. </li>
                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableRequest_1_1Options#a00d1b46d70ede79bfc10c68e0f9f65b8">MAX\_VIRTUAL\_CHUNK\_SIZE</a>: Maximum number of records per virtual-chunk. When set, enables virtual chunking. Defaults to chunk\_size if virtual chunking otherwise enabled. </li>
                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableRequest_1_1Options#a333e01e7938d90c66c34b2b24a38450b">MIN\_VIRTUAL\_CHUNK\_SIZE</a>: Minimum number of records per virtual-chunk. When set, enables virtual chunking. Defaults to chunk\_size if virtual chunking otherwise enabled. </li>
                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableRequest_1_1Options#af44f6b6852741978a1edf30b79e3c9a5">ENABLE\_SPARSE\_VIRTUAL\_CHUNKING</a>: Materialize virtual chunks with only non-deleted values. The default value is 'false'. </li>
                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableRequest_1_1Options#ad609a3c163d225ec94faf375d4bd5421">ENABLE\_EQUI\_JOIN\_LAZY\_RESULT\_STORE</a>: Allow using the lazy result store to cache computation of one side of a multichunk equi-join. Reduces computation but also reduces parallelism to the number of chunks on the other side of the equi-join. </li>
                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableRequest_1_1Options#a3a5dcc90a590c0447acb369d49cf31a6">ENABLE\_PREDICATE\_EQUI\_JOIN\_LAZY\_RESULT\_STORE</a>: Allow using the lazy result store to cache computation of one side of a multichunk predicate-equi-join. Reduces computation but also reduces parallelism to the number of chunks on the other side of the equi-join. </li>
                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableRequest_1_1Options#a061fbac63825d91abd9b1f41295b073b">ENABLE\_PK\_EQUI\_JOIN</a>: Use equi-join to do primary key joins rather than using primary key index. </li>
                </ul>

                The default value is an empty Dictionary.
              </td>
            </tr>
          </table>
        </div>
      </div>

      <div className="dl section return">
        <div className="dt">Returns</div>
        <div className="dd">Response object containing the result of the operation. </div>
      </div>

      <p className="definition">Definition at line <a className="el" href="https://github.com/kineticadb/kinetica-api-cs/blob/master/Kinetica/KineticaFunctions.cs#L21235">21235</a> of file <a className="el" href="https://github.com/kineticadb/kinetica-api-cs/blob/master/Kinetica/KineticaFunctions.cs">KineticaFunctions.cs</a>.</p>
    </div>
  </div>

  <div id="acbf542fb5b842437392c823c8f1431a6" />

  <h2 className="memtitle"><span className="permalink"><a href="#acbf542fb5b842437392c823c8f1431a6">◆ </a></span>CreateJoinTableAsync() <span className="overload">\[1/2]</span></h2>

  <div className="memitem">
    <div className="memproto">
      <table className="mlabels">
        <tr>
          <td className="mlabels-left">
            <table className="memname">
              <tr>
                <td className="memname">async System.Threading.Tasks.Task\< <a className="el" href="/content/api/cs/classkinetica_1_1CreateJoinTableResponse">CreateJoinTableResponse</a> > kinetica.Kinetica.CreateJoinTableAsync </td>
                <td>(</td>
                <td className="paramtype"><a className="el" href="/content/api/cs/classkinetica_1_1CreateJoinTableRequest">CreateJoinTableRequest</a></td>
                <td className="paramname"><span className="paramname"><span className="em">request\_</span></span>, </td>
              </tr>

              <tr>
                <td className="paramkey" />

                <td />

                <td className="paramtype">System.Threading.CancellationToken</td>
                <td className="paramname"><span className="paramname"><span className="em">cancellationToken</span></span><span className="paramdefsep"> = </span><span className="paramdefval">default</span> )</td>
              </tr>
            </table>
          </td>

          <td className="mlabels-right"> <span className="mlabels"><span className="mlabel inline">inline</span></span> </td>
        </tr>
      </table>
    </div>

    <div className="memdoc">
      <p>Creates a table that is the result of a SQL JOIN. </p>
      <p>(async)</p>
      <p>For join details and examples see: <a href="/content/concepts/joins/" target="_top">Joins</a>. For limitations, see <a href="/content/concepts/joins/#limitations-cautions" target="_top">Join Limitations and Cautions</a>.</p>

      <div className="dl params">
        <div className="dt">Parameters</div>

        <div className="dd">
          <table className="params">
            <tr>
              <td className="paramname">request\_</td>
              <td>Request object containing the parameters for the operation.</td>
            </tr>

            <tr>
              <td className="paramname">cancellationToken</td>
              <td>Cancellation token to cancel the operation.</td>
            </tr>
          </table>
        </div>
      </div>

      <div className="dl section return">
        <div className="dt">Returns</div>
        <div className="dd">Task that returns the response object containing the result of the operation.</div>
      </div>

      <p className="definition">Definition at line <a className="el" href="https://github.com/kineticadb/kinetica-api-cs/blob/master/Kinetica/KineticaFunctions.cs#L21047">21047</a> of file <a className="el" href="https://github.com/kineticadb/kinetica-api-cs/blob/master/Kinetica/KineticaFunctions.cs">KineticaFunctions.cs</a>.</p>
    </div>
  </div>

  <div id="a4ebc1ddabdd4679d9eaef73fbb2d884f" />

  <h2 className="memtitle"><span className="permalink"><a href="#a4ebc1ddabdd4679d9eaef73fbb2d884f">◆ </a></span>CreateJoinTableAsync() <span className="overload">\[2/2]</span></h2>

  <div className="memitem">
    <div className="memproto">
      <table className="mlabels">
        <tr>
          <td className="mlabels-left">
            <table className="memname">
              <tr>
                <td className="memname">async System.Threading.Tasks.Task\< <a className="el" href="/content/api/cs/classkinetica_1_1CreateJoinTableResponse">CreateJoinTableResponse</a> > kinetica.Kinetica.CreateJoinTableAsync </td>
                <td>(</td>
                <td className="paramtype">string</td>
                <td className="paramname"><span className="paramname"><span className="em">join\_table\_name</span></span>, </td>
              </tr>

              <tr>
                <td className="paramkey" />

                <td />

                <td className="paramtype">IList\< string ></td>
                <td className="paramname"><span className="paramname"><span className="em">table\_names</span></span>, </td>
              </tr>

              <tr>
                <td className="paramkey" />

                <td />

                <td className="paramtype">IList\< string ></td>
                <td className="paramname"><span className="paramname"><span className="em">column\_names</span></span>, </td>
              </tr>

              <tr>
                <td className="paramkey" />

                <td />

                <td className="paramtype">IList\< string ></td>
                <td className="paramname"><span className="paramname"><span className="em">expressions</span></span><span className="paramdefsep"> = </span><span className="paramdefval">null</span>, </td>
              </tr>

              <tr>
                <td className="paramkey" />

                <td />

                <td className="paramtype">IDictionary\< string, string ></td>
                <td className="paramname"><span className="paramname"><span className="em">options</span></span><span className="paramdefsep"> = </span><span className="paramdefval">null</span>, </td>
              </tr>

              <tr>
                <td className="paramkey" />

                <td />

                <td className="paramtype">System.Threading.CancellationToken</td>
                <td className="paramname"><span className="paramname"><span className="em">cancellationToken</span></span><span className="paramdefsep"> = </span><span className="paramdefval">default</span> )</td>
              </tr>
            </table>
          </td>

          <td className="mlabels-right"> <span className="mlabels"><span className="mlabel inline">inline</span></span> </td>
        </tr>
      </table>
    </div>

    <div className="memdoc">
      <p>Creates a table that is the result of a SQL JOIN. </p>
      <p>(async)</p>
      <p>For join details and examples see: <a href="/content/concepts/joins/" target="_top">Joins</a>. For limitations, see <a href="/content/concepts/joins/#limitations-cautions" target="_top">Join Limitations and Cautions</a>.</p>

      <div className="dl params">
        <div className="dt">Parameters</div>

        <div className="dd">
          <table className="params">
            <tr>
              <td className="paramname">join\_table\_name</td>
              <td>Name of the join table to be created, in \[schema\_name.]table\_name format, using standard <a href="/content/concepts/tables/#table-name-resolution" target="_top">name resolution rules</a> and meeting <a href="/content/concepts/tables/#table-naming-criteria" target="_top">table naming criteria</a>.</td>
            </tr>

            <tr>
              <td className="paramname">table\_names</td>
              <td>The list of table names composing the join, each in \[schema\_name.]table\_name format, using standard <a href="/content/concepts/tables/#table-name-resolution" target="_top">name resolution rules</a>. Corresponds to a SQL statement FROM clause.</td>
            </tr>

            <tr>
              <td className="paramname">column\_names</td>
              <td>List of member table columns or column expressions to be included in the join. Columns can be prefixed with 'table\_id.column\_name', where 'table\_id' is the table name or alias. Columns can be aliased via the syntax 'column\_name as alias'. Wild cards '<span className="em">' can be used to include all columns across member tables or 'table\_id.</span>' for all of a single table's columns. Columns and column expressions composing the join must be uniquely named or aliased–therefore, the '\*' wild card cannot be used if column names aren't unique across all tables.</td>
            </tr>

            <tr>
              <td className="paramname">expressions</td>
              <td>An optional list of expressions to combine and filter the joined tables. Corresponds to a SQL statement WHERE clause. For details see: <a href="/content/concepts/expressions/" target="_top">expressions</a>. The default value is an empty List. </td>
            </tr>

            <tr>
              <td className="paramname">options</td>

              <td>
                Optional parameters.

                <ul>
                  <li>
                    <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableRequest_1_1Options#abb438de594c6a6f05adf503917426e9a">CREATE\_TEMP\_TABLE</a>: If <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableRequest_1_1Options#a32082d143550f6c3106d5e47834788a7">TRUE</a>, a unique temporary table name will be generated in the sys\_temp schema and used in place of <span className="em">join\_table\_name</span> . This is always allowed even if the caller does not have permission to create tables. The generated name is returned in <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableResponse_1_1Info#a78bb8efa65faee97e225f8031f977d34">QUALIFIED\_JOIN\_TABLE\_NAME</a>. Supported values:

                    <ul>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableRequest_1_1Options#a32082d143550f6c3106d5e47834788a7">TRUE</a> </li>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableRequest_1_1Options#ab25ba5a114c0930218fec8655e7b8492">FALSE</a> </li>
                    </ul>

                    The default value is <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableRequest_1_1Options#ab25ba5a114c0930218fec8655e7b8492">FALSE</a>.
                  </li>

                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableRequest_1_1Options#a8801ec82f8dc7634f6ebdb66c47bae92">COLLECTION\_NAME</a>: \[DEPRECATED–please specify the containing schema for the join as part of <span className="em">join\_table\_name</span> and use <a className="el" href="#ac754b44062e7b90b8afa50ddfa8ccbf2">createSchema</a> to create the schema if non-existent] Name of a schema for the join. If the schema is non-existent, it will be automatically created. The default value is ''. </li>
                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableRequest_1_1Options#a7913bc1844b82af6757dea6f28b5336a">MAX\_QUERY\_DIMENSIONS</a>: No longer used. </li>
                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableRequest_1_1Options#a976af01aaba323b01390f13b7ca7f068">STRATEGY\_DEFINITION</a>: The <a href="/content/rm/concepts/#tier-strategies" target="_top">tier strategy</a> for the table and its columns. </li>
                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableRequest_1_1Options#a9c235d84751d62a597897d4e0c74b904">TTL</a>: Sets the <a href="/content/concepts/ttl/" target="_top">TTL</a> of the join table specified in <span className="em">join\_table\_name</span> . </li>
                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableRequest_1_1Options#a69232c201f9c8800930ffcd2842b18ba">VIEW\_ID</a>: View this projection is part of. The default value is ''. </li>
                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableRequest_1_1Options#a91d2498d4bb20dc6a37d1983bf8be6a5">NO\_COUNT</a>: Return a count of 0 for the join table for logging and for <a className="el" href="#af70f60085dc4c30ab3ffd15ff4622837">showTable</a>; optimization needed for large overlapped equi-join stencils. The default value is 'false'. </li>
                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableRequest_1_1Options#a61dd9c92f15b7a97883985b858e7ba4f">CHUNK\_SIZE</a>: Maximum number of records per joined-chunk for this table. Defaults to the gpudb.conf file chunk size. </li>
                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableRequest_1_1Options#ad0e555f28a442238941da41d7dfa13ac">ENABLE\_VIRTUAL\_CHUNKING</a>: Collect chunks with accumulated size less than chunk\_size into a single chunk. The default value is 'false'. </li>
                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableRequest_1_1Options#a00d1b46d70ede79bfc10c68e0f9f65b8">MAX\_VIRTUAL\_CHUNK\_SIZE</a>: Maximum number of records per virtual-chunk. When set, enables virtual chunking. Defaults to chunk\_size if virtual chunking otherwise enabled. </li>
                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableRequest_1_1Options#a333e01e7938d90c66c34b2b24a38450b">MIN\_VIRTUAL\_CHUNK\_SIZE</a>: Minimum number of records per virtual-chunk. When set, enables virtual chunking. Defaults to chunk\_size if virtual chunking otherwise enabled. </li>
                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableRequest_1_1Options#af44f6b6852741978a1edf30b79e3c9a5">ENABLE\_SPARSE\_VIRTUAL\_CHUNKING</a>: Materialize virtual chunks with only non-deleted values. The default value is 'false'. </li>
                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableRequest_1_1Options#ad609a3c163d225ec94faf375d4bd5421">ENABLE\_EQUI\_JOIN\_LAZY\_RESULT\_STORE</a>: Allow using the lazy result store to cache computation of one side of a multichunk equi-join. Reduces computation but also reduces parallelism to the number of chunks on the other side of the equi-join. </li>
                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableRequest_1_1Options#a3a5dcc90a590c0447acb369d49cf31a6">ENABLE\_PREDICATE\_EQUI\_JOIN\_LAZY\_RESULT\_STORE</a>: Allow using the lazy result store to cache computation of one side of a multichunk predicate-equi-join. Reduces computation but also reduces parallelism to the number of chunks on the other side of the equi-join. </li>
                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateJoinTableRequest_1_1Options#a061fbac63825d91abd9b1f41295b073b">ENABLE\_PK\_EQUI\_JOIN</a>: Use equi-join to do primary key joins rather than using primary key index. </li>
                </ul>

                The default value is an empty Dictionary.
              </td>
            </tr>

            <tr>
              <td className="paramname">cancellationToken</td>
              <td>Cancellation token to cancel the operation.</td>
            </tr>
          </table>
        </div>
      </div>

      <div className="dl section return">
        <div className="dt">Returns</div>
        <div className="dd">Task that returns the response object containing the result of the operation.</div>
      </div>

      <p className="definition">Definition at line <a className="el" href="https://github.com/kineticadb/kinetica-api-cs/blob/master/Kinetica/KineticaFunctions.cs#L21429">21429</a> of file <a className="el" href="https://github.com/kineticadb/kinetica-api-cs/blob/master/Kinetica/KineticaFunctions.cs">KineticaFunctions.cs</a>.</p>
    </div>
  </div>
</div>
