<?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>idea Allow support for virtual / computed fields in Oracle/SQL Server versioned geodatabases in Data Management Ideas</title>
    <link>https://community.esri.com/t5/data-management-ideas/allow-support-for-virtual-computed-fields-in/idi-p/934805</link>
    <description>&lt;P&gt;Allow support for virtual / computed fields in Oracle/SQL Server versioned geodatabases.&lt;BR /&gt;&lt;BR /&gt;This could allow the GIS user to symbolize from old to no with graduated symbols based on date fields.&lt;BR /&gt;The GIS user should be able to calculate the date field as an epoch date to be used for symbols color ramp and the GIS user should not need DBA security to modify a central geodatabase schema.&lt;BR /&gt;And, still allow versioned editing, compression to state zero, etc. as usual.&lt;/P&gt;&lt;!--  content transformation source ID: 087E00000004f9o  --&gt;</description>
    <pubDate>Fri, 09 Sep 2022 21:13:02 GMT</pubDate>
    <dc:creator>BillFox</dc:creator>
    <dc:date>2022-09-09T21:13:02Z</dc:date>
    <item>
      <title>Allow support for virtual / computed fields in Oracle/SQL Server versioned geodatabases</title>
      <link>https://community.esri.com/t5/data-management-ideas/allow-support-for-virtual-computed-fields-in/idi-p/934805</link>
      <description>&lt;P&gt;Allow support for virtual / computed fields in Oracle/SQL Server versioned geodatabases.&lt;BR /&gt;&lt;BR /&gt;This could allow the GIS user to symbolize from old to no with graduated symbols based on date fields.&lt;BR /&gt;The GIS user should be able to calculate the date field as an epoch date to be used for symbols color ramp and the GIS user should not need DBA security to modify a central geodatabase schema.&lt;BR /&gt;And, still allow versioned editing, compression to state zero, etc. as usual.&lt;/P&gt;&lt;!--  content transformation source ID: 087E00000004f9o  --&gt;</description>
      <pubDate>Fri, 09 Sep 2022 21:13:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-ideas/allow-support-for-virtual-computed-fields-in/idi-p/934805</guid>
      <dc:creator>BillFox</dc:creator>
      <dc:date>2022-09-09T21:13:02Z</dc:date>
    </item>
    <item>
      <title>Support computed columns in SDE</title>
      <link>https://community.esri.com/t5/data-management-ideas/allow-support-for-virtual-computed-fields-in/idc-p/1046419#M1738</link>
      <description>&lt;P&gt;It would be really great and handy if SDE could support computed columns.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Apr 2021 16:12:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-ideas/allow-support-for-virtual-computed-fields-in/idc-p/1046419#M1738</guid>
      <dc:creator>AntonSizo_</dc:creator>
      <dc:date>2021-04-13T16:12:07Z</dc:date>
    </item>
    <item>
      <title>Re: Allow support for virtual / computed fields in Oracle/SQL Server versioned geodatabases</title>
      <link>https://community.esri.com/t5/data-management-ideas/allow-support-for-virtual-computed-fields-in/idc-p/1174017#M1831</link>
      <description>&lt;P&gt;Confirmation that they’re not supported:&lt;/P&gt;&lt;P&gt;FAQ: Are Computed/Virtual columns supported in an Enterprise environment in ArcGIS&lt;BR /&gt;&lt;SPAN&gt;&lt;A href="https://support.esri.com/en/technical-article/000008488" target="_blank" rel="noopener"&gt;https://support.esri.com/en/technical-article/000008488&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 16 May 2022 10:56:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-ideas/allow-support-for-virtual-computed-fields-in/idc-p/1174017#M1831</guid>
      <dc:creator>Bud</dc:creator>
      <dc:date>2022-05-16T10:56:05Z</dc:date>
    </item>
    <item>
      <title>Re: Allow support for virtual / computed fields in Oracle/SQL Server versioned geodatabases</title>
      <link>https://community.esri.com/t5/data-management-ideas/allow-support-for-virtual-computed-fields-in/idc-p/1174118#M1832</link>
      <description>&lt;P&gt;&lt;BR /&gt;On a related note, I thought this was interesting (Oracle):&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;&lt;SPAN&gt;If you create a function-based index, a virtual column is added implicitly.&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;PRE&gt;&lt;SPAN&gt;create&lt;/SPAN&gt; &lt;SPAN&gt;table&lt;/SPAN&gt; t1(n &lt;SPAN&gt;number&lt;/SPAN&gt;);
&lt;SPAN&gt;create&lt;/SPAN&gt; &lt;SPAN&gt;index&lt;/SPAN&gt; i1 &lt;SPAN&gt;on&lt;/SPAN&gt; t1(&lt;SPAN&gt;abs&lt;/SPAN&gt;(n));
&lt;SPAN&gt;insert&lt;/SPAN&gt; &lt;SPAN&gt;into&lt;/SPAN&gt; t1 &lt;SPAN&gt;values&lt;/SPAN&gt; (&lt;SPAN&gt;-123&lt;/SPAN&gt;);
&lt;SPAN&gt;commit&lt;/SPAN&gt;;
col column_name format a15
&lt;SPAN&gt;select&lt;/SPAN&gt; column_name, hidden_column, virtual_column &lt;SPAN&gt;from&lt;/SPAN&gt; user_tab_cols &lt;SPAN&gt;where&lt;/SPAN&gt; table_name=&lt;SPAN&gt;'T1'&lt;/SPAN&gt;;

COLUMN_NAME&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; HID VIR
&lt;SPAN&gt;--------------- --- ---&lt;/SPAN&gt;
N&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NO&amp;nbsp; NO
SYS_NC00002$&amp;nbsp;&amp;nbsp;&amp;nbsp; YES YES

&lt;SPAN&gt;select&lt;/SPAN&gt; n, SYS_NC00002$ &lt;SPAN&gt;from&lt;/SPAN&gt; t1;

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; N SYS_NC00002$
&lt;SPAN&gt;--------------- ------------&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -123&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 123&lt;/PRE&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;A href="https://community.oracle.com/tech/developers/discussion/comment/16835670#Comment_16835670" target="_blank" rel="noopener"&gt;https://community.oracle.com/tech/developers/discussion/comment/16835670#Comment_16835670&lt;/A&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/BLOCKQUOTE&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;SPAN&gt;I know from experience that function-based indexes don’t break ArcGIS:&amp;nbsp;&lt;A href="https://support.esri.com/en/technical-article/000011694" target="_self"&gt;How To: Create Oracle Spatial function-based indexing&lt;/A&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;P&gt;I wonder if that means we could create a hidden virtual column (via an SQL client), and ArcGIS wouldn’t have a problem with it, because it’s hidden? I imagine the only way you could see the column in ArcGIS is via a query layer or a view. So that’s not totally ideal. And the automatic column name isn’t very user-friendly. Although I suppose we could give it an alias in the query.&lt;/P&gt;&lt;P&gt;Ultimately, I’m not sure how useful that is. We can just do the calculation in a view or query layer. A hidden virtual column doesn’t have any advantage. But it’s interesting to think about.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.oracle.com/tech/developers/discussion/comment/16835846/#Comment_16835846" target="_self"&gt;Hidden virtual column created by FBI: Is the column name stable?&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 May 2022 15:53:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-ideas/allow-support-for-virtual-computed-fields-in/idc-p/1174118#M1832</guid>
      <dc:creator>Bud</dc:creator>
      <dc:date>2022-05-17T15:53:31Z</dc:date>
    </item>
  </channel>
</rss>

