<?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: S,F,I numbers as related to business table in Geodatabase Questions</title>
    <link>https://community.esri.com/t5/geodatabase-questions/s-f-i-numbers-as-related-to-business-table/m-p/1369924#M8768</link>
    <description>&lt;P&gt;In the context of ArcSDE (Spatial Database Engine), S, F, and I numbers are identifiers associated with different types of tables:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;S Number:&lt;/STRONG&gt; Represents the state tables, storing the current state of spatial data.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;F Number:&lt;/STRONG&gt; Signifies the adds and deletes tables, keeping track of changes made to the spatial data.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;I Number:&lt;/STRONG&gt; Corresponds to the spatial index tables, which optimize spatial queries for faster retrieval.&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;These numbers are crucial in managing spatial data within the geodatabase, allowing for efficient tracking of changes and optimization of spatial queries. The relationship to a business table is established through the Registration_ID in the SDE.TABLE_REGISTRY, connecting the S, F, and I tables to their associated business table.&lt;/P&gt;</description>
    <pubDate>Sat, 13 Jan 2024 13:41:08 GMT</pubDate>
    <dc:creator>soofigadgets</dc:creator>
    <dc:date>2024-01-13T13:41:08Z</dc:date>
    <item>
      <title>S,F,I numbers as related to business table</title>
      <link>https://community.esri.com/t5/geodatabase-questions/s-f-i-numbers-as-related-to-business-table/m-p/1369790#M8762</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I need to check some indices on some tables in SQL server SDE.&amp;nbsp; I have the S number for the table that needs to be reindexed, however, I can't find the magic decoder ring for determining the business table name in order to perform the reindex.&lt;/P&gt;&lt;P&gt;I know that the table number in the sde.table_registry gives me the adds and deletes tables, but my experience in the past was that the s, f, and i table numbers weren't the same as the adds and deletes.&lt;/P&gt;&lt;P&gt;Can someone point me in the right direction?&lt;/P&gt;&lt;P&gt;Thanks a bunch!&lt;/P&gt;&lt;P&gt;Lorinda&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jan 2024 21:24:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/s-f-i-numbers-as-related-to-business-table/m-p/1369790#M8762</guid>
      <dc:creator>LorindaGilbert</dc:creator>
      <dc:date>2024-01-12T21:24:56Z</dc:date>
    </item>
    <item>
      <title>Re: S,F,I numbers as related to business table</title>
      <link>https://community.esri.com/t5/geodatabase-questions/s-f-i-numbers-as-related-to-business-table/m-p/1369864#M8764</link>
      <description>&lt;P&gt;To find the Delta Tables and the "i" table we use the &lt;STRONG&gt;registration_id&lt;/STRONG&gt; in the &lt;STRONG&gt;sde.table_registry.&lt;BR /&gt;&lt;/STRONG&gt;To find the&amp;nbsp; S tables we use the &lt;STRONG&gt;layer_id&lt;/STRONG&gt; in the&lt;STRONG&gt; sde.layers&lt;/STRONG&gt; table.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;A few things to mention.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;B table - base table&lt;/P&gt;&lt;P&gt;F table - features table - store the geometries (shape).&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;the new versions of the geodatabase do not have a F table anymore&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;the shape column is now stored in the base table&amp;nbsp;&lt;/P&gt;&lt;P&gt;A table - adds table - traditional versioning&lt;/P&gt;&lt;P&gt;D table - deletes table - traditional versioning&lt;/P&gt;&lt;P&gt;S table - spatial index table&lt;/P&gt;&lt;P&gt;There is no esri st_geometry spatial type in SQL Server. We use the native SQL Server Geometry &amp;amp; Geography Spatial Types with the Geodatabase.&lt;/P&gt;&lt;P&gt;SQL Server Geodatabases with the Geometry spatial type you will find an "i" table but there is no "S" spatial index table.&lt;/P&gt;&lt;P&gt;The SQL Server Geodatabase Featureclass has&amp;nbsp;a Base Table, "i" table, Delta Tables (traditional versioning) - A - Adds, D - Deletes, if geodatabase archiving is enabled then there will be another table with the name &amp;lt;base table name&amp;gt;_H.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;"i" table is used to store the increment for the ObjectID, this was done before SQL Server had sequences.&lt;/P&gt;&lt;P&gt;Oracle esri st_geometry spatial type you will find an S table. Hence the Oracle Geodatabase featureclass has a Base Table, Delta Tables (traditional versioning) - A - Adds, D - Deletes, and the S - spatial index table, if geodatabase archiving is enabled then there will be another table with the name &amp;lt;base table name&amp;gt;_H. The H is for History. There is no "i" table.&lt;/P&gt;&lt;P&gt;Oracle Geodatabase does not have "i" table because in Oracle we use sequences for the ObjectID.&lt;BR /&gt;&lt;BR /&gt;Oracle Geodatabases also support the native Oracle SDO Spatial datatype.&lt;/P&gt;&lt;P&gt;PostgreSQL Geodatabases has the esri st_geometry spatial type as well and it also supports the PostGIS Spatial Type.&lt;/P&gt;</description>
      <pubDate>Sat, 13 Jan 2024 00:50:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/s-f-i-numbers-as-related-to-business-table/m-p/1369864#M8764</guid>
      <dc:creator>MarceloMarques</dc:creator>
      <dc:date>2024-01-13T00:50:19Z</dc:date>
    </item>
    <item>
      <title>Re: S,F,I numbers as related to business table</title>
      <link>https://community.esri.com/t5/geodatabase-questions/s-f-i-numbers-as-related-to-business-table/m-p/1369867#M8765</link>
      <description>&lt;P&gt;&lt;STRONG&gt;--SQL Server Geodatabase Example:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;use edit&lt;BR /&gt;go&lt;/P&gt;&lt;P&gt;select * from sde.sde_table_registry order by owner, table_name, registration_id;&lt;BR /&gt;go&lt;/P&gt;&lt;P&gt;--766 BUILDINGS GIS OBJECTID NULL 16399 1584119243 DEFAULTS 1 Buildings_evw NULL&lt;/P&gt;&lt;P&gt;-- geodatabase registration_id = 766 &amp;lt;== !!!&lt;/P&gt;&lt;P&gt;select count(*) from GIS.BUILDINGS;&lt;BR /&gt;go&lt;BR /&gt;--2,500,538&lt;/P&gt;&lt;P&gt;select * from GIS.BUILDINGS;&lt;BR /&gt;go&lt;/P&gt;&lt;P&gt;--base table and delta tables ( traditional versioning )&lt;/P&gt;&lt;P&gt;exec sp_columns @table_name = 'BUILDINGS', @table_owner = 'GIS';&lt;BR /&gt;go&lt;BR /&gt;exec sp_columns @table_name = 'A766', @table_owner = 'GIS';&lt;BR /&gt;go&lt;BR /&gt;exec sp_columns @table_name = 'D766', @table_owner = 'GIS';&lt;BR /&gt;go&lt;BR /&gt;exec sp_columns @table_name = 'i766', @table_owner = 'GIS';&lt;BR /&gt;go&lt;/P&gt;&lt;P&gt;select * from GIS.BUILDINGS;&lt;BR /&gt;select * from GIS.A766;&lt;BR /&gt;select * from GIS.D766;&lt;/P&gt;&lt;P&gt;select * from GIS.i766;&lt;BR /&gt;--2 2500543 -1 2500541&lt;/P&gt;&lt;P&gt;select max(objectid) from GIS.BUILDINGS;&lt;BR /&gt;--2500540&lt;BR /&gt;select max(objectid) from GIS.A766;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;select * from sde.sde_layers order by owner, table_name, layer_id;&lt;/P&gt;&lt;P&gt;--546 NULL BUILDINGS GIS SHAPE ...&lt;/P&gt;&lt;P&gt;--geodatabase layer_id = 546&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;--base table indexes&lt;/P&gt;&lt;P&gt;EXEC sp_helpindex N'GIS.BUILDINGS';&lt;BR /&gt;GO&lt;/P&gt;&lt;P&gt;/*&lt;BR /&gt;R766_pk clustered, unique, primary key located on EDIT_BINDEX OBJECTID&lt;BR /&gt;*/ --does not list the spatial index, weird!!!&lt;/P&gt;&lt;P&gt;SELECT sys.tables.object_id, sys.tables.name as table_name, sys.columns.name as column_name, sys.indexes.name as index_name,&lt;BR /&gt;sys.indexes.is_unique, sys.indexes.is_primary_key&lt;BR /&gt;FROM sys.tables, sys.indexes, sys.index_columns, sys.columns&lt;BR /&gt;WHERE (sys.tables.object_id = sys.indexes.object_id AND sys.tables.object_id = sys.index_columns.object_id&lt;BR /&gt;AND sys.tables.object_id = sys.columns.object_id&lt;BR /&gt;AND sys.indexes.index_id = sys.index_columns.index_id AND sys.index_columns.column_id = sys.columns.column_id)&lt;BR /&gt;AND sys.tables.name = 'buildings'&lt;BR /&gt;/*&lt;BR /&gt;605453431 BUILDINGS OBJECTID R766_pk 1 1&lt;BR /&gt;605453431 BUILDINGS SHAPE S546_idx 0 0&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;&amp;lt;== spatial index&lt;BR /&gt;*/&lt;/P&gt;&lt;P&gt;--"i" table indexes&lt;/P&gt;&lt;P&gt;EXEC sp_helpindex N'GIS.i766';&lt;BR /&gt;GO&lt;/P&gt;&lt;P&gt;/*&lt;BR /&gt;i766_pk clustered, unique, primary key located on EDIT_FDATA id_type, num_ids, base_id&lt;BR /&gt;*/&lt;/P&gt;&lt;P&gt;--adds table indexes&lt;/P&gt;&lt;P&gt;EXEC sp_helpindex N'GIS.A766';&lt;BR /&gt;GO&lt;/P&gt;&lt;P&gt;/*&lt;BR /&gt;a766_rowid_ix1 clustered, unique, primary key located on EDIT_AINDEX OBJECTID, SDE_STATE_ID&lt;BR /&gt;a766_state_ix2 nonclustered located on EDIT_AINDEX SDE_STATE_ID&lt;BR /&gt;*/&lt;/P&gt;&lt;P&gt;--deletes table indexes&lt;/P&gt;&lt;P&gt;EXEC sp_helpindex N'GIS.D766';&lt;BR /&gt;GO&lt;/P&gt;&lt;P&gt;/*&lt;BR /&gt;d766_idx2 clustered located on EDIT_DINDEX DELETED_AT&lt;BR /&gt;d766_pk nonclustered, unique, primary key located on EDIT_DINDEX SDE_STATE_ID, SDE_DELETES_ROW_ID, DELETED_AT&lt;BR /&gt;*/&lt;/P&gt;</description>
      <pubDate>Sat, 13 Jan 2024 00:29:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/s-f-i-numbers-as-related-to-business-table/m-p/1369867#M8765</guid>
      <dc:creator>MarceloMarques</dc:creator>
      <dc:date>2024-01-13T00:29:18Z</dc:date>
    </item>
    <item>
      <title>Re: S,F,I numbers as related to business table</title>
      <link>https://community.esri.com/t5/geodatabase-questions/s-f-i-numbers-as-related-to-business-table/m-p/1369868#M8766</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Oracle Geodatabase Example:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;select * from sde.table_registry order by 1,3,2;&lt;/P&gt;&lt;P&gt;--10 FIRESTATIONS AUX OBJECTID 16399 1398299376 GIS_AUX_OWNER 1 FIRESTATIONS_EVW&lt;/P&gt;&lt;P&gt;-- geodatabase registration_id = 10&lt;/P&gt;&lt;P&gt;--base table and delta tables ( traditional versioning )&lt;BR /&gt;describe aux.firestations;&lt;BR /&gt;describe aux.A10;&lt;BR /&gt;describe aux.D10;&lt;/P&gt;&lt;P&gt;select * from aux.firestations;&lt;BR /&gt;select * from aux.A10;&lt;BR /&gt;select * from aux.D10;&lt;/P&gt;&lt;P&gt;select * from sde.layers order by 1,2;&lt;/P&gt;&lt;P&gt;--5 AUX FIRESTATIONS SHAPE 71303299 0 3514.99746330281 0 0 2306975.502928 706427.937928006 2333039.252928 739136.557927996 1398299376 GIS_AUX_OWNER 1 3 0&lt;/P&gt;&lt;P&gt;--geodatabase layer_id = 5&lt;/P&gt;&lt;P&gt;--spatial index table&lt;BR /&gt;describe aux.S5_IDX$;&lt;BR /&gt;select * from aux.S5_IDX$;&lt;/P&gt;&lt;P&gt;--spatial index table indexes&lt;/P&gt;&lt;P&gt;select * from all_indexes&lt;BR /&gt;where lower(owner) = 'aux' and lower(table_name) = 's5_idx$';&lt;/P&gt;&lt;P&gt;/*&lt;BR /&gt;AUX S5$_IX2 NORMAL AUX S5_IDX$ TABLE NONUNIQUE DISABLED GIS_AUX_SDATA 2 255 131072 131072 1 2147483645 0 10 YES 0 1 69 1 1 1 VALID 69 69 07-JAN-2024 06:04:04 4 1 NO N N Y DEFAULT DEFAULT DEFAULT NO 100 YES NO YES NO VISIBLE YES NO FULL NO NO&lt;/P&gt;&lt;P&gt;AUX S5$_IX1 IOT - TOP AUX S5_IDX$ TABLE UNIQUE DISABLED GIS_AUX_SDATA 4 255 131072 131072 1 2147483645 0 5 0 0 YES 0 1 69 1 1 0 VALID 69 69 07-JAN-2024 06:04:04 1 1 NO N N Y DEFAULT DEFAULT DEFAULT NO 0 YES NO NO NO VISIBLE YES NO FULL NO YES&lt;BR /&gt;*/&lt;/P&gt;&lt;P&gt;--base table indexes&lt;/P&gt;&lt;P&gt;select * from all_indexes&lt;BR /&gt;where lower(owner) = 'aux' and lower(table_name) = 'firestations';&lt;/P&gt;&lt;P&gt;/*&lt;BR /&gt;AUX R10_SDE_ROWID_UK NORMAL AUX FIRESTATIONS TABLE UNIQUE DISABLED GIS_AUX_BINDEX 4 255 131072 131072 1 2147483645 0 0 NO 0 1 69 1 1 1 VALID 69 69 07-JAN-2024 06:04:04 4 1 NO N N N DEFAULT DEFAULT DEFAULT NO YES NO NO NO VISIBLE YES NO FULL NO NO&lt;/P&gt;&lt;P&gt;AUX A5_IX1 DOMAIN AUX FIRESTATIONS TABLE NONUNIQUE DISABLED 0 0 0 YES VALID 07-JAN-2024 06:04:04 1 1 NO N N N DEFAULT DEFAULT DEFAULT NO SDE ST_SPATIAL_INDEX ST_GRIDS= 3514.99746330281 ST_SRID = 300002 ST_COMMIT_ROWS = 10000 PCTFREE 0 INITRANS 4 TABLESPACE GIS_AUX_SDATA NO VALID VALID NO NO NO VISIBLE USER_MANAGED YES NO FULL NO NO&lt;BR /&gt;*/&lt;/P&gt;&lt;P&gt;--adds table indexes&lt;/P&gt;&lt;P&gt;select * from all_indexes&lt;BR /&gt;where lower(owner) = 'aux' and lower(table_name) = 'a10';&lt;/P&gt;&lt;P&gt;/*&lt;BR /&gt;AUX A10_STATEID_IX1 NORMAL AUX A10 TABLE NONUNIQUE DISABLED GIS_AUX_AINDEX 4 255 131072 131072 1 2147483645 0 0 NO 0 0 0 0 0 0 VALID 0 0 07-JAN-2024 06:04:03 4 1 NO N N N DEFAULT DEFAULT DEFAULT NO YES NO NO NO VISIBLE YES NO FULL NO NO&lt;/P&gt;&lt;P&gt;AUX A10_PK NORMAL AUX A10 TABLE UNIQUE DISABLED GIS_AUX_AINDEX 4 255 131072 131072 1 2147483645 0 0 NO 0 0 0 0 0 0 VALID 0 0 07-JAN-2024 06:04:03 4 1 NO N N N DEFAULT DEFAULT DEFAULT NO YES NO NO NO VISIBLE YES NO FULL NO YES&lt;/P&gt;&lt;P&gt;AUX A5_IX1_A DOMAIN AUX A10 TABLE NONUNIQUE DISABLED 0 0 0 YES VALID 07-JAN-2024 06:04:03 1 1 NO N N N DEFAULT DEFAULT DEFAULT NO SDE ST_SPATIAL_INDEX ST_GRIDS= 3514.99746330281 ST_SRID = 300002 ST_COMMIT_ROWS = 10000 PCTFREE 0 INITRANS 4 TABLESPACE GIS_AUX_SDATA NO VALID VALID NO NO NO VISIBLE USER_MANAGED YES NO FULL NO NO&lt;BR /&gt;*/&lt;/P&gt;&lt;P&gt;--deletes table indexes&lt;/P&gt;&lt;P&gt;select * from all_indexes&lt;BR /&gt;where lower(owner) = 'aux' and lower(table_name) = 'd10';&lt;/P&gt;&lt;P&gt;/*&lt;BR /&gt;AUX D10_IDX1 NORMAL AUX D10 TABLE NONUNIQUE DISABLED GIS_AUX_DINDEX 4 255 131072 131072 1 2147483645 0 0 NO 0 0 0 0 0 0 VALID 0 0 07-JAN-2024 06:04:04 4 1 NO N N N DEFAULT DEFAULT DEFAULT NO YES NO NO NO VISIBLE YES NO FULL NO NO&lt;/P&gt;&lt;P&gt;AUX D10_PK NORMAL AUX D10 TABLE UNIQUE DISABLED GIS_AUX_DINDEX 4 255 131072 131072 1 2147483645 0 0 NO 0 0 0 0 0 0 VALID 0 0 07-JAN-2024 06:04:04 4 1 NO N N N DEFAULT DEFAULT DEFAULT NO YES NO NO NO VISIBLE YES NO FULL NO YES&lt;BR /&gt;*/&lt;/P&gt;</description>
      <pubDate>Sat, 13 Jan 2024 00:52:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/s-f-i-numbers-as-related-to-business-table/m-p/1369868#M8766</guid>
      <dc:creator>MarceloMarques</dc:creator>
      <dc:date>2024-01-13T00:52:22Z</dc:date>
    </item>
    <item>
      <title>Re: S,F,I numbers as related to business table</title>
      <link>https://community.esri.com/t5/geodatabase-questions/s-f-i-numbers-as-related-to-business-table/m-p/1369923#M8767</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/6831"&gt;@LorindaGilbert&amp;nbsp;wrote:&lt;BR /&gt;Hi All,&lt;/a&gt;&lt;P&gt;I need to check some indices on some tables in SQL server SDE.&amp;nbsp; I have the S number for the table that needs to be reindexed, however, I can't find the magic decoder ring for determining the business table name in order to perform the reindex.&lt;/P&gt;&lt;P&gt;I know that the table number in the sde.table_registry gives me the adds and deletes tables, but my experience in the past was that the s, f, and i table numbers weren't the same as the adds and deletes.&lt;/P&gt;&lt;P&gt;Can someone point me in the right direction?&lt;/P&gt;&lt;P&gt;Thanks a bunch!&lt;/P&gt;&lt;P&gt;Lorinda&lt;/P&gt;&lt;HR /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To find the business table name associated with the S number in SQL Server SDE, you can check the SDE.TABLE_REGISTRY. While the S, F, and I table numbers might not directly correspond to adds and deletes, the SDE.TABLE_REGISTRY should contain information about the relationships between these tables.&lt;/P&gt;&lt;P&gt;You can query the SDE.TABLE_REGISTRY using the S number to find the associated business table name. Here's an example query:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;&lt;SPAN&gt;sql&lt;SPAN class=""&gt;Copy code&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;DIV class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;SELECT TABLE_NAME &lt;SPAN class=""&gt;FROM SDE.TABLE_REGISTRY &lt;SPAN class=""&gt;WHERE REGISTRATION_ID &lt;SPAN class=""&gt;= &lt;SPAN class=""&gt;'YourSNumber';&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;PRE&gt;&amp;nbsp;&lt;/PRE&gt;&lt;P&gt;Replace 'YourSNumber' with the actual S number you have. This should provide you with the business table name associated with the given S number, helping you perform the reindex on the correct table.&lt;/P&gt;&lt;P&gt;Best of luck!&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Sat, 13 Jan 2024 13:31:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/s-f-i-numbers-as-related-to-business-table/m-p/1369923#M8767</guid>
      <dc:creator>soofigadgets</dc:creator>
      <dc:date>2024-01-13T13:31:25Z</dc:date>
    </item>
    <item>
      <title>Re: S,F,I numbers as related to business table</title>
      <link>https://community.esri.com/t5/geodatabase-questions/s-f-i-numbers-as-related-to-business-table/m-p/1369924#M8768</link>
      <description>&lt;P&gt;In the context of ArcSDE (Spatial Database Engine), S, F, and I numbers are identifiers associated with different types of tables:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;S Number:&lt;/STRONG&gt; Represents the state tables, storing the current state of spatial data.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;F Number:&lt;/STRONG&gt; Signifies the adds and deletes tables, keeping track of changes made to the spatial data.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;I Number:&lt;/STRONG&gt; Corresponds to the spatial index tables, which optimize spatial queries for faster retrieval.&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;These numbers are crucial in managing spatial data within the geodatabase, allowing for efficient tracking of changes and optimization of spatial queries. The relationship to a business table is established through the Registration_ID in the SDE.TABLE_REGISTRY, connecting the S, F, and I tables to their associated business table.&lt;/P&gt;</description>
      <pubDate>Sat, 13 Jan 2024 13:41:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/s-f-i-numbers-as-related-to-business-table/m-p/1369924#M8768</guid>
      <dc:creator>soofigadgets</dc:creator>
      <dc:date>2024-01-13T13:41:08Z</dc:date>
    </item>
    <item>
      <title>Re: S,F,I numbers as related to business table</title>
      <link>https://community.esri.com/t5/geodatabase-questions/s-f-i-numbers-as-related-to-business-table/m-p/1369925#M8769</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/6831"&gt;@LorindaGilbert&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I need to check some indices on some tables in SQL server SDE.&amp;nbsp; I have the S number for the table that needs to be reindexed, however, I can't find the magic decoder ring for determining the business table name in order to perform the reindex.&lt;/P&gt;&lt;P&gt;I know that the table number in the sde.table_registry gives me the &lt;A href="https://chatgptspanish.org/ja/" target="_self"&gt;adds&lt;/A&gt; and deletes tables, but my experience in the past was that the s, f, and i table numbers weren't the same as the adds and deletes.&lt;/P&gt;&lt;P&gt;Can someone point me in the right direction?&lt;/P&gt;&lt;P&gt;Thanks a bunch!&lt;/P&gt;&lt;P&gt;Lorinda&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;In the context of ArcSDE (Spatial Database Engine), S, F, and I numbers are identifiers associated with different types of tables:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;S Number:&lt;/STRONG&gt; Represents the state tables, storing the current state of spatial data.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;F Number:&lt;/STRONG&gt; Signifies the adds and deletes tables, keeping track of changes made to the spatial data.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;I Number:&lt;/STRONG&gt; Corresponds to the spatial index tables, which optimize spatial queries for faster retrieval.&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;These numbers are crucial in managing spatial data within the geodatabase, allowing for efficient tracking of changes and optimization of spatial queries. The relationship to a business table is established through the Registration_ID in the SDE.TABLE_REGISTRY, connecting the S, F, and I tables to their associated business table.&lt;/P&gt;</description>
      <pubDate>Sat, 13 Jan 2024 13:43:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/s-f-i-numbers-as-related-to-business-table/m-p/1369925#M8769</guid>
      <dc:creator>soofigadgets</dc:creator>
      <dc:date>2024-01-13T13:43:03Z</dc:date>
    </item>
  </channel>
</rss>

