<?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 Find ST_GRIDS using query Oracle 19c in Geodatabase Questions</title>
    <link>https://community.esri.com/t5/geodatabase-questions/find-st-grids-using-query-oracle-19c/m-p/1235760#M8050</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I need to rebuild my spatial indexes using query. This is the query that I am expecting to run :&lt;/P&gt;&lt;P&gt;&lt;EM&gt;CREATE INDEX SDE.A280_IX1&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;ON BANGKAIKAPAL_PT_1K(SHAPE)&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;INDEXTYPE IS sde.st_spatial_index&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;PARAMETERS('&lt;STRONG&gt;st_grids=1,3,0&lt;/STRONG&gt; st_srid=32748 tablespace NEW_TBS');&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;I need to find&amp;nbsp;&lt;FONT size="5"&gt;&lt;STRONG&gt;st_grids&lt;/STRONG&gt; &lt;/FONT&gt;value using &lt;STRONG&gt;query&lt;/STRONG&gt;. How can I do that ?&amp;nbsp;I have been searching the web and can not find anything.&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I want is something similar in finding SRID : "&lt;EM&gt;SELECT sde.st_srid (SHAPE) sridcol FROM SDE.STREET;&lt;/EM&gt;"&lt;/P&gt;&lt;P&gt;Thankyou&lt;/P&gt;</description>
    <pubDate>Tue, 29 Nov 2022 04:50:48 GMT</pubDate>
    <dc:creator>yockee</dc:creator>
    <dc:date>2022-11-29T04:50:48Z</dc:date>
    <item>
      <title>Find ST_GRIDS using query Oracle 19c</title>
      <link>https://community.esri.com/t5/geodatabase-questions/find-st-grids-using-query-oracle-19c/m-p/1235760#M8050</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I need to rebuild my spatial indexes using query. This is the query that I am expecting to run :&lt;/P&gt;&lt;P&gt;&lt;EM&gt;CREATE INDEX SDE.A280_IX1&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;ON BANGKAIKAPAL_PT_1K(SHAPE)&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;INDEXTYPE IS sde.st_spatial_index&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;PARAMETERS('&lt;STRONG&gt;st_grids=1,3,0&lt;/STRONG&gt; st_srid=32748 tablespace NEW_TBS');&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;I need to find&amp;nbsp;&lt;FONT size="5"&gt;&lt;STRONG&gt;st_grids&lt;/STRONG&gt; &lt;/FONT&gt;value using &lt;STRONG&gt;query&lt;/STRONG&gt;. How can I do that ?&amp;nbsp;I have been searching the web and can not find anything.&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I want is something similar in finding SRID : "&lt;EM&gt;SELECT sde.st_srid (SHAPE) sridcol FROM SDE.STREET;&lt;/EM&gt;"&lt;/P&gt;&lt;P&gt;Thankyou&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2022 04:50:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/find-st-grids-using-query-oracle-19c/m-p/1235760#M8050</guid>
      <dc:creator>yockee</dc:creator>
      <dc:date>2022-11-29T04:50:48Z</dc:date>
    </item>
    <item>
      <title>Re: Find ST_GRIDS using query Oracle 19c</title>
      <link>https://community.esri.com/t5/geodatabase-questions/find-st-grids-using-query-oracle-19c/m-p/1235894#M8054</link>
      <description>&lt;P&gt;Hi Yockee,&lt;/P&gt;&lt;P&gt;From ArcCatalog you can use this tool &lt;A href="https://desktop.arcgis.com/en/arcmap/latest/tools/data-management-toolbox/calculate-default-spatial-grid-index.htm" target="_self"&gt;Calculate Default Spatial Grid Index&lt;/A&gt;&amp;nbsp;or refer to this article &lt;A href="https://desktop.arcgis.com/en/arcmap/latest/manage-data/using-sql-with-gdbs/guidelines-to-choose-spatial-index-grid-size.htm" target="_self"&gt;Guidelines for choosing a spatial index grid size&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Hope this help you,&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2022 14:48:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/find-st-grids-using-query-oracle-19c/m-p/1235894#M8054</guid>
      <dc:creator>FrédéricPRALLY</dc:creator>
      <dc:date>2022-11-29T14:48:39Z</dc:date>
    </item>
    <item>
      <title>Re: Find ST_GRIDS using query Oracle 19c</title>
      <link>https://community.esri.com/t5/geodatabase-questions/find-st-grids-using-query-oracle-19c/m-p/1473224#M9043</link>
      <description>&lt;P&gt;A bit late, but this is how you can find a existing st_grids value from an existing spatial index:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;select sgi.grid.grid1 || ‘,’ || sgi. grid.grid2 || ‘,’ || sgi. grid.grid3 as grid from sde.st_geometry_index sgi where owner = ‘SDE’ and table_name = ‘STREET’;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 May 2024 21:20:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/find-st-grids-using-query-oracle-19c/m-p/1473224#M9043</guid>
      <dc:creator>sorpigal</dc:creator>
      <dc:date>2024-05-15T21:20:30Z</dc:date>
    </item>
  </channel>
</rss>

