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

# createTable

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

  <h2 className="memtitle"><span className="permalink"><a href="#ae10c184acd9c83d0063e8e4615270aba">◆ </a></span>createTable() <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_1CreateTableResponse">CreateTableResponse</a> kinetica.Kinetica.createTable </td>
                <td>(</td>
                <td className="paramtype"><a className="el" href="/content/api/cs/classkinetica_1_1CreateTableRequest">CreateTableRequest</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 new table with the given type (definition of columns). </p>
      <p>The type is specified in <a className="el" href="/content/api/cs/classkinetica_1_1CreateTableRequest#aa6148648081aa14c32fd0dbf10f15796">type\_id</a> as either a numerical type ID (as returned by <a className="el" href="#a5e541ff6a7d69768408cef650af603b3">createType</a>) or as a list of columns, each specified as a list of the column name, data type, and any column attributes.</p>
      <p><a className="el" href="/content/api/cs/namespaceExample">Example</a> of a type definition with some parameters:</p>

      <div className="fragment">
        <div className="line">\[</div>
        <div className="line"> \[<span className="stringliteral">"id"</span>, <span className="stringliteral">"int8"</span>, <span className="stringliteral">"primary\_key"</span>],</div>
        <div className="line"> \[<span className="stringliteral">"dept\_id"</span>, <span className="stringliteral">"int8"</span>, <span className="stringliteral">"primary\_key"</span>, <span className="stringliteral">"shard\_key"</span>],</div>
        <div className="line"> \[<span className="stringliteral">"manager\_id"</span>, <span className="stringliteral">"int8"</span>, <span className="stringliteral">"nullable"</span>],</div>
        <div className="line"> \[<span className="stringliteral">"first\_name"</span>, <span className="stringliteral">"char32"</span>],</div>
        <div className="line"> \[<span className="stringliteral">"last\_name"</span>, <span className="stringliteral">"char64"</span>],</div>
        <div className="line"> \[<span className="stringliteral">"salary"</span>, <span className="stringliteral">"decimal"</span>],</div>
        <div className="line"> \[<span className="stringliteral">"hire\_date"</span>, <span className="stringliteral">"date"</span>]</div>
        <div className="line">]</div>
      </div>

      <p>Each column definition consists of the column name (which should meet the standard <a href="/content/concepts/tables/#table-naming-criteria" target="_top">column naming criteria</a>), the column's <a href="/content/concepts/types/#types-chart" target="_top">specific type</a> (int, long, float, double, string, bytes, or any of the properties map values from <a className="el" href="#a5e541ff6a7d69768408cef650af603b3">createType</a>), and any <a href="/content/concepts/types/#types-data-handling" target="_top">data handling</a>, <a href="/content/concepts/types/#types-data-keys" target="_top">data key</a>, or <a href="/content/concepts/types/#types-data-replace" target="_top">data replacement</a> properties.</p>
      <p>A table may optionally be designated to use a <a href="/content/concepts/tables/#replication" target="_top">replicated</a> distribution scheme, or be assigned: <a href="/content/concepts/tables/#foreign-keys" target="_top">foreign keys</a> to other tables, a <a href="/content/concepts/tables/#partitioning" target="_top">partitioning</a> scheme, and/or a <a href="/content/rm/concepts/#tier-strategies" target="_top">tier strategy</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#L23804">23804</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="af3d20f0759ef8160ebb5f6d8e470b6f8" />

  <h2 className="memtitle"><span className="permalink"><a href="#af3d20f0759ef8160ebb5f6d8e470b6f8">◆ </a></span>createTable() <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_1CreateTableResponse">CreateTableResponse</a> kinetica.Kinetica.createTable </td>
                <td>(</td>
                <td className="paramtype">string</td>
                <td className="paramname"><span className="paramname"><span className="em">table\_name</span></span>, </td>
              </tr>

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

                <td />

                <td className="paramtype">string</td>
                <td className="paramname"><span className="paramname"><span className="em">type\_id</span></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 new table with the given type (definition of columns). </p>
      <p>The type is specified in <span className="em">type\_id</span> as either a numerical type ID (as returned by <a className="el" href="#a5e541ff6a7d69768408cef650af603b3">createType</a>) or as a list of columns, each specified as a list of the column name, data type, and any column attributes.</p>
      <p><a className="el" href="/content/api/cs/namespaceExample">Example</a> of a type definition with some parameters:</p>

      <div className="fragment">
        <div className="line">\[</div>
        <div className="line"> \[<span className="stringliteral">"id"</span>, <span className="stringliteral">"int8"</span>, <span className="stringliteral">"primary\_key"</span>],</div>
        <div className="line"> \[<span className="stringliteral">"dept\_id"</span>, <span className="stringliteral">"int8"</span>, <span className="stringliteral">"primary\_key"</span>, <span className="stringliteral">"shard\_key"</span>],</div>
        <div className="line"> \[<span className="stringliteral">"manager\_id"</span>, <span className="stringliteral">"int8"</span>, <span className="stringliteral">"nullable"</span>],</div>
        <div className="line"> \[<span className="stringliteral">"first\_name"</span>, <span className="stringliteral">"char32"</span>],</div>
        <div className="line"> \[<span className="stringliteral">"last\_name"</span>, <span className="stringliteral">"char64"</span>],</div>
        <div className="line"> \[<span className="stringliteral">"salary"</span>, <span className="stringliteral">"decimal"</span>],</div>
        <div className="line"> \[<span className="stringliteral">"hire\_date"</span>, <span className="stringliteral">"date"</span>]</div>
        <div className="line">]</div>
      </div>

      <p>Each column definition consists of the column name (which should meet the standard <a href="/content/concepts/tables/#table-naming-criteria" target="_top">column naming criteria</a>), the column's <a href="/content/concepts/types/#types-chart" target="_top">specific type</a> (int, long, float, double, string, bytes, or any of the properties map values from <a className="el" href="#a5e541ff6a7d69768408cef650af603b3">createType</a>), and any <a href="/content/concepts/types/#types-data-handling" target="_top">data handling</a>, <a href="/content/concepts/types/#types-data-keys" target="_top">data key</a>, or <a href="/content/concepts/types/#types-data-replace" target="_top">data replacement</a> properties.</p>
      <p>A table may optionally be designated to use a <a href="/content/concepts/tables/#replication" target="_top">replicated</a> distribution scheme, or be assigned: <a href="/content/concepts/tables/#foreign-keys" target="_top">foreign keys</a> to other tables, a <a href="/content/concepts/tables/#partitioning" target="_top">partitioning</a> scheme, and/or a <a href="/content/rm/concepts/#tier-strategies" target="_top">tier strategy</a>.</p>

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

        <div className="dd">
          <table className="params">
            <tr>
              <td className="paramname">table\_name</td>
              <td>Name of the 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>. Error for requests with existing table of the same name and type ID may be suppressed by using the <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#ab5647a609a1cc218ec319d7a153e7ba7">NO\_ERROR\_IF\_EXISTS</a> option.</td>
            </tr>

            <tr>
              <td className="paramname">type\_id</td>
              <td>The type for the table, specified as either an existing table's numerical type ID (as returned by <a className="el" href="#a5e541ff6a7d69768408cef650af603b3">createType</a>) or a type definition (as described above).</td>
            </tr>

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

              <td>
                Optional parameters.

                <ul>
                  <li>
                    <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#ab5647a609a1cc218ec319d7a153e7ba7">NO\_ERROR\_IF\_EXISTS</a>: If <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#af621efbb78097700030860d45f8b1e58">TRUE</a>, prevents an error from occurring if the table already exists and is of the given type. If a table with the same ID but a different type exists, it is still an error. Supported values:

                    <ul>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#af621efbb78097700030860d45f8b1e58">TRUE</a> </li>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a15a1395dc92981cfdc25a7b05dcd5985">FALSE</a> </li>
                    </ul>

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

                  <li>
                    <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a669bfada9b595ff7998f686ab3edee16">CREATE\_TEMP\_TABLE</a>: If <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#af621efbb78097700030860d45f8b1e58">TRUE</a>, a unique temporary table name will be generated in the sys\_temp schema and used in place of <span className="em">table\_name</span> . If <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#aec6085e85ff42b33dded41551b81339c">IS\_RESULT\_TABLE</a> is <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#af621efbb78097700030860d45f8b1e58">TRUE</a>, then 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_1CreateTableResponse_1_1Info#aff8f663df962e9f1e03fd1edfeb2cf0e">QUALIFIED\_TABLE\_NAME</a>. Supported values:

                    <ul>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#af621efbb78097700030860d45f8b1e58">TRUE</a> </li>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a15a1395dc92981cfdc25a7b05dcd5985">FALSE</a> </li>
                    </ul>

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

                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a3d03ad6dc15670c60665235652772fcc">COLLECTION\_NAME</a>: \[DEPRECATED–please specify the containing schema as part of <span className="em">table\_name</span> and use <a className="el" href="#ac754b44062e7b90b8afa50ddfa8ccbf2">createSchema</a> to create the schema if non-existent] Name of a schema which is to contain the newly created table. If the schema is non-existent, it will be automatically created. </li>

                  <li>
                    <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a51948e38372fe881457d539427067c2e">IS\_COLLECTION</a>: \[DEPRECATED–please use <a className="el" href="#ac754b44062e7b90b8afa50ddfa8ccbf2">createSchema</a> to create a schema instead] Indicates whether to create a schema instead of a table. Supported values:

                    <ul>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#af621efbb78097700030860d45f8b1e58">TRUE</a> </li>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a15a1395dc92981cfdc25a7b05dcd5985">FALSE</a> </li>
                    </ul>

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

                  <li>
                    <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a42ef187795722d50c30f034dc8cfa93a">IS\_REPLICATED</a>: Affects the <a href="/content/concepts/tables/#distribution" target="_top">distribution scheme</a> for the table's data. If <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#af621efbb78097700030860d45f8b1e58">TRUE</a> and the given type has no explicit <a href="/content/concepts/tables/#shard-key" target="_top">shard key</a> defined, the table will be <a href="/content/concepts/tables/#replication" target="_top">replicated</a>. If <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a15a1395dc92981cfdc25a7b05dcd5985">FALSE</a>, the table will be <a href="/content/concepts/tables/#sharding" target="_top">sharded</a> according to the shard key specified in the given <span className="em">type\_id</span> , or <a href="/content/concepts/tables/#random-sharding" target="_top">randomly sharded</a>, if no shard key is specified. Note that a type containing a shard key cannot be used to create a replicated table. Supported values:

                    <ul>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#af621efbb78097700030860d45f8b1e58">TRUE</a> </li>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a15a1395dc92981cfdc25a7b05dcd5985">FALSE</a> </li>
                    </ul>

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

                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a9278b6b881843577a24ccc0d65fd6510">FOREIGN\_KEYS</a>: Semicolon-separated list of <a href="/content/concepts/tables/#foreign-keys" target="_top">foreign keys</a>, of the format '(source\_column\_name \[, ...]) references target\_table\_name(primary\_key\_column\_name \[, ...]) \[as foreign\_key\_name]'. </li>
                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a09b78ebde6e67a8def1c27c906880bb0">FOREIGN\_SHARD\_KEY</a>: Foreign shard key of the format 'source\_column references shard\_by\_column from target\_table(primary\_key\_column)'. </li>

                  <li>
                    <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#ae2bbc22c17284764419aed3a3cfe2795">PARTITION\_TYPE</a>: <a href="/content/concepts/tables/#partitioning" target="_top">Partitioning</a> scheme to use. Supported values:

                    <ul>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a114b5cee06114612365ba773dd6e8d64">RANGE</a>: Use <a href="/content/concepts/tables/#partitioning-by-range" target="_top">range partitioning</a>. </li>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#af07493006695b8f0719255a405474587">INTERVAL</a>: Use <a href="/content/concepts/tables/#partitioning-by-interval" target="_top">interval partitioning</a>. </li>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#adc75c5c6a37b200299e7dae8fd1f8ff5">LIST</a>: Use <a href="/content/concepts/tables/#partitioning-by-list" target="_top">list partitioning</a>. </li>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#aaeb0e6cc4842ccc4a48c4d2e5b0f7097">HASH</a>: Use <a href="/content/concepts/tables/#partitioning-by-hash" target="_top">hash partitioning</a>. </li>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a588386c386aa2172399d9a15df78fea5">SERIES</a>: Use <a href="/content/concepts/tables/#partitioning-by-series" target="_top">series partitioning</a>. </li>
                    </ul>
                  </li>

                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#ace95a6cd7f5cd24ac949dab916283feb">PARTITION\_KEYS</a>: Comma-separated list of partition keys, which are the columns or column expressions by which records will be assigned to partitions defined by <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a8f62e5581a1f982b67fe9495900305f1">PARTITION\_DEFINITIONS</a>. </li>
                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a8f62e5581a1f982b67fe9495900305f1">PARTITION\_DEFINITIONS</a>: Comma-separated list of partition definitions, whose format depends on the choice of <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#ae2bbc22c17284764419aed3a3cfe2795">PARTITION\_TYPE</a>. See <a href="/content/concepts/tables/#partitioning-by-range" target="_top">range partitioning</a>, <a href="/content/concepts/tables/#partitioning-by-interval" target="_top">interval partitioning</a>, <a href="/content/concepts/tables/#partitioning-by-list" target="_top">list partitioning</a>, <a href="/content/concepts/tables/#partitioning-by-hash" target="_top">hash partitioning</a>, or <a href="/content/concepts/tables/#partitioning-by-series" target="_top">series partitioning</a> for example formats. </li>

                  <li>
                    <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a08a3e9650ca014200466f8d0ffc46eb6">IS\_AUTOMATIC\_PARTITION</a>: If <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#af621efbb78097700030860d45f8b1e58">TRUE</a>, a new partition will be created for values which don't fall into an existing partition. Currently only supported for <a href="/content/concepts/tables/#partitioning-by-list" target="_top">list partitions</a>. Supported values:

                    <ul>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#af621efbb78097700030860d45f8b1e58">TRUE</a> </li>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a15a1395dc92981cfdc25a7b05dcd5985">FALSE</a> </li>
                    </ul>

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

                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#aae79b4d199e638a6445c893de68602d6">TTL</a>: Sets the <a href="/content/concepts/ttl/" target="_top">TTL</a> of the table specified in <span className="em">table\_name</span> . </li>
                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a76ce1c39d8d748215e8fa605cfdb4ca2">CHUNK\_SIZE</a>: Indicates the number of records per chunk to be used for this table. </li>
                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#af7caef2ddd50f9c19f3ec2355b56bae6">CHUNK\_COLUMN\_MAX\_MEMORY</a>: Indicates the target maximum data size for each column in a chunk to be used for this table. </li>
                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#ac29625fbd5b787c9a2f1d410a881ebea">CHUNK\_MAX\_MEMORY</a>: Indicates the target maximum data size for all columns in a chunk to be used for this table. </li>

                  <li>
                    <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#aec6085e85ff42b33dded41551b81339c">IS\_RESULT\_TABLE</a>: Indicates whether the table is a <a href="/content/concepts/tables_memory_only/" target="_top">memory-only table</a>. A result table cannot contain columns with text\_search <a href="/content/concepts/types/#data-handling" target="_top">data-handling</a>, and it will not be retained if the server is restarted. Supported values:

                    <ul>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#af621efbb78097700030860d45f8b1e58">TRUE</a> </li>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a15a1395dc92981cfdc25a7b05dcd5985">FALSE</a> </li>
                    </ul>

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

                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a414e8dbbb9d0aeaf43633dc11529c79f">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_1CreateTableRequest_1_1Options#a7ca83b2b38070a7e10b0407e844cfbd0">COMPRESSION\_CODEC</a>: The default <a href="/content/concepts/column_compression/" target="_top">compression codec</a> for this table's columns. </li>

                  <li>
                    <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a3af12dd3c8915b1c775f1fa1e24eec3d">LOAD\_VECTORS\_POLICY</a>: Set startup data loading scheme for the table. Supported values:

                    <ul>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#aa9a3d99f7d7789fcaaa14f59f2c61017">ALWAYS</a>: Load as much vector data as possible into memory before accepting requests. </li>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a535d4f9105f6ec649d93c287bb08516e">LAZY</a>: Load the necessary vector data at start, and load the remainder lazily. </li>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#adb6560375de2c1e04d3c070fc65fb2f4">ON\_DEMAND</a>: Load vector data as requests use it. </li>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a8beb8b67127afac5bb86144d9282e369">SYSTEM</a>: Load vector data using the system-configured default. </li>
                    </ul>

                    The default value is <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a8beb8b67127afac5bb86144d9282e369">SYSTEM</a>.
                  </li>

                  <li>
                    <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a2c98454c0a1f7f6c15af7ac3a6d9a787">BUILD\_PK\_INDEX\_POLICY</a>: Set startup primary-key index generation scheme for the table. Supported values:

                    <ul>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#aa9a3d99f7d7789fcaaa14f59f2c61017">ALWAYS</a>: Generate as much primary key index data as possible before accepting requests. </li>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a535d4f9105f6ec649d93c287bb08516e">LAZY</a>: Generate the necessary primary key index data at start, and load the remainder lazily. </li>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#adb6560375de2c1e04d3c070fc65fb2f4">ON\_DEMAND</a>: Generate primary key index data as requests use it. </li>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a8beb8b67127afac5bb86144d9282e369">SYSTEM</a>: Generate primary key index data using the system-configured default. </li>
                    </ul>

                    The default value is <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a8beb8b67127afac5bb86144d9282e369">SYSTEM</a>.
                  </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#L24341">24341</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="a05c2151840efb21c74959ed146329b29" />

  <h2 className="memtitle"><span className="permalink"><a href="#a05c2151840efb21c74959ed146329b29">◆ </a></span>CreateTableAsync() <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_1CreateTableResponse">CreateTableResponse</a> > kinetica.Kinetica.CreateTableAsync </td>
                <td>(</td>
                <td className="paramtype"><a className="el" href="/content/api/cs/classkinetica_1_1CreateTableRequest">CreateTableRequest</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 new table with the given type (definition of columns). </p>
      <p>(async) </p>
      <p>The type is specified in <a className="el" href="/content/api/cs/classkinetica_1_1CreateTableRequest#aa6148648081aa14c32fd0dbf10f15796">type\_id</a> as either a numerical type ID (as returned by <a className="el" href="#a5e541ff6a7d69768408cef650af603b3">createType</a>) or as a list of columns, each specified as a list of the column name, data type, and any column attributes.</p>
      <p><a className="el" href="/content/api/cs/namespaceExample">Example</a> of a type definition with some parameters:</p>

      <div className="fragment">
        <div className="line">\[</div>
        <div className="line"> \[<span className="stringliteral">"id"</span>, <span className="stringliteral">"int8"</span>, <span className="stringliteral">"primary\_key"</span>],</div>
        <div className="line"> \[<span className="stringliteral">"dept\_id"</span>, <span className="stringliteral">"int8"</span>, <span className="stringliteral">"primary\_key"</span>, <span className="stringliteral">"shard\_key"</span>],</div>
        <div className="line"> \[<span className="stringliteral">"manager\_id"</span>, <span className="stringliteral">"int8"</span>, <span className="stringliteral">"nullable"</span>],</div>
        <div className="line"> \[<span className="stringliteral">"first\_name"</span>, <span className="stringliteral">"char32"</span>],</div>
        <div className="line"> \[<span className="stringliteral">"last\_name"</span>, <span className="stringliteral">"char64"</span>],</div>
        <div className="line"> \[<span className="stringliteral">"salary"</span>, <span className="stringliteral">"decimal"</span>],</div>
        <div className="line"> \[<span className="stringliteral">"hire\_date"</span>, <span className="stringliteral">"date"</span>]</div>
        <div className="line">]</div>
      </div>

      <p>Each column definition consists of the column name (which should meet the standard <a href="/content/concepts/tables/#table-naming-criteria" target="_top">column naming criteria</a>), the column's <a href="/content/concepts/types/#types-chart" target="_top">specific type</a> (int, long, float, double, string, bytes, or any of the properties map values from <a className="el" href="#a5e541ff6a7d69768408cef650af603b3">createType</a>), and any <a href="/content/concepts/types/#types-data-handling" target="_top">data handling</a>, <a href="/content/concepts/types/#types-data-keys" target="_top">data key</a>, or <a href="/content/concepts/types/#types-data-replace" target="_top">data replacement</a> properties.</p>
      <p>A table may optionally be designated to use a <a href="/content/concepts/tables/#replication" target="_top">replicated</a> distribution scheme, or be assigned: <a href="/content/concepts/tables/#foreign-keys" target="_top">foreign keys</a> to other tables, a <a href="/content/concepts/tables/#partitioning" target="_top">partitioning</a> scheme, and/or a <a href="/content/rm/concepts/#tier-strategies" target="_top">tier strategy</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#L23860">23860</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="a53fd865999e75cdd0bb555418b1408c3" />

  <h2 className="memtitle"><span className="permalink"><a href="#a53fd865999e75cdd0bb555418b1408c3">◆ </a></span>CreateTableAsync() <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_1CreateTableResponse">CreateTableResponse</a> > kinetica.Kinetica.CreateTableAsync </td>
                <td>(</td>
                <td className="paramtype">string</td>
                <td className="paramname"><span className="paramname"><span className="em">table\_name</span></span>, </td>
              </tr>

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

                <td />

                <td className="paramtype">string</td>
                <td className="paramname"><span className="paramname"><span className="em">type\_id</span></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 new table with the given type (definition of columns). </p>
      <p>(async) </p>
      <p>The type is specified in <span className="em">type\_id</span> as either a numerical type ID (as returned by <a className="el" href="#a5e541ff6a7d69768408cef650af603b3">createType</a>) or as a list of columns, each specified as a list of the column name, data type, and any column attributes.</p>
      <p><a className="el" href="/content/api/cs/namespaceExample">Example</a> of a type definition with some parameters:</p>

      <div className="fragment">
        <div className="line">\[</div>
        <div className="line"> \[<span className="stringliteral">"id"</span>, <span className="stringliteral">"int8"</span>, <span className="stringliteral">"primary\_key"</span>],</div>
        <div className="line"> \[<span className="stringliteral">"dept\_id"</span>, <span className="stringliteral">"int8"</span>, <span className="stringliteral">"primary\_key"</span>, <span className="stringliteral">"shard\_key"</span>],</div>
        <div className="line"> \[<span className="stringliteral">"manager\_id"</span>, <span className="stringliteral">"int8"</span>, <span className="stringliteral">"nullable"</span>],</div>
        <div className="line"> \[<span className="stringliteral">"first\_name"</span>, <span className="stringliteral">"char32"</span>],</div>
        <div className="line"> \[<span className="stringliteral">"last\_name"</span>, <span className="stringliteral">"char64"</span>],</div>
        <div className="line"> \[<span className="stringliteral">"salary"</span>, <span className="stringliteral">"decimal"</span>],</div>
        <div className="line"> \[<span className="stringliteral">"hire\_date"</span>, <span className="stringliteral">"date"</span>]</div>
        <div className="line">]</div>
      </div>

      <p>Each column definition consists of the column name (which should meet the standard <a href="/content/concepts/tables/#table-naming-criteria" target="_top">column naming criteria</a>), the column's <a href="/content/concepts/types/#types-chart" target="_top">specific type</a> (int, long, float, double, string, bytes, or any of the properties map values from <a className="el" href="#a5e541ff6a7d69768408cef650af603b3">createType</a>), and any <a href="/content/concepts/types/#types-data-handling" target="_top">data handling</a>, <a href="/content/concepts/types/#types-data-keys" target="_top">data key</a>, or <a href="/content/concepts/types/#types-data-replace" target="_top">data replacement</a> properties.</p>
      <p>A table may optionally be designated to use a <a href="/content/concepts/tables/#replication" target="_top">replicated</a> distribution scheme, or be assigned: <a href="/content/concepts/tables/#foreign-keys" target="_top">foreign keys</a> to other tables, a <a href="/content/concepts/tables/#partitioning" target="_top">partitioning</a> scheme, and/or a <a href="/content/rm/concepts/#tier-strategies" target="_top">tier strategy</a>.</p>

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

        <div className="dd">
          <table className="params">
            <tr>
              <td className="paramname">table\_name</td>
              <td>Name of the 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>. Error for requests with existing table of the same name and type ID may be suppressed by using the <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#ab5647a609a1cc218ec319d7a153e7ba7">NO\_ERROR\_IF\_EXISTS</a> option.</td>
            </tr>

            <tr>
              <td className="paramname">type\_id</td>
              <td>The type for the table, specified as either an existing table's numerical type ID (as returned by <a className="el" href="#a5e541ff6a7d69768408cef650af603b3">createType</a>) or a type definition (as described above).</td>
            </tr>

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

              <td>
                Optional parameters.

                <ul>
                  <li>
                    <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#ab5647a609a1cc218ec319d7a153e7ba7">NO\_ERROR\_IF\_EXISTS</a>: If <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#af621efbb78097700030860d45f8b1e58">TRUE</a>, prevents an error from occurring if the table already exists and is of the given type. If a table with the same ID but a different type exists, it is still an error. Supported values:

                    <ul>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#af621efbb78097700030860d45f8b1e58">TRUE</a> </li>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a15a1395dc92981cfdc25a7b05dcd5985">FALSE</a> </li>
                    </ul>

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

                  <li>
                    <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a669bfada9b595ff7998f686ab3edee16">CREATE\_TEMP\_TABLE</a>: If <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#af621efbb78097700030860d45f8b1e58">TRUE</a>, a unique temporary table name will be generated in the sys\_temp schema and used in place of <span className="em">table\_name</span> . If <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#aec6085e85ff42b33dded41551b81339c">IS\_RESULT\_TABLE</a> is <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#af621efbb78097700030860d45f8b1e58">TRUE</a>, then 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_1CreateTableResponse_1_1Info#aff8f663df962e9f1e03fd1edfeb2cf0e">QUALIFIED\_TABLE\_NAME</a>. Supported values:

                    <ul>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#af621efbb78097700030860d45f8b1e58">TRUE</a> </li>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a15a1395dc92981cfdc25a7b05dcd5985">FALSE</a> </li>
                    </ul>

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

                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a3d03ad6dc15670c60665235652772fcc">COLLECTION\_NAME</a>: \[DEPRECATED–please specify the containing schema as part of <span className="em">table\_name</span> and use <a className="el" href="#ac754b44062e7b90b8afa50ddfa8ccbf2">createSchema</a> to create the schema if non-existent] Name of a schema which is to contain the newly created table. If the schema is non-existent, it will be automatically created. </li>

                  <li>
                    <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a51948e38372fe881457d539427067c2e">IS\_COLLECTION</a>: \[DEPRECATED–please use <a className="el" href="#ac754b44062e7b90b8afa50ddfa8ccbf2">createSchema</a> to create a schema instead] Indicates whether to create a schema instead of a table. Supported values:

                    <ul>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#af621efbb78097700030860d45f8b1e58">TRUE</a> </li>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a15a1395dc92981cfdc25a7b05dcd5985">FALSE</a> </li>
                    </ul>

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

                  <li>
                    <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a42ef187795722d50c30f034dc8cfa93a">IS\_REPLICATED</a>: Affects the <a href="/content/concepts/tables/#distribution" target="_top">distribution scheme</a> for the table's data. If <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#af621efbb78097700030860d45f8b1e58">TRUE</a> and the given type has no explicit <a href="/content/concepts/tables/#shard-key" target="_top">shard key</a> defined, the table will be <a href="/content/concepts/tables/#replication" target="_top">replicated</a>. If <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a15a1395dc92981cfdc25a7b05dcd5985">FALSE</a>, the table will be <a href="/content/concepts/tables/#sharding" target="_top">sharded</a> according to the shard key specified in the given <span className="em">type\_id</span> , or <a href="/content/concepts/tables/#random-sharding" target="_top">randomly sharded</a>, if no shard key is specified. Note that a type containing a shard key cannot be used to create a replicated table. Supported values:

                    <ul>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#af621efbb78097700030860d45f8b1e58">TRUE</a> </li>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a15a1395dc92981cfdc25a7b05dcd5985">FALSE</a> </li>
                    </ul>

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

                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a9278b6b881843577a24ccc0d65fd6510">FOREIGN\_KEYS</a>: Semicolon-separated list of <a href="/content/concepts/tables/#foreign-keys" target="_top">foreign keys</a>, of the format '(source\_column\_name \[, ...]) references target\_table\_name(primary\_key\_column\_name \[, ...]) \[as foreign\_key\_name]'. </li>
                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a09b78ebde6e67a8def1c27c906880bb0">FOREIGN\_SHARD\_KEY</a>: Foreign shard key of the format 'source\_column references shard\_by\_column from target\_table(primary\_key\_column)'. </li>

                  <li>
                    <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#ae2bbc22c17284764419aed3a3cfe2795">PARTITION\_TYPE</a>: <a href="/content/concepts/tables/#partitioning" target="_top">Partitioning</a> scheme to use. Supported values:

                    <ul>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a114b5cee06114612365ba773dd6e8d64">RANGE</a>: Use <a href="/content/concepts/tables/#partitioning-by-range" target="_top">range partitioning</a>. </li>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#af07493006695b8f0719255a405474587">INTERVAL</a>: Use <a href="/content/concepts/tables/#partitioning-by-interval" target="_top">interval partitioning</a>. </li>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#adc75c5c6a37b200299e7dae8fd1f8ff5">LIST</a>: Use <a href="/content/concepts/tables/#partitioning-by-list" target="_top">list partitioning</a>. </li>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#aaeb0e6cc4842ccc4a48c4d2e5b0f7097">HASH</a>: Use <a href="/content/concepts/tables/#partitioning-by-hash" target="_top">hash partitioning</a>. </li>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a588386c386aa2172399d9a15df78fea5">SERIES</a>: Use <a href="/content/concepts/tables/#partitioning-by-series" target="_top">series partitioning</a>. </li>
                    </ul>
                  </li>

                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#ace95a6cd7f5cd24ac949dab916283feb">PARTITION\_KEYS</a>: Comma-separated list of partition keys, which are the columns or column expressions by which records will be assigned to partitions defined by <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a8f62e5581a1f982b67fe9495900305f1">PARTITION\_DEFINITIONS</a>. </li>
                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a8f62e5581a1f982b67fe9495900305f1">PARTITION\_DEFINITIONS</a>: Comma-separated list of partition definitions, whose format depends on the choice of <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#ae2bbc22c17284764419aed3a3cfe2795">PARTITION\_TYPE</a>. See <a href="/content/concepts/tables/#partitioning-by-range" target="_top">range partitioning</a>, <a href="/content/concepts/tables/#partitioning-by-interval" target="_top">interval partitioning</a>, <a href="/content/concepts/tables/#partitioning-by-list" target="_top">list partitioning</a>, <a href="/content/concepts/tables/#partitioning-by-hash" target="_top">hash partitioning</a>, or <a href="/content/concepts/tables/#partitioning-by-series" target="_top">series partitioning</a> for example formats. </li>

                  <li>
                    <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a08a3e9650ca014200466f8d0ffc46eb6">IS\_AUTOMATIC\_PARTITION</a>: If <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#af621efbb78097700030860d45f8b1e58">TRUE</a>, a new partition will be created for values which don't fall into an existing partition. Currently only supported for <a href="/content/concepts/tables/#partitioning-by-list" target="_top">list partitions</a>. Supported values:

                    <ul>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#af621efbb78097700030860d45f8b1e58">TRUE</a> </li>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a15a1395dc92981cfdc25a7b05dcd5985">FALSE</a> </li>
                    </ul>

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

                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#aae79b4d199e638a6445c893de68602d6">TTL</a>: Sets the <a href="/content/concepts/ttl/" target="_top">TTL</a> of the table specified in <span className="em">table\_name</span> . </li>
                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a76ce1c39d8d748215e8fa605cfdb4ca2">CHUNK\_SIZE</a>: Indicates the number of records per chunk to be used for this table. </li>
                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#af7caef2ddd50f9c19f3ec2355b56bae6">CHUNK\_COLUMN\_MAX\_MEMORY</a>: Indicates the target maximum data size for each column in a chunk to be used for this table. </li>
                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#ac29625fbd5b787c9a2f1d410a881ebea">CHUNK\_MAX\_MEMORY</a>: Indicates the target maximum data size for all columns in a chunk to be used for this table. </li>

                  <li>
                    <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#aec6085e85ff42b33dded41551b81339c">IS\_RESULT\_TABLE</a>: Indicates whether the table is a <a href="/content/concepts/tables_memory_only/" target="_top">memory-only table</a>. A result table cannot contain columns with text\_search <a href="/content/concepts/types/#data-handling" target="_top">data-handling</a>, and it will not be retained if the server is restarted. Supported values:

                    <ul>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#af621efbb78097700030860d45f8b1e58">TRUE</a> </li>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a15a1395dc92981cfdc25a7b05dcd5985">FALSE</a> </li>
                    </ul>

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

                  <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a414e8dbbb9d0aeaf43633dc11529c79f">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_1CreateTableRequest_1_1Options#a7ca83b2b38070a7e10b0407e844cfbd0">COMPRESSION\_CODEC</a>: The default <a href="/content/concepts/column_compression/" target="_top">compression codec</a> for this table's columns. </li>

                  <li>
                    <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a3af12dd3c8915b1c775f1fa1e24eec3d">LOAD\_VECTORS\_POLICY</a>: Set startup data loading scheme for the table. Supported values:

                    <ul>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#aa9a3d99f7d7789fcaaa14f59f2c61017">ALWAYS</a>: Load as much vector data as possible into memory before accepting requests. </li>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a535d4f9105f6ec649d93c287bb08516e">LAZY</a>: Load the necessary vector data at start, and load the remainder lazily. </li>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#adb6560375de2c1e04d3c070fc65fb2f4">ON\_DEMAND</a>: Load vector data as requests use it. </li>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a8beb8b67127afac5bb86144d9282e369">SYSTEM</a>: Load vector data using the system-configured default. </li>
                    </ul>

                    The default value is <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a8beb8b67127afac5bb86144d9282e369">SYSTEM</a>.
                  </li>

                  <li>
                    <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a2c98454c0a1f7f6c15af7ac3a6d9a787">BUILD\_PK\_INDEX\_POLICY</a>: Set startup primary-key index generation scheme for the table. Supported values:

                    <ul>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#aa9a3d99f7d7789fcaaa14f59f2c61017">ALWAYS</a>: Generate as much primary key index data as possible before accepting requests. </li>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a535d4f9105f6ec649d93c287bb08516e">LAZY</a>: Generate the necessary primary key index data at start, and load the remainder lazily. </li>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#adb6560375de2c1e04d3c070fc65fb2f4">ON\_DEMAND</a>: Generate primary key index data as requests use it. </li>
                      <li> <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a8beb8b67127afac5bb86144d9282e369">SYSTEM</a>: Generate primary key index data using the system-configured default. </li>
                    </ul>

                    The default value is <a className="el" href="/content/api/cs/structkinetica_1_1CreateTableRequest_1_1Options#a8beb8b67127afac5bb86144d9282e369">SYSTEM</a>.
                  </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#L24823">24823</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>
