<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: SQL Server BIT field type in Geodatabase Questions</title>
    <link>https://community.esri.com/t5/geodatabase-questions/sql-server-bit-field-type/m-p/771547#M997</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks...for what its worth...not trying to put a check box in a geodatabase field....rather I have a .net form that has a bunch of check boxes on it...right now its feeding a SQL table with a bit field type.&amp;nbsp; This is being brought into SDE which does not have a specified BIT field type...but short integer should work.....this is what I was getting at...&lt;/P&gt;&lt;P&gt;When submit is done on the form I would simply check for checked or not and then apply a 0 or 1 to that short integer field....just a bit more code handling...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 31 Mar 2020 16:14:23 GMT</pubDate>
    <dc:creator>jaykapalczynski</dc:creator>
    <dc:date>2020-03-31T16:14:23Z</dc:date>
    <item>
      <title>SQL Server BIT field type</title>
      <link>https://community.esri.com/t5/geodatabase-questions/sql-server-bit-field-type/m-p/771544#M994</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a table that was put together in SQL Server with a bunch of BIT field types...&lt;/P&gt;&lt;P&gt;I am not bring that into SDE&lt;/P&gt;&lt;P&gt;Although when you create a table in SDE there is no BIT field data type....only short integer....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How is this dealt with....I basically want a form that will have a check box...the field behind will either be checked or not checked....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how do I lay this out? ideas / thoughts&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Mar 2020 22:21:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/sql-server-bit-field-type/m-p/771544#M994</guid>
      <dc:creator>jaykapalczynski</dc:creator>
      <dc:date>2020-03-30T22:21:46Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Server BIT field type</title>
      <link>https://community.esri.com/t5/geodatabase-questions/sql-server-bit-field-type/m-p/771545#M995</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not sure that you can have a check box in a geodatabase field, but here is the doc on the field types:&amp;nbsp;&lt;A class="link-titled" href="https://pro.arcgis.com/en/pro-app/help/data/geodatabases/overview/arcgis-field-data-types.htm#GUID-70728949-2016-4DB5-A723-5493B4330AE0" title="https://pro.arcgis.com/en/pro-app/help/data/geodatabases/overview/arcgis-field-data-types.htm#GUID-70728949-2016-4DB5-A723-5493B4330AE0"&gt;ArcGIS field data types—Geodatabases | Documentation&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Mar 2020 14:54:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/sql-server-bit-field-type/m-p/771545#M995</guid>
      <dc:creator>George_Thompson</dc:creator>
      <dc:date>2020-03-31T14:54:39Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Server BIT field type</title>
      <link>https://community.esri.com/t5/geodatabase-questions/sql-server-bit-field-type/m-p/771546#M996</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The SQL Server specific documentation, &lt;A class="link-titled" href="https://pro.arcgis.com/en/pro-app/help/data/databases/dbms-data-types-supported.htm#ESRI_SECTION1_5B33DF763064489295DC794BC872957D" title="https://pro.arcgis.com/en/pro-app/help/data/databases/dbms-data-types-supported.htm#ESRI_SECTION1_5B33DF763064489295DC794BC872957D"&gt;DBMS data types supported in ArcGIS—Help | Documentation&lt;/A&gt;&amp;nbsp;, covers this topic somewhat/mostly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For SQL Server, bit data types are mapped to Esri Short integer (along with SQL Server smallint and tinyint).&amp;nbsp; In ArcGIS Pro, it will show the field type as Short, but it will only allow you to put 0/1 into the field.&amp;nbsp; From my experience, any non-zero value gets converted to 1 when the data is updated into the DBMS.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Mar 2020 16:04:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/sql-server-bit-field-type/m-p/771546#M996</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2020-03-31T16:04:48Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Server BIT field type</title>
      <link>https://community.esri.com/t5/geodatabase-questions/sql-server-bit-field-type/m-p/771547#M997</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks...for what its worth...not trying to put a check box in a geodatabase field....rather I have a .net form that has a bunch of check boxes on it...right now its feeding a SQL table with a bit field type.&amp;nbsp; This is being brought into SDE which does not have a specified BIT field type...but short integer should work.....this is what I was getting at...&lt;/P&gt;&lt;P&gt;When submit is done on the form I would simply check for checked or not and then apply a 0 or 1 to that short integer field....just a bit more code handling...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Mar 2020 16:14:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/sql-server-bit-field-type/m-p/771547#M997</guid>
      <dc:creator>jaykapalczynski</dc:creator>
      <dc:date>2020-03-31T16:14:23Z</dc:date>
    </item>
  </channel>
</rss>

