<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>OpenText Analytics Database 26.2.x – V_CATALOG schema</title>
    <link>/en/sql-reference/system-tables/v-catalog-schema/</link>
    <description>Recent content in V_CATALOG schema on OpenText Analytics Database 26.2.x</description>
    <generator>Hugo -- gohugo.io</generator>
    
	  <atom:link href="/en/sql-reference/system-tables/v-catalog-schema/index.xml" rel="self" type="application/rss+xml" />
    
    
      
        
      
    
    
    <item>
      <title>Sql-Reference: ACCESS_POLICY</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/access-policy/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/access-policy/</guid>
      <description>
        
        
        &lt;p&gt;Provides information about existing &lt;a href=&#34;../../../../en/admin/db-users-and-privileges/access-policies/&#34;&gt;access policies&lt;/a&gt;.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
ACCESS_POLICY_OID&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;
The unique identifier for the access policy.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
TABLE_NAME&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


Name of the table specified in the access policy.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
IS_POLICY_ENABLED&lt;/td&gt; 

&lt;td &gt;


BOOLEAN&lt;/td&gt; 

&lt;td &gt;


Whether the access policy is enabled.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
POLICY_TYPE&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;






&lt;p&gt;The type of access policy assigned to the table:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Column Policy&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Row Policy&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
EXPRESSION&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


The expression used when creating the access policy.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
COLUMN_NAME&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


The column to which the access policy is assigned. Row policies apply to all columns in the table.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
TRUST_GRANTS&lt;/td&gt; 

&lt;td &gt;
BOOLEAN&lt;/td&gt; 

&lt;td &gt;
If true, GRANT statements override the access policy when determining whether a user can perform DML operations on the column or row.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;
&lt;h2 id=&#34;privileges&#34;&gt;Privileges&lt;/h2&gt;
&lt;p&gt;By default, only the superuser can view this table. Superusers can grant non-superusers access to this table with the following statement. Non-superusers can only see rows for tables that they own:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; GRANT SELECT ON access_policy TO PUBLIC
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;examples&#34;&gt;Examples&lt;/h2&gt;
&lt;p&gt;The following query returns all access policies on table &lt;code&gt;public.customer_dimension&lt;/code&gt;:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; \x
=&amp;gt; SELECT policy_type, is_policy_enabled, table_name, column_name, expression FROM access_policy WHERE table_name = &amp;#39;public.customer_dimension&amp;#39;;
-[ RECORD 1 ]-----+----------------------------------------------------------------------------------------
policy_type       | Column Policy
is_policy_enabled | Enabled
table_name        | public.customer_dimension
column_name       | customer_address
expression        | CASE WHEN enabled_role(&amp;#39;administrator&amp;#39;) THEN customer_address ELSE &amp;#39;**************&amp;#39; END
&lt;/code&gt;&lt;/pre&gt;

      </description>
    </item>
    
    <item>
      <title>Sql-Reference: ALL_RESTORE_POINTS</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/all_restore_points/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/all_restore_points/</guid>
      <description>
        
        
        &lt;p&gt;Provides information about existing &lt;a href=&#34;../../../../en/eon/revive-eon-db/in-db-restore-points/&#34;&gt;restore points&lt;/a&gt;.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
RP_ID&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;
The unique identifier for the restore point.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
RP_OID&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


The current identifier of the restore point. This can change if the cluster is restarted.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
ARCHIVE_OID&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


The identifier for the archive.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
STATE&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;








&lt;p&gt;Can be one of the following states:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;SAVING&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;COMPLETE&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;REMOVING&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
SAVE_TIME&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


The time at which the restore point was saved.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
CATALOG_VERSION&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


The catalog version that was saved.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
VERTICA_VERSION&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
The version of OpenText™ Analytics Database for the restore point.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Sql-Reference: ALL_TABLES</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/all-tables/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/all-tables/</guid>
      <description>
        
        
        &lt;p&gt;Provides summary information about tables in an OpenText™ Analytics Database.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;SCHEMA_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


The name of the schema that contains the table.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;TABLE_ID&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;



Catalog-assigned numeric value that uniquely identifies the table.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;TABLE_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


The table name.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;TABLE_TYPE&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;












&lt;p&gt;The type of table, which can be one of the following:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;TABLE&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;SYSTEM TABLE&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;VIEW&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;GLOBAL TEMPORARY&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;LOCAL TEMPORARY&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;REMARKS&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


A brief comment about the table. You define this field by using the &lt;a href=&#34;../../../../en/sql-reference/statements/comment-on-statements/comment-on-table/#&#34;&gt;COMMENT ON TABLE&lt;/a&gt; and &lt;a href=&#34;../../../../en/sql-reference/statements/comment-on-statements/comment-on-view/#&#34;&gt;COMMENT ON VIEW&lt;/a&gt; commands.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;
&lt;h2 id=&#34;examples&#34;&gt;Examples&lt;/h2&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;onenode=&amp;gt; SELECT DISTINCT table_name, table_type FROM all_tables
          WHERE table_name ILIKE &amp;#39;t%&amp;#39;;
       table_name       |  table_type
------------------------+--------------
 types                  | SYSTEM TABLE
 trades                 | TABLE
 tuple_mover_operations | SYSTEM TABLE
 tables                 | SYSTEM TABLE
 tuning_recommendations | SYSTEM TABLE
 testid                 | TABLE
 table_constraints      | SYSTEM TABLE
 transactions           | SYSTEM TABLE
(8 rows)
onenode=&amp;gt; SELECT table_name, table_type FROM all_tables
          WHERE table_name ILIKE &amp;#39;my%&amp;#39;;
 table_name | table_type
------------+------------
 mystocks   | VIEW
(1 row)
=&amp;gt; SELECT * FROM all_tables LIMIT 4;
-[ RECORD 1 ]-------------------------------------------
schema_name | v_catalog
table_id    | 10206
table_name  | all_tables
table_type  | SYSTEM TABLE
remarks     | A complete listing of all tables and views
-[ RECORD 2 ]-------------------------------------------
schema_name | v_catalog
table_id    | 10000
table_name  | columns
table_type  | SYSTEM TABLE
remarks     | Table column information
-[ RECORD 3 ]-------------------------------------------
schema_name | v_catalog
table_id    | 10054
table_name  | comments
table_type  | SYSTEM TABLE
remarks     | User comments on catalog objects
-[ RECORD 4 ]-------------------------------------------
schema_name | v_catalog
table_id    | 10134
table_name  | constraint_columns
table_type  | SYSTEM TABLE
remarks     | Table column constraint information
&lt;/code&gt;&lt;/pre&gt;
      </description>
    </item>
    
    <item>
      <title>Sql-Reference: AUDIT_MANAGING_USERS_PRIVILEGES</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/audit-managing-users-privileges/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/audit-managing-users-privileges/</guid>
      <description>
        
        
        &lt;p&gt;Provides summary information about privileges, creating, modifying, and deleting users, and authentication changes. This table is a join of &lt;a href=&#34;../../../../en/sql-reference/system-tables/v-catalog-schema/log-params/#&#34;&gt;LOG_PARAMS&lt;/a&gt;, &lt;a href=&#34;../../../../en/sql-reference/system-tables/v-catalog-schema/log-queries/#&#34;&gt;LOG_QUERIES&lt;/a&gt;, and &lt;a href=&#34;../../../../en/sql-reference/system-tables/v-catalog-schema/log-tables/#&#34;&gt;LOG_TABLES&lt;/a&gt; filtered on the Managing_Users_Privileges category.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
ISSUED_TIME&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
The time at which the query was executed.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
USER_NAME&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Name of the user who issued the query at the time OpenText™ Analytics Database recorded the session.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
USER_ID&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
Numeric representation of the user who ran the query.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
HOSTNAME&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
The hostname, IP address, or URL of the database server.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
SESSION_ID&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Identifier for this session. This identifier is unique within the cluster at any point in time but can be reused when the session closes.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
AUDIT_TYPE&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;








&lt;p&gt;The type of operation for the audit:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Query&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Parameter&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Table&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
AUDIT_TAG_NAME&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
The tag name for the specific parameter, query, or table.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
REQUEST_TYPE&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;




















&lt;p&gt;The type of query request. Examples include, but are not limited to:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;QUERY&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;DDL&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;LOAD&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;UTILITY&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;TRANSACTION&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;PREPARE&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;EXECUTE&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;SET&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;SHOW&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
REQUEST_ID&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
The ID of the privilege request.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
SUBJECT&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
The name of the table or parameter that was queried or the subject of a query.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
REQUEST&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Lists the privilege request.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
SUCCESS&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Indicates whether or not the operation was successful.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
CATEGORY&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
The audit parent category, Managing_Users_Privileges.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Sql-Reference: CA_BUNDLES</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/ca-bundles/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/ca-bundles/</guid>
      <description>
        
        
        &lt;p&gt;Stores certificate authority (CA) bundles created by &lt;a href=&#34;../../../../en/sql-reference/statements/create-statements/create-ca-bundle/#&#34;&gt;CREATE CA BUNDLE&lt;/a&gt;.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


OID&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;
The object identifier.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


NAME&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;
The name of the CA bundle.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


OWNER&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;
The OID of the owner of the CA bundle.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


CERTIFICATES&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;
The OIDs of the CA certificates inside the CA bundle.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;
&lt;h2 id=&#34;privileges&#34;&gt;Privileges&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;See CA bundle OID, name, and owner: Superuser or owner of the CA bundle.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;See CA bundle contents: Owner of the bundle&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;joining-with-certificates&#34;&gt;Joining with CERTIFICATES&lt;/h2&gt;
&lt;p&gt;CA_BUNDLES only stores OIDs. Since operations on CA bundles require certificate and owner names, you can use the following query to map bundles to certificate and owner names:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT user_name AS owner_name,
       owner     AS owner_oid,
       b.name    AS bundle_name,
       c.name    AS cert_name
FROM   (SELECT name,
               STRING_TO_ARRAY(certificates) :: array[INT] AS certs
        FROM   ca_bundles) b
       LEFT JOIN certificates c
              ON CONTAINS(b.certs, c.oid)
       LEFT JOIN users
              ON user_id = owner
ORDER  BY 1;

 owner_name |     owner_oid     | bundle_name  | cert_name
------------+-------------------+--------------+-----------
 dbadmin    | 45035996273704962 | ca_bundle    | root_ca
 dbadmin    | 45035996273704962 | ca_bundle    | ca_cert
(2 rows)
&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id=&#34;see-also&#34;&gt;See also&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;a href=&#34;../../../../en/security-and-authentication/tls-protocol/tls-overview/managing-ca-bundles/#&#34;&gt;Managing CA bundles&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href=&#34;../../../../en/sql-reference/statements/alter-statements/alter-ca-bundle/#&#34;&gt;ALTER CA BUNDLE&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href=&#34;../../../../en/sql-reference/statements/drop-statements/drop-ca-bundle/#&#34;&gt;DROP CA BUNDLE&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

      </description>
    </item>
    
    <item>
      <title>Sql-Reference: CATALOG_SUBSCRIPTION_CHANGES</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/catalog-subscription-changes/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/catalog-subscription-changes/</guid>
      <description>
        
        
        &lt;p&gt;Lists the changes made to catalog subscriptions.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;EVENT_TIMESTAMP&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


TIMESTAMP&lt;/td&gt; 

&lt;td &gt;


The time a catalog subscription changed.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;SESSION_ID&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


A unique numeric ID assigned by the OpenText™ Analytics Database catalog, which identifies the session for which profiling information is captured. This identifier is unique within the cluster at any point in time but can be reused when the session closes.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;USER_ID&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


A unique numeric ID assigned by the database catalog, which identifies the user.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;USER_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


The user who made changes to the subscriptions.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;TRANSACTION_ID&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


Identifier for the transaction within the session, if any. If a session is active but no transaction has begun, TRANSACTION_ID returns NULL.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;SHARD_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


The name of the shard.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;SHARD_OID&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


The OID of the shard.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;SUBSCRIBER_NODE_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


The node name or names subscribed to the shard.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;SUBSCRIBER_NODE_OID&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


The OID of the subscribing node or nodes.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;OLD_STATE&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


The previous state of the node subscription.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;NEW_STATE&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


The current state of the node subscription.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;WAS_PRIMARY&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


BOOLEAN&lt;/td&gt; 

&lt;td &gt;


Defines whether the node was the primary subscriber.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;IS_PRIMARY&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


BOOLEAN&lt;/td&gt; 

&lt;td &gt;


Defines whether the node is currently the primary subscriber.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;CATALOG_VERSION&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


The version of the catalog at the time of the subscription change.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Sql-Reference: CATALOG_SYNC_STATE</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/catalog-sync-state/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/catalog-sync-state/</guid>
      <description>
        
        
        &lt;p&gt;Shows when an Eon Mode database node synchronized its catalog to communal storage.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
NODE_NAME&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;
The node name for which information is listed.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


SYNC_CATALOG_VERSION&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;
The version number of the catalog being synchronized.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
EARLIEST_CHECKPOINT_VERSION&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
The earliest checkpoint that is maintained in communal storage.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
SYNC_TRAILING_INTERVAL&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;
The difference between the global catalog version and the synchronized catalog version for a node.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


LAST_SYNC_AT&lt;/td&gt; 

&lt;td &gt;


TIMESTAMPTZ&lt;/td&gt; 

&lt;td &gt;
The date and time the last time the catalog was synchronized.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Sql-Reference: CATALOG_TRUNCATION_STATUS</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/catalog-truncation-status/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/catalog-truncation-status/</guid>
      <description>
        
        
        &lt;p&gt;Indicates how up to date the catalog is on communal storage. It is completely up to date when the current catalog version is the same as the catalog truncation version.&lt;/p&gt;
&lt;p&gt;The catalog truncation version (CTV) is the version that OpenText™ Analytics Database cluster uses when it revives after a crash, shutdown, or hibernation. A cluster has only one CTV for all nodes in a cluster.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


CURRENT_CATALOG_VERSION&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;
The version number of the catalog currently on the cluster.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


TRUNCATION_CATALOG_VERSION&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;
The version number as of the last time the catalog was synced on communal storage.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Sql-Reference: CERTIFICATES</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/certificates/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/certificates/</guid>
      <description>
        
        
        &lt;p&gt;Stores certificates created by &lt;a href=&#34;../../../../en/sql-reference/statements/create-statements/create-certificate/#&#34;&gt;CREATE CERTIFICATE&lt;/a&gt;.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


OID&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;
The object identifier.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


NAME&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;
The name of the certificate.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


OWNER&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;
The owner of the object.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


SIGNED_BY&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;
The OID of the signing certificate.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


PRIVATE_KEY&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;
The OID of the certificate&#39;s &lt;a href=&#34;../../../../en/sql-reference/statements/create-statements/create-key/&#34;&gt;private key&lt;/a&gt;.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


START_DATE&lt;/td&gt; 

&lt;td &gt;


TIMESTAMPTZ&lt;/td&gt; 

&lt;td &gt;
When the certificate becomes valid.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


EXPIRATION_DATE&lt;/td&gt; 

&lt;td &gt;


TIMESTAMPTZ&lt;/td&gt; 

&lt;td &gt;
When the certificate expires.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


ISSUER&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;
The signing CA.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


SUBJECT&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;
The entity for which the certificate is issued.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


SERIAL&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;
The certificate&#39;s serial number.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


x509v3_EXTENSIONS&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;




&lt;p&gt;Lists additional attributes specified during the certificate&#39;s creation.&lt;/p&gt;
&lt;p&gt;For more information on extensions, see the &lt;a href=&#34;https://www.openssl.org/docs/man1.1.1/man5/x509v3_config.html&#34;&gt;OpenSSL documentation&lt;/a&gt;.&lt;/p&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


CERTIFICATE_TEXT&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


The contents of the certificate.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;
&lt;h2 id=&#34;examples&#34;&gt;Examples&lt;/h2&gt;
&lt;p&gt;See &lt;a href=&#34;../../../../en/security-and-authentication/tls-protocol/tls-overview/generating-tls-certificates-and-keys/#&#34;&gt;Generating TLS certificates and keys&lt;/a&gt;.&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Sql-Reference: CLIENT_AUTH</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/client-auth/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/client-auth/</guid>
      <description>
        
        
        &lt;p&gt;Provides information about client authentication methods.&lt;/p&gt;
&lt;p&gt;Higher values indicate higher priorities. OpenText™ Analytics Database tries to authenticate a user with an authentication method in order of priority from highest to lowest. For example:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;A priority of 10 is higher than a priority of 5.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A priority 0 is the lowest possible value.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
AUTH_OID&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;
Unique identifier for the authentication method.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
AUTH_NAME&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


User-given name of the authentication method.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
IS_AUTH_ENABLED&lt;/td&gt; 

&lt;td &gt;


BOOLEAN&lt;/td&gt; 

&lt;td &gt;


Indicates if the authentication method is enabled.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
AUTH_HOST_TYPE&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;










&lt;p&gt;The authentication host type, one of the following:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;LOCAL&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;HOST&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;HOSTSSL&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;HOSTNOSSL&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
AUTH_HOST_ADDRESS&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


If AUTH_HOST_TYPE is HOST, AUTH_HOST_ADDRESS is the IP address (or address range) of the remote host.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
AUTH_METHOD&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


















&lt;p&gt;Authentication method to be used.&lt;/p&gt;
&lt;p&gt;Valid values:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;IDENT&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;GSS&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;HASH&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;LDAP&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;REJECT&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;TLS&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;TRUST&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
AUTH_PARAMETERS&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


The parameter names and values assigned to the authentication method.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
AUTH_PRIORITY&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
The priority specified for the authentication. Authentications with higher values are used first.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
METHOD_PRIORITY&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;




&lt;p&gt;The priority of this authentication based on the AUTH_METHOD.&lt;/p&gt;
&lt;p&gt;The database only considers METHOD_PRIORITY when deciding between multiple authentication methods of equal AUTH_PRIORITY.&lt;/p&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
ADDRESS_PRIORITY&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;




&lt;p&gt;The priority of this authentication based on the specificity of the AUTH_HOST_ADDRESS, if any. More specific IP addresses (fewer zeros) are used first.&lt;/p&gt;
&lt;p&gt;The database only considers ADDRESS_PRIORITY when deciding between multiple authentication methods of equal AUTH_PRIORITY and METHOD_PRIORITY.&lt;/p&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
IS_FALLTHROUGH_ENABLED&lt;/td&gt; 

&lt;td &gt;
Boolean&lt;/td&gt; 

&lt;td &gt;


Whether &lt;a href=&#34;../../../../en/security-and-authentication/client-authentication/&#34;&gt;authentication fallthrough&lt;/a&gt; is enabled.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;

&lt;h2 id=&#34;examples&#34;&gt;Examples&lt;/h2&gt;
&lt;p&gt;This example shows how to get information about each client authentication method that you created:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT * FROM client_auth;
    auth_oid   |  auth_name  | is_auth_enabled | auth_host_type | auth_host_address | auth_method | auth_parameters | auth_priority | method_priority | address_priority
-------------------+-------------+-----------------+----------------+-------------------+-------------+-----------------+---------------+-----------------+------------------
 45035996274059694 | v_gss       | True            | HOST           | 0.0.0.0/0         | GSS         |                 |             0 |               5 |               96
 45035996274059696 | v_trust     | True            | LOCAL          |                   | TRUST       |                 |             0 |               0 |                0
 45035996274059698 | v_ldap      | True            | HOST           | 10.19.133.123/    | LDAP        |                 |             0 |               5 |              128
 45035996274059700 | RejectNoSSL | True            | HOSTNOSSL      | 0.0.0.0/0         | REJECT      |                 |             0 |              10 |               96
 45035996274059702 | v_hash      | True            | LOCAL          |                   | HASH        |                 |             0 |               2 |                0
 45035996274059704 | v_tls       | True            | HOSTSSL        | 1.1.1.1/0         | TLS         |                 |             0 |               5 |               96
(6 rows)
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;see-also&#34;&gt;See also&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;a href=&#34;../../../../en/security-and-authentication/client-authentication/#&#34;&gt;Client authentication&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href=&#34;../../../../en/security-and-authentication/client-authentication/authentication-record-priority/#&#34;&gt;Authentication record priority&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

      </description>
    </item>
    
    <item>
      <title>Sql-Reference: CLIENT_AUTH_PARAMS</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/client-auth-params/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/client-auth-params/</guid>
      <description>
        
        
        &lt;p&gt;Provides information about client authentication methods that have parameter values assigned.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
AUTH_OID&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;
A unique identifier for the authentication method.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
AUTH_NAME&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


Name that you defined for the authentication method.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
AUTH_PARAMETER_NAME&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;








&lt;p&gt;Parameter name required by the authentication method. Some examples are:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;system_users&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;binddn_prefix&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;host&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
AUTH_PARAMETER_VALUE&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Value of the specified parameter.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;
&lt;h2 id=&#34;examples&#34;&gt;Examples&lt;/h2&gt;
&lt;p&gt;This example shows how to retrieve parameter names and values for all authentication methods that you created. The authentication methods that have parameters are:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;v_ident&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;v_ldap&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;v_ldap1&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT * FROM CLIENT_AUTH_PARAMS;
     auth_oid      |   auth_name   | auth_parameter_name |    auth_parameter_value
-------------------+---------------+---------------------+------------------------------
 45035996273741304 | v_ident       | system_users        | root
 45035996273741332 | v_gss         |                     |
 45035996273741350 | v_password    |                     |
 45035996273741368 | v_trust       |                     |
 45035996273741388 | v_ldap        | host                | ldap://172.16.65.177
 45035996273741388 | v_ldap        | binddn_prefix       | cn=
 45035996273741388 | v_ldap        | binddn_suffix       | ,dc=qa_domain,dc=com
 45035996273741406 | RejectNoSSL   |                     |
 45035996273741424 | RejectWithSSL |                     |
 45035996273741450 | v_md5         |                     |
 45035996273904044 | l_tls         |                     |
 45035996273906566 | v_hash        |                     |
 45035996273910432 | v_ldap1       | host                | ldap://172.16.65.177
 45035996273910432 | v_ldap1       | basedn              | dc=qa_domain,dc=com
 45035996273910432 | v_ldap1       | binddn              | cn=Manager,dc=qa_domain,dc=com
 45035996273910432 | v_ldap1       | bind_password       | secret
 45035996273910432 | v_ldap1       | search_attribute    | cn
(17 rows)
&lt;/code&gt;&lt;/pre&gt;
      </description>
    </item>
    
    <item>
      <title>Sql-Reference: CLUSTER_LAYOUT</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/cluster-layout/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/cluster-layout/</guid>
      <description>
        
        
        &lt;p&gt;Shows the relative position of the actual arrangement of the nodes participating in the cluster and the fault groups (in an Enterprise Mode database) or subclusters (in an Eon Mode database) that affect them. Ephemeral nodes are not shown in the cluster layout ring because they hold no resident data.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
CLUSTER_POSITION&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;









&lt;p&gt;Position of the node in the cluster ring, counting forward from 0.&lt;/p&gt;
&lt;div class=&#34;alert admonition note&#34; role=&#34;alert&#34;&gt;
&lt;h4 class=&#34;admonition-head&#34;&gt;Note&lt;/h4&gt;
&lt;p&gt;An output value of 0 has no special meaning other than there are no nodes in position before the node assigned 0.&lt;/p&gt;
&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
NODE_ID&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
A unique numeric ID assigned by the OpenText™ Analytics Database catalog that identifies the node.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
NODE_NAME&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
The name of the node in the cluster ring. Only permanent nodes participating in database activity appear in the cluster layout. Ephemeral nodes are not shown in the output.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
FAULT_GROUP_ID&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;









&lt;p&gt;A unique numeric ID assigned by the database catalog that identifies the fault group. This column can only have a value in an Enterprise Mode database.&lt;/p&gt;
&lt;div class=&#34;alert admonition note&#34; role=&#34;alert&#34;&gt;
&lt;h4 class=&#34;admonition-head&#34;&gt;Note&lt;/h4&gt;
&lt;p&gt;This value matches the &lt;code&gt;FAULT_GROUP.MEMBER_ID&lt;/code&gt; value, but only if this node is in a fault group; otherwise the value is NULL.&lt;/p&gt;
&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
FAULT_GROUP_NAME&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;


The name of the fault group for the node.
This column can only have a value in an Enterprise Mode database.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
FAULT_GROUP_TIER&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;












&lt;p&gt;The node&#39;s depth in the fault group tree hierarchy. For example if the node:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Is not in a fault group, output is null&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Is in the top level fault group, output is 0&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Is in a fault group&#39;s child, output is 1&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Is a fault group&#39;s grandchild, output is 2&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;This column can only have a value in an Enterprise Mode database.&lt;/p&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
SUBCLUSTER_ID&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
Unique identifier for the subcluster. This column only has a value in an Eon Mode database.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
SUBCLUSTER_NAME&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
The name of the subcluster containing the node. This column only has a value in an Eon Mode database.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;
&lt;h2 id=&#34;see-also&#34;&gt;See also&lt;/h2&gt;
&lt;a href=&#34;../../../../en/admin/managing-db/managing-nodes/large-cluster/#&#34;&gt;Large cluster&lt;/a&gt;

      </description>
    </item>
    
    <item>
      <title>Sql-Reference: COLUMNS</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/columns/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/columns/</guid>
      <description>
        
        
        &lt;p&gt;Provides table column information. For columns of Iceberg external tables, see &lt;a href=&#34;../../../../en/sql-reference/system-tables/v-catalog-schema/iceberg-columns/#&#34;&gt;ICEBERG_COLUMNS&lt;/a&gt;.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;TABLE_ID&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;



Catalog-assigned numeric value that uniquely identifies the table.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;TABLE_NAMESPACE&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;



For Eon Mode databases, name of the &lt;a href=&#34;../../../../en/architecture/eon-concepts/shards-and-subscriptions/&#34;&gt;namespace&lt;/a&gt; that contains the table.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;TABLE_SCHEMA&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;





&lt;p&gt;Name of the table&#39;s schema.&lt;/p&gt;
&lt;p&gt;If the schema belongs to a non-default namespace in an Eon Mode database, the schema name is front-qualified with the name of the schema&#39;s namespace. For example, &lt;code&gt;n1.s&lt;/code&gt; refers to schema &lt;code&gt;s&lt;/code&gt; in namespace &lt;code&gt;n1&lt;/code&gt;.&lt;/p&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;TABLE_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Name of the table containing the column.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;IS_SYSTEM_TABLE&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
BOOLEAN&lt;/td&gt; 

&lt;td &gt;


Whether the table is a system table.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;COLUMN_ID&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;



Catalog-assigned VARCHAR value that uniquely identifies a table column.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;COLUMN_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;


Name of the column.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;DATA_TYPE&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;




&lt;p&gt;Column data type.&lt;/p&gt;
&lt;p&gt;Arrays of primitive types show the name &lt;code&gt;ARRAY[&lt;/code&gt;&lt;em&gt;&lt;code&gt;type&lt;/code&gt;&lt;/em&gt;&lt;code&gt;]&lt;/code&gt;. Other complex types show the inline name of the type, which matches the &lt;code&gt;type_name&lt;/code&gt; value in the &lt;a href=&#34;../../../../en/sql-reference/system-tables/v-catalog-schema/complex-types/#&#34;&gt;COMPLEX_TYPES&lt;/a&gt; table. For example: &lt;code&gt;_ct_45035996273833610&lt;/code&gt;.&lt;/p&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;DATA_TYPE_ID&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;


Catalog-assigned unique numeric ID of the data type.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;DATA_TYPE_LENGTH&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;


Maximum allowable length of the data type.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;CHARACTER_MAXIMUM_LENGTH&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;


Maximum allowable length of a VARCHAR column.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;NUMERIC_PRECISION&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;


Number of significant decimal digits for a NUMERIC column.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;NUMERIC_SCALE&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;


Number of fractional digits for a NUMERIC column.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;DATETIME_PRECISION&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;


Declared precision for a TIMESTAMP column, or NULL if no precision was declared.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;INTERVAL_PRECISION&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;


Number of fractional digits retained in the seconds field of an INTERVAL column.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;ORDINAL_POSITION&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;


Column position respective to other columns in the table.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;IS_NULLABLE&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
BOOLEAN&lt;/td&gt; 

&lt;td &gt;


Whether the column can contain NULL values.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;COLUMN_DEFAULT&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;


Expression set on a column with the &lt;a href=&#34;../../../../en/admin/working-with-native-tables/managing-table-columns/defining-column-values/&#34;&gt;DEFAULT&lt;/a&gt; constraint.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;COLUMN_SET_USING&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Expression set on a column with the &lt;a href=&#34;../../../../en/admin/working-with-native-tables/managing-table-columns/defining-column-values/&#34;&gt;SET USING&lt;/a&gt; constraint.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;IS_IDENTITY&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
BOOLEAN&lt;/td&gt; 

&lt;td &gt;


Whether the column is an &lt;a href=&#34;../../../../en/admin/working-with-native-tables/sequences/identity-sequences/&#34;&gt;IDENTITY&lt;/a&gt; column.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;
&lt;h2 id=&#34;examples&#34;&gt;Examples&lt;/h2&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-sql&#34; data-lang=&#34;sql&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;o&#34;&gt;=&amp;gt;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;SELECT&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;table_schema&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;table_name&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;column_name&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;data_type&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;is_nullable&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;   &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;FROM&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;columns&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;WHERE&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;table_schema&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;store&amp;#39;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;   &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;AND&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;data_type&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;Date&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;table_schema&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;table_name&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;     &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;      &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;column_name&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;       &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;data_type&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;is_nullable&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&lt;/span&gt;&lt;span class=&#34;c1&#34;&gt;--------------+-------------------+------------------------+-----------+-------------
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;store&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;        &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;store_dimension&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;   &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;first_open_date&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;        &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nb&#34;&gt;Date&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;      &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;f&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;store&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;        &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;store_dimension&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;   &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;last_remodel_date&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;      &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nb&#34;&gt;Date&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;      &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;f&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;store&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;        &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;store_orders_fact&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;date_ordered&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;           &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nb&#34;&gt;Date&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;      &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;f&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;store&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;        &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;store_orders_fact&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;date_shipped&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;           &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nb&#34;&gt;Date&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;      &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;f&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;store&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;        &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;store_orders_fact&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;expected_delivery_date&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nb&#34;&gt;Date&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;      &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;f&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;store&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;        &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;store_orders_fact&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;date_delivered&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;         &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nb&#34;&gt;Date&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;      &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;f&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;6&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;rows&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;In the following query, &lt;code&gt;datetime_precision&lt;/code&gt; is NULL because the table definition declares no precision:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-sql&#34; data-lang=&#34;sql&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;o&#34;&gt;=&amp;gt;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;CREATE&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;TABLE&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;c&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;k&#34;&gt;c&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;TIMESTAMP&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;);&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&lt;/span&gt;&lt;span class=&#34;k&#34;&gt;CREATE&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;TABLE&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&amp;gt;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;SELECT&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;table_name&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;column_name&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;datetime_precision&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;FROM&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;columns&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;   &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;WHERE&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;table_name&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;c&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;table_name&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;column_name&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;datetime_precision&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&lt;/span&gt;&lt;span class=&#34;c1&#34;&gt;------------+-------------+--------------------
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;c&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;          &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;c&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;           &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;1&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;row&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;In the following example, timestamp precision is set:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-sql&#34; data-lang=&#34;sql&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;o&#34;&gt;=&amp;gt;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;DROP&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;TABLE&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;c&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&amp;gt;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;CREATE&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;TABLE&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;c&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;k&#34;&gt;c&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;TIMESTAMP&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;4&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;));&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&lt;/span&gt;&lt;span class=&#34;k&#34;&gt;CREATE&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;TABLE&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&amp;gt;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;SELECT&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;table_name&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;column_name&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;datetime_precision&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;FROM&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;columns&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;   &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;WHERE&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;table_name&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;c&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;table_name&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;column_name&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;datetime_precision&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&lt;/span&gt;&lt;span class=&#34;c1&#34;&gt;------------+-------------+--------------------
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;c&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;          &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;c&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;           &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;                  &lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;4&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;An &lt;a href=&#34;../../../../en/admin/working-with-native-tables/sequences/identity-sequences/&#34;&gt;IDENTITY&lt;/a&gt; column sequence is defined in a table&#39;s DDL. Column values automatically increment as new rows are added. The following query returns identity columns:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-sql&#34; data-lang=&#34;sql&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;o&#34;&gt;=&amp;gt;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;CREATE&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;TABLE&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;employees&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;employeeID&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;IDENTITY&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;fname&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nb&#34;&gt;varchar&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;36&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;),&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;lname&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;nb&#34;&gt;varchar&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;36&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;));&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&lt;/span&gt;&lt;span class=&#34;k&#34;&gt;CREATE&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;TABLE&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&amp;gt;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;SELECT&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;table_name&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;column_name&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;is_identity&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;FROM&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;columns&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;WHERE&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;is_identity&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;t&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;table_name&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;column_name&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;is_identity&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&lt;/span&gt;&lt;span class=&#34;c1&#34;&gt;------------+-------------+-------------
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;employees&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;  &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;employeeID&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;  &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;t&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;1&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;row&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;You can query the &lt;a href=&#34;../../../../en/sql-reference/system-tables/v-catalog-schema/sequences/#&#34;&gt;SEQUENCES&lt;/a&gt; table to get detailed information about an IDENTITY column sequence:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-sql&#34; data-lang=&#34;sql&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;o&#34;&gt;=&amp;gt;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;SELECT&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;sequence_schema&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;sequence_name&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;identity_table_name&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;sequence_id&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;FROM&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;sequences&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;WHERE&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;identity_table_name&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;employees&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;sequence_schema&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;      &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;sequence_name&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;       &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;identity_table_name&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;sequence_id&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&lt;/span&gt;&lt;span class=&#34;c1&#34;&gt;-----------------+--------------------------+---------------------+-------------------
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;public&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;          &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;employees_employeeID_seq&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;employees&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;           &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;45035996273848816&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;1&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;row&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;For details about sequences and IDENTITY columns, see &lt;a href=&#34;../../../../en/admin/working-with-native-tables/sequences/#&#34;&gt;Sequences&lt;/a&gt;.&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Sql-Reference: COMMENTS</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/comments/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/comments/</guid>
      <description>
        
        
        &lt;p&gt;Returns information about comments associated with objects in the database.&lt;/p&gt;

&lt;div class=&#34;alert admonition note&#34; role=&#34;alert&#34;&gt;
&lt;h4 class=&#34;admonition-head&#34;&gt;Note&lt;/h4&gt;

Queries on this table can be slow because it fetches data at query time from other OpenText™ Analytics Database catalog tables.

&lt;/div&gt;

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
COMMENT_ID&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
Comment&#39;s internal ID number&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
OBJECT_ID&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
Internal ID number of the object associated with the comment.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
OBJECT_TYPE&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;






















&lt;p&gt;Type of object associated with the comment, one of the following:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;COLUMN&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;CONSTRAINT&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;FUNCTION&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;LIBRARY&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;NODE&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;PROJECTION&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;SCHEMA&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;SEQUENCE&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;TABLE&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;VIEW&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
OBJECT_SCHEMA&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Name of the schema containing the object.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
OBJECT_NAME&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Name of the top-level object associated with the comment, such as a table or projection.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
CHILD_OBJECT&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Name of the specific object associated with the comment, such as a table column. If the comment is associated with a top-level object, this value is NULL.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
OWNER_ID&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Internal ID of the object&#39;s owner.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
OWNER_NAME&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Object owner&#39;s name.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
CREATION_TIME&lt;/td&gt; 

&lt;td &gt;
TIMESTAMPTZ&lt;/td&gt; 

&lt;td &gt;
When the comment was created.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
LAST_MODIFIED_TIME&lt;/td&gt; 

&lt;td &gt;
TIMESTAMPTZ&lt;/td&gt; 

&lt;td &gt;
When the comment was last modified.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
COMMENT&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Comment text.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;

&lt;h2 id=&#34;examples&#34;&gt;Examples&lt;/h2&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-sql&#34; data-lang=&#34;sql&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;o&#34;&gt;=&amp;gt;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;COMMENT&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;ON&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;COLUMN&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;public&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;t&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;x1&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;IS&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;Column comment&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&amp;gt;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;SELECT&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;*&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;FROM&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;COMMENTS&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;-&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;[&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;RECORD&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;1&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;]&lt;/span&gt;&lt;span class=&#34;c1&#34;&gt;------+------------------------------
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;comment_id&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;45035996273838776&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;object_id&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;45035996273838760&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;object_type&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;COLUMN&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;object_schema&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;public&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;object_name&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;t&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;child_object&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;x1&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;owner_id&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;45035996273704962&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;owner_name&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;dbadmin&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;creation_time&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;2023&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;-&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;02&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;-&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;01&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;10&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;47&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;13&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;028663&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;+&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;08&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;last_modified_time&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;2023&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;-&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;02&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;-&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;01&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;10&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;47&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;13&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;028663&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;+&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;08&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&lt;/span&gt;&lt;span class=&#34;k&#34;&gt;comment&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;Column&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;comment&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
      </description>
    </item>
    
    <item>
      <title>Sql-Reference: COMPLEX_TYPES</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/complex-types/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/complex-types/</guid>
      <description>
        
        
        &lt;p&gt;Contains information about inlined &lt;a href=&#34;../../../../en/sql-reference/data-types/complex-types/&#34;&gt;complex types&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Each complex type in each external table has a unique type internally, even if the types are structurally the same (like two different ROW(int,int) cases). This inlined type is created when the table using it is created and is automatically dropped when the table is dropped. Inlined complex types cannot be shared or reused in other tables.&lt;/p&gt;
&lt;p&gt;Each row in the COMPLEX_TYPES table represents one component (field) in one complex type. A ROW produces one row per field, an ARRAY produces one, and a MAP produces two.&lt;/p&gt;
&lt;p&gt;Arrays of primitive types used in native (ROS) tables are not included in the COMPLEX_TYPES table. They are included instead in the &lt;a href=&#34;../../../../en/sql-reference/system-tables/v-catalog-schema/types/#&#34;&gt;TYPES&lt;/a&gt; table.&lt;/p&gt;
&lt;p&gt;This table does not include complex types in &lt;a href=&#34;../../../../en/sql-reference/statements/create-statements/create-external-table-iceberg/&#34;&gt;Iceberg tables&lt;/a&gt;.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;TYPE_ID&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;


A unique identifier for the inlined complex type.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;TYPE_KIND&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;


The specific kind of complex type: row, array, or map.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;TYPE_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
The generated name of this type. All names begin with _ct_ followed by a number.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;FIELD_ID&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;


A unique identifier for the field.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;FIELD_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;


The name of the field, if specified in the table definition, or a generated name beginning with &amp;quot;f&amp;quot;.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;FIELD_TYPE_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;


The type of the field&#39;s value.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;FIELD_POSITION&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;


The field&#39;s position in its containing complex type (0-based).&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;FIELD_LENGTH&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;


Number of bytes in the field value, or -1 if the value is not a scalar type.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;CHARACTER_MAXIMUM_LENGTH&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;


Maximum allowable length of the column.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;NUMERIC_PRECISION&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;


Number of significant decimal digits.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;NUMERIC_SCALE&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;


Number of fractional digits.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;DATETIME_PRECISION&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;


For &lt;code&gt;TIMESTAMP&lt;/code&gt; data type, returns the declared precision; returns NULL if no precision was declared.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;INTERVAL_PRECISION&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;


Number of fractional digits retained in the seconds field.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;
&lt;h2 id=&#34;examples&#34;&gt;Examples&lt;/h2&gt;
&lt;p&gt;The following example shows the type and field values after defining a single external table.&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; CREATE EXTERNAL TABLE warehouse(
    name VARCHAR, id_map MAP&amp;lt;INT,VARCHAR&amp;gt;,
    data row(record INT, total FLOAT, description VARCHAR(100)),
    prices ARRAY[INT], comment VARCHAR(200), sales_total FLOAT, storeID INT)
  AS COPY FROM ... PARQUET;

=&amp;gt; SELECT type_id,type_kind,type_name,field_id,field_name,field_type_name,field_position
    FROM COMPLEX_TYPES ORDER BY type_id,field_name;

      type_id      | type_kind |       type_name       | field_id | field_name  | field_type_name | field_position
-------------------+-----------+-----------------------+----------+-------------+-----------------+----------------
 45035996274278280 | Map       | _ct_45035996274278280 |        6 | key         | int             |              0
 45035996274278280 | Map       | _ct_45035996274278280 |        9 | value       | varchar(80)     |              1
 45035996274278282 | Row       | _ct_45035996274278282 |        9 | description | varchar(80)     |              2
 45035996274278282 | Row       | _ct_45035996274278282 |        6 | record      | int             |              0
 45035996274278282 | Row       | _ct_45035996274278282 |        7 | total       | float           |              1
 45035996274278284 | Array     | _ct_45035996274278284 |        6 |             | int             |              0
(6 rows)
&lt;/code&gt;&lt;/pre&gt;

      </description>
    </item>
    
    <item>
      <title>Sql-Reference: CONSTRAINT_COLUMNS</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/constraint-columns/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/constraint-columns/</guid>
      <description>
        
        
        &lt;p&gt;Records information about table column constraints.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;CONSTRAINT_ID&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


Unique numeric ID assigned by the OpenText™ Analytics Database catalog that identifies the constraint.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;TABLE_NAMESPACE&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;



For Eon Mode databases, name of the &lt;a href=&#34;../../../../en/architecture/eon-concepts/shards-and-subscriptions/&#34;&gt;namespace&lt;/a&gt; that contains the table.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;TABLE_SCHEMA&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;





&lt;p&gt;Name of the schema that contains this table.&lt;/p&gt;
&lt;p&gt;If the schema belongs to a non-default namespace in an Eon Mode database, the schema name is front-qualified with the name of the schema&#39;s namespace. For example, &lt;code&gt;n1.s&lt;/code&gt; refers to schema &lt;code&gt;s&lt;/code&gt; in namespace &lt;code&gt;n1&lt;/code&gt;.&lt;/p&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;TABLE_ID&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


Unique numeric ID assigned by the database catalog that identifies the table.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;TABLE_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


Name of the table in which the column resides.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;COLUMN_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


Name of the column that is constrained. For check constraints, if more than one column is referenced, each appears as a separate row.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;CONSTRAINT_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


Constraint name for which information is listed.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;CONSTRAINT_TYPE&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


CHAR&lt;/td&gt; 

&lt;td &gt;












&lt;p&gt;The constraint type, one of the following:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;c&lt;/code&gt;: check&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;f&lt;/code&gt;: foreign&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;n&lt;/code&gt;: not null&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;p&lt;/code&gt;: primary&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;u&lt;/code&gt;: unique&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;IS_ENABLED&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


BOOLEAN&lt;/td&gt; 

&lt;td &gt;


Indicates whether a constraint for a primary key, unique key, or check constraint is currently enabled.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;REFERENCE_TABLE_ID&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


Catalog-assigned integer value that uniquely identifies the referenced table&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;REFERENCE_TABLE_NAMESPACE&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


For Eon Mode databases, references the TABLE_NAMESPACE column in the &lt;a href=&#34;../../../../en/sql-reference/system-tables/v-catalog-schema/primary-keys/#&#34;&gt;PRIMARY_KEYS&lt;/a&gt; table.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;REFERENCE_TABLE_SCHEMA&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;




&lt;p&gt;Schema name for which information is listed.&lt;/p&gt;
&lt;p&gt;If the schema belongs to a non-default namespace in an Eon Mode database, the schema name is front-qualified with the name of the schema&#39;s namespace. For example, &lt;code&gt;n1.s&lt;/code&gt; refers to schema &lt;code&gt;s&lt;/code&gt; in namespace &lt;code&gt;n1&lt;/code&gt;.&lt;/p&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;REFERENCE_TABLE_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


References the TABLE_NAME column in the PRIMARY_KEYS table.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;REFERENCE_COLUMN_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


References the COLUMN_NAME column in the PRIMARY_KEYS table.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;
&lt;h2 id=&#34;privileges&#34;&gt;Privileges&lt;/h2&gt;
&lt;p&gt;Non-superuser: No explicit privileges required. You only see records for tables that you have privileges to view.&lt;/p&gt;


      </description>
    </item>
    
    <item>
      <title>Sql-Reference: CRYPTOGRAPHIC_KEYS</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/cryptographic-keys/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/cryptographic-keys/</guid>
      <description>
        
        
        &lt;p&gt;Stores private keys created by &lt;a href=&#34;../../../../en/sql-reference/statements/create-statements/create-key/#&#34;&gt;CREATE KEY&lt;/a&gt;.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


OID&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;
The object identifier.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


NAME&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;
Name of the key.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


OWNER&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;
The owner of the object.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


TYPE&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;




&lt;p&gt;The type of key.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;0 = &lt;code&gt;AES&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;1 = &lt;code&gt;RSA&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


LENGTH&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;
The size of the key in bits.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


HAS_PASSWORD&lt;/td&gt; 

&lt;td &gt;


BOOLEAN&lt;/td&gt; 

&lt;td &gt;
Whether the key has a password.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


KEY&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;
The private key.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;
&lt;h2 id=&#34;examples&#34;&gt;Examples&lt;/h2&gt;
&lt;p&gt;See &lt;a href=&#34;../../../../en/security-and-authentication/tls-protocol/tls-overview/generating-tls-certificates-and-keys/#&#34;&gt;Generating TLS certificates and keys&lt;/a&gt;.&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Sql-Reference: DATA_LOADERS</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/data-loaders/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/data-loaders/</guid>
      <description>
        
        
        &lt;p&gt;Lists all defined data loaders.&lt;/p&gt;

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Column Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Loader name.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;NAMESPACENAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
For Eon Mode databases, &lt;a href=&#34;../../../../en/architecture/eon-concepts/shards-and-subscriptions/&#34;&gt;namespace&lt;/a&gt; in which the loader is defined.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;SCHEMANAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;



&lt;p&gt;Schema in which the loader is defined.&lt;/p&gt;
&lt;p&gt;If the schema belongs to a non-default namespace in an Eon Mode database, the schema name is front-qualified with the name of the schema&#39;s namespace. For example, &lt;code&gt;n1.s&lt;/code&gt; refers to schema &lt;code&gt;s&lt;/code&gt; in namespace &lt;code&gt;n1&lt;/code&gt;.&lt;/p&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;OWNER&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
OpenText™ Analytics Database user who created the loader.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;COPYSTMT&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
COPY statement used by this loader.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;RETRYLIMIT&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INT&lt;/td&gt; 

&lt;td &gt;
Number of times to retry a failed file load. For loaders that do not specify an explicit value, this value is updated if the value of the &lt;a href=&#34;../../../../en/sql-reference/config-parameters/general-parameters/#DataLoaderDefaultRetryLimit&#34;&gt;DataLoaderDefaultRetryLimit&lt;/a&gt; configuration parameter changes.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;HISTORYRETENTIONINTERVAL&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTERVAL&lt;/td&gt; 

&lt;td &gt;
How long to wait before purging rows in the loader&#39;s monitoring table. See &lt;a href=&#34;../../../../en/sql-reference/statements/create-statements/create-data-loader/#&#34;&gt;CREATE DATA LOADER&lt;/a&gt;.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;TRIGGER&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
External &lt;a href=&#34;../../../../en/sql-reference/statements/create-statements/create-data-loader/#triggers&#34;&gt;trigger&lt;/a&gt; for this data loader, if any.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;ENABLED&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
BOOLEAN&lt;/td&gt; 

&lt;td &gt;
Whether the data loader is enabled. &lt;a href=&#34;../../../../en/sql-reference/statements/execute-data-loader/#&#34;&gt;EXECUTE DATA LOADER&lt;/a&gt; does not run a disabled data loader.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;iskafka&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
BOOLEAN&lt;/td&gt; 

&lt;td &gt;
Indicates whether it is a Kafka data loader.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;CREATE_TIME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
TIMESTAMPTZ&lt;/td&gt; 

&lt;td &gt;
Time when the data loader was created.&lt;/td&gt;&lt;/tr&gt;

&lt;/table&gt;

&lt;h2 id=&#34;examples&#34;&gt;Examples&lt;/h2&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-sql&#34; data-lang=&#34;sql&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;o&#34;&gt;=&amp;gt;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;SELECT&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;*&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;FROM&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;DATA_LOADERS&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;name&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;namespacename&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;schemaname&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;  &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;owner&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;  &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;             &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;copystmt&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;              &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;retrylimit&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;historyretentioninterval&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;trigger&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;enabled&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;iskafka&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;  &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;  &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;create_time&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;  
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&lt;/span&gt;&lt;span class=&#34;c1&#34;&gt;------+------------+---------+-----------------------------------+------------+---------------------------|--------+---------
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;dl&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;   &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;               &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;public&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;     &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;dbadmin&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;copy&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;sales&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;from&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;s3://data/*.dat&amp;#39;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;3&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;       &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;           &lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;14&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;days&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;        &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;         &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;   &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;t&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;     &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;f&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;2025&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;-&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;05&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;-&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;28&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;03&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;32&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;12&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;867798&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;-&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;04&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;1&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;row&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
      </description>
    </item>
    
    <item>
      <title>Sql-Reference: DATABASES</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/dbs/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/dbs/</guid>
      <description>
        
        
        &lt;p&gt;Provides information about the databases in this OpenText™ Analytics Database installation.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;DATABASE_ID&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


The database&#39;s internal ID number&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;DATABASE_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


The database&#39;s name&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;OWNER_ID&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


The database owner&#39;s ID&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;OWNER_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


The database owner&#39;s name&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;START_TIME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


TIMESTAMPTZ&lt;/td&gt; 

&lt;td &gt;


The date and time the database last started&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;COMPLIANCE_MESSAGE&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


Message describing the current state of the database&#39;s license compliance&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;EXPORT_SUBNET&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;






&lt;p&gt;Can be either of the following:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;The subnet (on the public network) used by the database for import/export&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The public address of the subnet that the database native load balancing uses for load balancing&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;LOAD_BALANCE_POLICY&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
The current native connection load balance policy, which controls whether client connection requests are redirected to other hosts in the database. See &lt;a href=&#34;../../../../en/admin/managing-client-connections/connection-load-balancing/about-native-connection-load-balancing/#&#34;&gt;About native connection load balancing&lt;/a&gt;.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
BACKEND_ADDRESS_FAMILY&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
The Internet Protocol (IP) addressing standard used for internode communications. This value is either ipv4 or ipv6.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
BRANCH_NAME&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
This column is no longer used.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;
&lt;h2 id=&#34;examples&#34;&gt;Examples&lt;/h2&gt;
&lt;p&gt;This example queries the databases table from a master database.&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT * FROM DATABASES;
-[ RECORD 1 ]----------+-------------------------------------------------------------
database_id            | 45035996273704976
database_name          | VMart
owner_id               | 45035996273704962
owner_name             | dbadmin
start_time             | 2017-10-22 05:16:22.066961-04
compliance_message     | The database is in compliance with respect to raw data size.
export_subnet          | 0
load_balance_policy    | none
backend_address_family | ipv4
branch_name            |
&lt;/code&gt;&lt;/pre&gt;
      </description>
    </item>
    
    <item>
      <title>Sql-Reference: DIRECTED_QUERIES</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/directed-queries/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/directed-queries/</guid>
      <description>
        
        
        &lt;p&gt;Returns information about directed queries.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
QUERY_NAME&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;














&lt;p&gt;Directed query&#39;s unique identifier, used by statements such as &lt;a href=&#34;../../../../en/sql-reference/statements/activate-directed-query/#&#34;&gt;ACTIVATE DIRECTED QUERY&lt;/a&gt;. How this identifier is set depends on how it was created:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Direct call to &lt;a href=&#34;../../../../en/sql-reference/statements/create-statements/create-directed-query/#&#34;&gt;CREATE DIRECTED QUERY&lt;/a&gt;: Set by the user-supplied &lt;em&gt;&lt;code&gt;query-name&lt;/code&gt;&lt;/em&gt; argument.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Call to &lt;a href=&#34;../../../../en/sql-reference/functions/directed-queries-functions/save-plans/#&#34;&gt;SAVE_PLANS&lt;/a&gt;: Concatenated from the following strings:&lt;/p&gt;
  &lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;save_plans_&lt;span class=&#34;code-variable&#34;&gt;query-label&lt;/span&gt;_&lt;span class=&#34;code-variable&#34;&gt;query-number&lt;/span&gt;_&lt;span class=&#34;code-variable&#34;&gt;save-plans-version&lt;/span&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;where:&lt;/p&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;&lt;code&gt;query-label&lt;/code&gt;&lt;/em&gt; is a &lt;a href=&#34;../../../../en/sql-reference/language-elements/hints/label/#&#34;&gt;LABEL&lt;/a&gt; hint embedded in the input query associated with this directed query. If theinput query contains no label, then this string is set to &lt;code&gt;nolabel&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;&lt;em&gt;&lt;code&gt;query-number&lt;/code&gt;&lt;/em&gt; is an integer in a continuous sequence between 0 and &lt;em&gt;&lt;code&gt;budget-query&lt;/code&gt;&lt;/em&gt;, which uniquely identifies this directed query from others in the same SAVE_PLANS-generated set.&lt;/li&gt;
&lt;li&gt;&lt;span class=&#34;code-variable&#34;&gt;[save-plans-version](/en/sql-reference/system-tables/v-catalog-schema/directed-queries/#SAVE_PLANS_VERSION)&lt;/span&gt; identifies the set of directed queries to which this directed query belongs.&lt;/li&gt;
&lt;/ul&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
IS_ACTIVE&lt;/td&gt; 

&lt;td &gt;
BOOLEAN&lt;/td&gt; 

&lt;td &gt;
Whether the directed query is active&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
VERTICA_VERSION&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
OpenText™ Analytics Database version installed when this directed query was created.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
COMMENT&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;


User-supplied or optimizer-generated comment on a directed query, up to 128 characters.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;a name=&#34;SAVE_PLANS_VERSION&#34;&gt;&lt;/a&gt;SAVE_PLANS_VERSION&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;





&lt;p&gt;One of the following:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;0: Generated by a direct call to &lt;a href=&#34;../../../../en/sql-reference/statements/create-statements/create-directed-query/#&#34;&gt;CREATE DIRECTED QUERY&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;&amp;gt;0: Identifies a set of directed queries that were generated by the same call to SAVE_PLANS. All directed queries of the set share the same &lt;code&gt;SAVE_PLANS_VERSION&lt;/code&gt; integer, which increments by 1 the previous highest &lt;code&gt;SAVE_PLANS_VERSION&lt;/code&gt; setting. Use this identifier to &lt;a href=&#34;../../../../en/sql-reference/statements/activate-directed-query/&#34;&gt;activate&lt;/a&gt;, &lt;a href=&#34;../../../../en/sql-reference/statements/deactivate-directed-query/&#34;&gt;deactivate&lt;/a&gt;, and &lt;a href=&#34;../../../../en/sql-reference/statements/drop-statements/drop-directed-query/&#34;&gt;drop&lt;/a&gt; a set of directed queries.&lt;/li&gt;
&lt;/ul&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
USERNAME&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
User that created this directed query.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
CREATION_DATE&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
When the directed query was created.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
SINCE_DATE&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;


Populated by SAVE_PLANS-generated directed queries, the earliest timestamp of input queries eligible to be saved as directed queries.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
INPUT_QUERY&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Input query associated with this directed query. Multiple directed queries can map to the same input query.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
ANNOTATED_QUERY&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Query with embedded hints that was paired with the input query of this directed query, where the hints encapsulated the query plan saved with &lt;a href=&#34;../../../../en/sql-reference/statements/create-statements/create-directed-query/#&#34;&gt;CREATE DIRECTED QUERY&lt;/a&gt;.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
DIGEST&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
Hash of saved query plan data, used by the optimizer to map identical input queries to the same active directed query.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;
&lt;h2 id=&#34;privileges&#34;&gt;Privileges&lt;/h2&gt;
&lt;a class=&#34;glosslink&#34; href=&#34;../../../../en/glossary/db-superuser/&#34; title=&#34;&#34;&gt;Superuser&lt;/a&gt;
&lt;h2 id=&#34;truncated-query-results&#34;&gt;Truncated query results&lt;/h2&gt;
&lt;p&gt;Query results for the fields INPUT_QUERY and ANNOTATED_QUERY are truncated after ~32K characters. You can get the full content of both fields in two ways:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Use the statement &lt;a href=&#34;../../../../en/sql-reference/statements/get-directed-query/#&#34;&gt;GET DIRECTED QUERY&lt;/a&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Use &lt;a href=&#34;../../../../en/sql-reference/functions/management-functions/catalog-functions/export-catalog/#&#34;&gt;EXPORT_CATALOG&lt;/a&gt; to export directed queries.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;


      </description>
    </item>
    
    <item>
      <title>Sql-Reference: DUAL</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/dual/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/dual/</guid>
      <description>
        
        
        &lt;p&gt;DUAL is a single-column &amp;quot;dummy&amp;quot; table with one record whose value is X; for example:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT * FROM DUAL;
 dummy
-------
 X
(1 row)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;You can write the following types of queries:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT 1 FROM dual;
 ?column?
----------
        1
(1 row)
=&amp;gt; SELECT current_timestamp, current_user FROM dual;
           ?column?            | current_user
-------------------------------+--------------
 2010-03-08 12:57:32.065841-05 | release
(1 row)
=&amp;gt; CREATE TABLE t1(col1 VARCHAR(20), col2 VARCHAR(2));
=&amp;gt; INSERT INTO T1(SELECT &amp;#39;hello&amp;#39; AS col1, 1 AS col2 FROM dual);)
=&amp;gt; SELECT * FROM t1;
 col1  | col2
-------+------
 hello | 1
(1 row
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;restrictions&#34;&gt;Restrictions&lt;/h2&gt;
&lt;p&gt;You cannot create &lt;a class=&#34;glosslink&#34; href=&#34;../../../../en/glossary/projection/&#34; title=&#34;Optimized collections of table columns that provide physical storage for data.&#34;&gt;projections&lt;/a&gt; for DUAL.&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Sql-Reference: ELASTIC_CLUSTER</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/elastic-cluster/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/elastic-cluster/</guid>
      <description>
        
        
        &lt;p&gt;Returns information about cluster elasticity, such as whether &lt;a href=&#34;../../../../en/admin/managing-db/managing-nodes/elastic-cluster/#&#34;&gt;Elastic cluster&lt;/a&gt; is running.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;SCALING_FACTOR&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


This value is only meaningful when you enable local segments. &lt;code&gt;SCALING_FACTOR&lt;/code&gt; influences the number of local segments on each node. Initially—before a rebalance runs—there are &lt;em&gt;scaling_factor&lt;/em&gt; number of local segments per node. A large &lt;code&gt;SCALING_FACTOR&lt;/code&gt; is good for rebalancing a potentially wide range of cluster configurations quickly. However, too large a value might lead to &lt;a href=&#34;../../../../en/admin/monitoring/monitoring-events/event-codes/#RosPushback&#34;&gt;ROS pushback&lt;/a&gt;, particularly in a database with a table with a large number of partitions. See &lt;a href=&#34;../../../../en/sql-reference/functions/management-functions/cluster-functions/set-scaling-factor/#&#34;&gt;SET_SCALING_FACTOR&lt;/a&gt; for more details.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;MAXIMUM_SKEW_PERCENT&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


This value is only meaningful when you enable local segments. &lt;code&gt;MAXIMUM_SKEW_PERCENT&lt;/code&gt; is the maximum amount of skew a rebalance operation tolerates, which preferentially redistributes local segments; however, if after doing so the segment ranges of any two nodes differs by more than this amount, rebalance will separate and distribute storage to even the distribution.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;SEGMENT_LAYOUT&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


Current, offset=0, segment layout. New segmented projections will be created with this layout, with segments rotated by the corresponding offset. Existing segmented projections will be rebalanced into an offset of this layout.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;LOCAL_SEGMENT_LAYOUT&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


Similar to SEGMENT_LAYOUT but includes details that indicate the number of local segments, their relative size and node assignment.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;VERSION&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


Number that gets incremented each time the cluster topology changes (nodes added, marked ephemeral, marked permanent, etc). Useful for monitoring active and past rebalance operations.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;IS_ENABLED&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


BOOLEAN&lt;/td&gt; 

&lt;td &gt;


True if Elastic Cluster is enabled, otherwise false.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;IS_LOCAL_SEGMENT_ENABLED&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


BOOLEAN&lt;/td&gt; 

&lt;td &gt;


True if local segments are enabled, otherwise false.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;IS_REBALANCE_RUNNING&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


BOOLEAN&lt;/td&gt; 

&lt;td &gt;


True if rebalance is currently running, otherwise false.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;
&lt;h2 id=&#34;privileges&#34;&gt;Privileges&lt;/h2&gt;
&lt;p&gt;Superuser&lt;/p&gt;
&lt;h2 id=&#34;see-also&#34;&gt;See also&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;a href=&#34;../../../../en/sql-reference/functions/management-functions/cluster-functions/enable-elastic-cluster/#&#34;&gt;ENABLE_ELASTIC_CLUSTER&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href=&#34;../../../../en/admin/managing-db/managing-nodes/elastic-cluster/#&#34;&gt;Elastic cluster&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

      </description>
    </item>
    
    <item>
      <title>Sql-Reference: EPOCHS</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/epochs/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/epochs/</guid>
      <description>
        
        
        &lt;p&gt;For the most recently closed epochs, lists the date and time of the close and the corresponding epoch number of the closed epoch. The EPOCHS table may return a varying number of rows depending on current commit activities.&lt;/p&gt;

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;EPOCH_CLOSE_TIME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


DATETIME&lt;/td&gt; 

&lt;td &gt;


The date and time that the epoch closed.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;EPOCH_NUMBER&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


The epoch number of the closed epoch.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;

&lt;h2 id=&#34;examples&#34;&gt;Examples&lt;/h2&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT * FROM EPOCHS;
       epoch_close_time        | epoch_number
-------------------------------+--------------
 2018-11-12 16:05:15.552571-05 |           16
(1 row)
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;querying-for-historical-data-br-&#34;&gt;Querying for historical data &lt;br /&gt;&lt;/h2&gt;
&lt;p&gt;If you need historical data about epochs and corresponding date information, query the DC_TRANSACTION_ENDS table.&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; select dc.end_epoch,min(dc.time),max(dc.time) from dc_transaction_ends dc group by end_epoch;
 end_epoch |             min               | max
-----------+-------------------------------+-------------------------------
       214 |  2018-10-12 08:05:47.02075-04 | 2018-10-15 10:22:24.015292-04
       215 | 2018-10-15 10:22:47.015172-04 | 2018-10-15 13:00:44.888984-04
                          ...
       226 | 2018-10-15 15:03:47.015235-04 | 2018-10-15 20:37:34.346667-04
       227 | 2018-10-15 20:37:47.008137-04 | 2018-10-16 07:39:00.29917-04
       228 | 2018-10-16 07:39:47.012411-04 | 2018-10-16 08:16:01.470232-04
       229 | 2018-10-16 08:16:47.018899-04 | 2018-10-16 08:21:13.854348-04
       230 | 2018-10-16 08:21:47.013767-04 | 2018-10-17 12:21:09.224094-04
       231 |  2018-10-17 12:21:09.23193-04 | 2018-10-17 15:11:59.338777-04
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;see-also&#34;&gt;See also&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;a href=&#34;../../../../en/sql-reference/config-parameters/epoch-management-parameters/#&#34;&gt;Epoch management parameters&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href=&#34;../../../../en/sql-reference/functions/management-functions/epoch-functions/#&#34;&gt;Epoch functions&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

      </description>
    </item>
    
    <item>
      <title>Sql-Reference: FAULT_GROUPS</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/fault-groups/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/fault-groups/</guid>
      <description>
        
        
        &lt;p&gt;View the fault groups and their hierarchy in the cluster.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;MEMBER_ID&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


A unique numeric ID assigned by the OpenText™ Analytics Database catalog that identifies the fault group.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;MEMBER_TYPE&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;


The type of fault group. Values can be either &lt;code&gt;NODE&lt;/code&gt; or &lt;code&gt;FAULT GROUP&lt;/code&gt;.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;MEMBER_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Name associated with this fault group. Values will be the node name or the fault group name.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;PARENT_ID&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;








&lt;p&gt;A unique numeric ID assigned by the database catalog that identifies the parent fault group. The parent fault group can contain:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Nodes&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Other fault groups&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Nodes and other fault groups&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;PARENT_TYPE&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;






&lt;p&gt;The type of parent fault group, where the default/root parent is the DATABASE object. Can be one of the following objects:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;FAULT GROUP&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;DATABASE&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;PARENT_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
The name of the fault group that contains nodes or other fault groups or both nodes and fault groups.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;IS_AUTOMATICALLY_GENERATED&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
BOOLEAN&lt;/td&gt; 

&lt;td &gt;
If true, denotes whether OpenText™ Analytics Database created fault groups for you to manage the fault tolerance of control nodes in large cluster configurations. If false, denotes that you created fault groups manually. See &lt;a href=&#34;../../../../en/admin/managing-db/managing-nodes/fault-groups/&#34;&gt;Fault Groups&lt;/a&gt; for more information&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;
&lt;h2 id=&#34;examples&#34;&gt;Examples&lt;/h2&gt;
&lt;p&gt;Show the current hierarchy of fault groups in the cluster:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;vmartdb=&amp;gt; SELECT member_type, member_name, parent_type, CASE
          WHEN parent_type = &amp;#39;DATABASE&amp;#39; THEN &amp;#39;&amp;#39;
          ELSE parent_name END FROM fault_groups
          ORDER BY member_name;
 member_type | member_name           | parent_type | parent_name
-------------+-----------------------+-------------+-------------
 NODE        | v_vmart_node0001      | FAULT GROUP | two
 NODE        | v_vmart_node0002      | FAULT GROUP | two
 NODE        | v_vmart_node0003      | FAULT GROUP | three
 FAULT GROUP | one                   | DATABASE    |
 FAULT GROUP | three                 | DATABASE    |
 FAULT GROUP | two                   | FAULT GROUP | one
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;View the distribution of the segment layout:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;vmartdb=&amp;gt; SELECT segment_layout from elastic_cluster;
                           segment_layout
-------------------------------------------------------------------------
 v_vmart_node0001[33.3%] v_vmart_node0003[33.3%] v_vmart_node0004[33.3%]
(1 row)
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;see-also&#34;&gt;See also&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;a href=&#34;../../../../en/architecture/enterprise-concepts/high-availability-with-fault-groups/#&#34;&gt;High availability with fault groups&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href=&#34;../../../../en/admin/managing-db/managing-nodes/fault-groups/#&#34;&gt;Fault groups&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

      </description>
    </item>
    
    <item>
      <title>Sql-Reference: FOREIGN_KEYS</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/foreign-keys/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/foreign-keys/</guid>
      <description>
        
        
        &lt;p&gt;Provides foreign key information.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;CONSTRAINT_ID&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


A unique numeric ID assigned by the OpenText™ Analytics Database catalog, which identifies the constraint.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;CONSTRAINT_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


The constraint name for which information is listed.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;COLUMN_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


The name of the column that is constrained.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;ORDINAL_POSITION&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


The position of the column within the key. The numbering of columns starts at 1.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;TABLE_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


The table name for which information is listed.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;REFERENCE_TABLE_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


References the TABLE_NAME column in the &lt;a href=&#34;../../../../en/sql-reference/system-tables/v-catalog-schema/primary-keys/#&#34;&gt;PRIMARY_KEYS&lt;/a&gt; table.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;CONSTRAINT_TYPE&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


The constraint type, &lt;code&gt;f&lt;/code&gt;, for foreign key.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;REFERENCE_COLUMN_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


References the COLUMN_NAME column in the PRIMARY_KEY table.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;TABLE_NAMESPACE_ID&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


Unique numeric identifier for the table &lt;a href=&#34;../../../../en/architecture/eon-concepts/shards-and-subscriptions/&#34;&gt;namespace&lt;/a&gt;.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;TABLE_NAMESPACE&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


For Eon Mode databases, &lt;a href=&#34;../../../../en/architecture/eon-concepts/shards-and-subscriptions/&#34;&gt;namespace&lt;/a&gt; that contains the table for which information is listed.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;TABLE_SCHEMA&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;





&lt;p&gt;The schema name for which information is listed.&lt;/p&gt;
&lt;p&gt;If the schema belongs to a non-default namespace in an Eon Mode database, the schema name is front-qualified with the name of the schema&#39;s namespace. For example, &lt;code&gt;n1.s&lt;/code&gt; refers to schema &lt;code&gt;s&lt;/code&gt; in namespace &lt;code&gt;n1&lt;/code&gt;.&lt;/p&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;REFERENCE_TABLE_NAMESPACE_ID&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


For Eon Mode databases, references the TABLE_NAMESPACE_ID column in the PRIMARY_KEYS table.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;REFERENCE_TABLE_NAMESPACE&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


For Eon Mode databases, references the TABLE_NAMESPACE column in the PRIMARY_KEYS table.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;REFERENCE_TABLE_SCHEMA&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;





&lt;p&gt;References the TABLE_SCHEMA column in the PRIMARY_KEYS table.&lt;/p&gt;
&lt;p&gt;If the schema belongs to a non-default namespace in an Eon Mode database, the schema name is front-qualified with the name of the schema&#39;s namespace. For example, &lt;code&gt;n1.s&lt;/code&gt; refers to schema &lt;code&gt;s&lt;/code&gt; in namespace &lt;code&gt;n1&lt;/code&gt;.&lt;/p&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;
&lt;h2 id=&#34;examples&#34;&gt;Examples&lt;/h2&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;mydb=&amp;gt; SELECT
          constraint_name,
          table_name,
          ordinal_position,
          reference_table_name
       FROM foreign_keys ORDER BY 3;
      constraint_name      |    table_name     | ordinal_position | reference_table_name
---------------------------+-------------------+------------------+-----------------------
 fk_store_sales_date       | store_sales_fact  |                1 | date_dimension
 fk_online_sales_saledate  | online_sales_fact |                1 | date_dimension
 fk_store_orders_product   | store_orders_fact |                1 | product_dimension
 fk_inventory_date         | inventory_fact    |                1 | date_dimension
 fk_inventory_product      | inventory_fact    |                2 | product_dimension
 fk_store_sales_product    | store_sales_fact  |                2 | product_dimension
 fk_online_sales_shipdate  | online_sales_fact |                2 | date_dimension
 fk_store_orders_product   | store_orders_fact |                2 | product_dimension
 fk_inventory_product      | inventory_fact    |                3 | product_dimension
 fk_store_sales_product    | store_sales_fact  |                3 | product_dimension
 fk_online_sales_product   | online_sales_fact |                3 | product_dimension
 fk_store_orders_store     | store_orders_fact |                3 | store_dimension
 fk_online_sales_product   | online_sales_fact |                4 | product_dimension
 fk_inventory_warehouse    | inventory_fact    |                4 | warehouse_dimension
 fk_store_orders_vendor    | store_orders_fact |                4 | vendor_dimension
 fk_store_sales_store      | store_sales_fact  |                4 | store_dimension
 fk_store_orders_employee  | store_orders_fact |                5 | employee_dimension
 fk_store_sales_promotion  | store_sales_fact  |                5 | promotion_dimension
 fk_online_sales_customer  | online_sales_fact |                5 | customer_dimension
 fk_store_sales_customer   | store_sales_fact  |                6 | customer_dimension
 fk_online_sales_cc        | online_sales_fact |                6 | call_center_dimension
 fk_store_sales_employee   | store_sales_fact  |                7 | employee_dimension
 fk_online_sales_op        | online_sales_fact |                7 | online_page_dimension
 fk_online_sales_shipping  | online_sales_fact |                8 | shipping_dimension
 fk_online_sales_warehouse | online_sales_fact |                9 | warehouse_dimension
 fk_online_sales_promotion | online_sales_fact |               10 | promotion_dimension
(26 rows)
&lt;/code&gt;&lt;/pre&gt;
      </description>
    </item>
    
    <item>
      <title>Sql-Reference: GRANTS</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/grants/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/grants/</guid>
      <description>
        
        
        &lt;p&gt;Returns information about privileges that are explicitly granted on database objects. Information about &lt;a href=&#34;../../../../en/admin/db-users-and-privileges/db-privileges/inherited-privileges/&#34;&gt;inherited privileges&lt;/a&gt; is not included.

&lt;div class=&#34;alert admonition note&#34; role=&#34;alert&#34;&gt;
&lt;h4 class=&#34;admonition-head&#34;&gt;Note&lt;/h4&gt;

While an ADMIN OPTION granted to users through roles is not viewable directly from this table, you can view it and a summary of privileges data with vsql meta-commands
&lt;code&gt;&lt;a href=&#34;../../../../en/connecting-to/using-vsql/meta-commands/meta-commands-quick-reference/#&#34;&gt;\z&lt;/a&gt;&lt;/code&gt; and
&lt;code&gt;&lt;a href=&#34;../../../../en/connecting-to/using-vsql/meta-commands/d-meta-commands/#&#34;&gt;\dp&lt;/a&gt;&lt;/code&gt;.

&lt;/div&gt;&lt;/p&gt;

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
GRANTEE&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
The user being granted permission.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
GRANTEE_ID&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;


Catalog-assigned integer value that uniquely identifies theuser granted permissions.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
GRANT_ID&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;
Catalog-assigned integer value that uniquely identifies thegrant operation.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
GRANTOR&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


The user granting the permission.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
GRANTOR_ID&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


Catalog-assigned integer value that uniquely identifies theuser who performed the grant operation.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
OBJECT_ID&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


Catalog-assigned integer value that uniquely identifies theobject granted.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
OBJECT_NAME&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


The name of the object that is being granted privileges. Note that for schema privileges, the schema name appears in the &lt;code&gt;OBJECT_NAME&lt;/code&gt; column instead of the &lt;code&gt;OBJECT_SCHEMA&lt;/code&gt; column.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
OBJECT_NAMESPACE&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;

For Eon Mode databases, &lt;a href=&#34;../../../../en/architecture/eon-concepts/shards-and-subscriptions/&#34;&gt;namespace&lt;/a&gt; of the object that is being granted privileges.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
OBJECT_SCHEMA&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;




&lt;p&gt;Schema of the object that is being granted privileges.&lt;/p&gt;
&lt;p&gt;If the schema belongs to a non-default namespace in an Eon Mode database, the schema name is front-qualified with the name of the schema&#39;s namespace. For example, &lt;code&gt;n1.s&lt;/code&gt; refers to schema &lt;code&gt;s&lt;/code&gt; in namespace &lt;code&gt;n1&lt;/code&gt;.&lt;/p&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
OBJECT_TYPE&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


The object type on which the grant was applied—for example, ROLE, SCHEMA, DATABASE, RESOURCEPOOL.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
PRIVILEGES_DESCRIPTION&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;
Lists the privileges granted on an object—for example INSERT, SELECT. An asterisk in &lt;code&gt;PRIVILEGES_DESCRIPTION&lt;/code&gt; output shows that the privilege grant included &lt;code&gt;WITH GRANT OPTION&lt;/code&gt;.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;

&lt;h2 id=&#34;examples&#34;&gt;Examples&lt;/h2&gt;
&lt;p&gt;The following query shows the privileges that are granted to user Rob or role R1. An asterisk (*) appended to a privilege indicates that the user can grant the privilege to other users:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT grantor,privileges_description,object_name,object_type,grantee FROM grants WHERE grantee=&amp;#39;Rob&amp;#39; OR grantee=&amp;#39;R1&amp;#39;;
 grantor |  privileges_description   | object_name | object_type  | grantee
 --------+---------------------------+-------------+--------------+---------
 dbadmin | USAGE                     | general     | RESOURCEPOOL | Rob
 dbadmin | USAGE, CREATE             | s1          | SCHEMA       | Rob
 dbadmin | INSERT*, SELECT*, UPDATE* | t1          | TABLE        | Rob
 dbadmin | SELECT                    | t1          | TABLE        | R1
 dbadmin | USAGE                     | s1          | SCHEMA       | R1
 dbadmin |                           | R1          | ROLE         | Rob
 (6 rows)
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;see-also&#34;&gt;See also&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;a href=&#34;../../../../en/sql-reference/functions/management-functions/privileges-and-access-functions/has-role/#&#34;&gt;HAS_ROLE&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href=&#34;../../../../en/sql-reference/system-tables/v-catalog-schema/roles/#&#34;&gt;ROLES&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href=&#34;../../../../en/sql-reference/system-tables/v-catalog-schema/users/#&#34;&gt;USERS&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href=&#34;../../../../en/admin/db-users-and-privileges/#&#34;&gt;Database users and privileges&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

      </description>
    </item>
    
    <item>
      <title>Sql-Reference: HCATALOG_COLUMNS</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/hcatalog-columns/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/hcatalog-columns/</guid>
      <description>
        
        
        &lt;p&gt;Describes the columns of all tables available through the HCatalog Connector. Each row in this table corresponds to to a column in a table accessible through the HCatalog Connector. See &lt;a href=&#34;../../../../en/hadoop-integration/using-hcatalog-connector/#&#34;&gt;Using the HCatalog Connector&lt;/a&gt; for more information.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;TABLE_SCHEMA&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;


The name of the OpenText™ Analytics Database schema that contains the table containing this column&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;HCATALOG_SCHEMA&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;
The name of the Hive schema or database that contains the table containing this column&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;TABLE_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;
The name of the table that contains the column&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;IS_PARTITION_COLUMN&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
BOOLEAN&lt;/td&gt; 

&lt;td &gt;
Whether the table is partitioned on this column&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;COLUMN_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;
The name of the column&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;HCATALOG_DATA_TYPE&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;
The Hive data type of this column&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;DATA_TYPE&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;
The OpenText™ Analytics Database data type of this column&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;DATA_TYPE_ID&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
Numeric ID of the column&#39;s OpenText™ Analytics Database data type&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;DATA_TYPE_LENGTH&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
The number of bytes used to store this data type&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;CHARACTER_MAXIMUM_LENGTH&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
For string data types, the maximum number of characters it can hold&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;NUMERIC_PRECISION&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
For numeric types, the precision of the values in the column&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;NUMERIC_SCALE&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
For numeric data types, the scale of the values in the column&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;DATETIME_PRECISION&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
For datetime data types, the precision of the values in the column&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;INTERVAL_PRECISION&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
For interval data types, the precision of the values in the column&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;ORDINAL_POSITION&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
The position of the column within the table&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;
&lt;h2 id=&#34;privileges&#34;&gt;Privileges&lt;/h2&gt;
&lt;p&gt;No explicit permissions are required; however, users see only the records that correspond to schemas they have permissions to access.&lt;/p&gt;
&lt;h2 id=&#34;notes&#34;&gt;Notes&lt;/h2&gt;
&lt;p&gt;If you are using WebHCat instead of HiveServer2, querying this table results in one web service call to the WebHCat server for each table in each HCatalog schema. If you need to perform multiple queries on this table in a short period of time, consider creating a copy of the table using a CREATE TABLE AS statement to improve performance. The copy does not reflect any changes made to the schema of the Hive tables after it was created, but it is much faster to query.&lt;/p&gt;
&lt;h2 id=&#34;examples&#34;&gt;Examples&lt;/h2&gt;
&lt;p&gt;The following example demonstrates finding the column information for a specific table:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT * FROM HCATALOG_COLUMNS WHERE table_name = &amp;#39;hcatalogtypes&amp;#39;
-&amp;gt; ORDER BY ordinal_position;
-[ RECORD 1 ]------------+-----------------
table_schema             | hcat
hcatalog_schema          | default
table_name               | hcatalogtypes
is_partition_column      | f
column_name              | intcol
hcatalog_data_type       | int
data_type                | int
data_type_id             | 6
data_type_length         | 8
character_maximum_length |
numeric_precision        |
numeric_scale            |
datetime_precision       |
interval_precision       |
ordinal_position         | 1
-[ RECORD 2 ]------------+-----------------
table_schema             | hcat
hcatalog_schema          | default
table_name               | hcatalogtypes
is_partition_column      | f
column_name              | floatcol
hcatalog_data_type       | float
data_type                | float
data_type_id             | 7
data_type_length         | 8
character_maximum_length |
numeric_precision        |
numeric_scale            |
datetime_precision       |
interval_precision       |
ordinal_position         | 2
-[ RECORD 3 ]------------+-----------------
table_schema             | hcat
hcatalog_schema          | default
table_name               | hcatalogtypes
is_partition_column      | f
column_name              | doublecol
hcatalog_data_type       | double
data_type                | float
data_type_id             | 7
data_type_length         | 8
character_maximum_length |
numeric_precision        |
numeric_scale            |
datetime_precision       |
interval_precision       |
ordinal_position         | 3
-[ RECORD 4 ]------------+-----------------
table_schema             | hcat
hcatalog_schema          | default
table_name               | hcatalogtypes
is_partition_column      | f
column_name              | charcol
hcatalog_data_type       | string
data_type                | varchar(65000)
data_type_id             | 9
data_type_length         | 65000
character_maximum_length | 65000
numeric_precision        |
numeric_scale            |
datetime_precision       |
interval_precision       |
ordinal_position         | 4
-[ RECORD 5 ]------------+-----------------
table_schema             | hcat
hcatalog_schema          | default
table_name               | hcatalogtypes
is_partition_column      | f
column_name              | varcharcol
hcatalog_data_type       | string
data_type                | varchar(65000)
data_type_id             | 9
data_type_length         | 65000
character_maximum_length | 65000
numeric_precision        |
numeric_scale            |
datetime_precision       |
interval_precision       |
ordinal_position         | 5
-[ RECORD 6 ]------------+-----------------
table_schema             | hcat
hcatalog_schema          | default
table_name               | hcatalogtypes
is_partition_column      | f
column_name              | boolcol
hcatalog_data_type       | boolean
data_type                | boolean
data_type_id             | 5
data_type_length         | 1
character_maximum_length |
numeric_precision        |
numeric_scale            |
datetime_precision       |
interval_precision       |
ordinal_position         | 6
-[ RECORD 7 ]------------+-----------------
table_schema             | hcat
hcatalog_schema          | default
table_name               | hcatalogtypes
is_partition_column      | f
column_name              | timestampcol
hcatalog_data_type       | string
data_type                | varchar(65000)
data_type_id             | 9
data_type_length         | 65000
character_maximum_length | 65000
numeric_precision        |
numeric_scale            |
datetime_precision       |
interval_precision       |
ordinal_position         | 7
-[ RECORD 8 ]------------+-----------------
table_schema             | hcat
hcatalog_schema          | default
table_name               | hcatalogtypes
is_partition_column      | f
column_name              | varbincol
hcatalog_data_type       | binary
data_type                | varbinary(65000)
data_type_id             | 17
data_type_length         | 65000
character_maximum_length | 65000
numeric_precision        |
numeric_scale            |
datetime_precision       |
interval_precision       |
ordinal_position         | 8
-[ RECORD 9 ]------------+-----------------
table_schema             | hcat
hcatalog_schema          | default
table_name               | hcatalogtypes
is_partition_column      | f
column_name              | bincol
hcatalog_data_type       | binary
data_type                | varbinary(65000)
data_type_id             | 17
data_type_length         | 65000
character_maximum_length | 65000
numeric_precision        |
numeric_scale            |
datetime_precision       |
interval_precision       |
ordinal_position         | 9
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;see-also&#34;&gt;See also&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;a href=&#34;../../../../en/sql-reference/system-tables/v-catalog-schema/hcatalog-schemata/#&#34;&gt;HCATALOG_SCHEMATA&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href=&#34;../../../../en/sql-reference/system-tables/v-catalog-schema/hcatalog-tables/#&#34;&gt;HCATALOG_TABLES&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href=&#34;../../../../en/sql-reference/system-tables/v-catalog-schema/hcatalog-table-list/#&#34;&gt;HCATALOG_TABLE_LIST&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

      </description>
    </item>
    
    <item>
      <title>Sql-Reference: HCATALOG_SCHEMATA</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/hcatalog-schemata/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/hcatalog-schemata/</guid>
      <description>
        
        
        &lt;p&gt;Lists all of the schemas defined using the HCatalog Connector. See &lt;a href=&#34;../../../../en/hadoop-integration/using-hcatalog-connector/#&#34;&gt;Using the HCatalog Connector&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Unlike other HCatalog Connector-related system tables, this table makes no calls to Hive, so querying incurs very little overhead.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;SCHEMA_ID&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


The OpenText™ Analytics Database ID number for the schema&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;SCHEMA_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;


The name of the schema defined in the database catalog&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;SCHEMA_OWNER_ID&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;


The ID number of the user who owns the database schema&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;SCHEMA_OWNER&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;
The username of the database schema&#39;s owner&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;CREATE_TIME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
TIMESTAMPTZ&lt;/td&gt; 

&lt;td &gt;
The date and time the schema as created&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;HOSTNAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;
The host name or IP address of the database server that holds the Hive metadata&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;PORT&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
The port number on which the metastore database listens for connections&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;HIVESERVER2_HOSTNAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;
The host name or IP address of the HiveServer2 server for the Hive database&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;WEBSERVICE_HOSTNAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;
The host name or IP address of the WebHCat server for the Hive database, if used&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;WEBSERVICE_PORT&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
The port number on which the WebHCat server listens for connections&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;WEBHDFS_ADDRESS&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR (128)&lt;/td&gt; 

&lt;td &gt;
The host and port (&amp;quot;host:port&amp;quot;) for the WebHDFS service, used for reading ORC and Parquet files&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;HCATALOG_SCHEMA_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;
The name of the schema or database in Hive to which the database schema is mapped&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;HCATALOG_USER_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;
The username the HCatalog Connector uses to authenticate itself to the Hive database.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;HCATALOG_CONNECTION_TIMEOUT&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
The number of seconds the HCatalog Connector waits for a successful connection to the HiveServer or WebHCat server. A value of 0 means wait indefinitely.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;HCATALOG_SLOW_TRANSFER_LIMIT&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
The lowest data transfer rate (in bytes per second) from the HiveServer2 or WebHCat server that the HCatalog Connector accepts.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;HCATALOG_SLOW_TRANSFER_TIME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
The number of seconds the HCatalog Connector waits before enforcing the data transfer rate lower limit by breaking the connection and terminating the query.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;SSL_CONFIG&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;
The path of the Hadoop ssl-client.xml configuration file, if using HiveServer2 with SSL wire encryption.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;CUSTOM_PARTITIONS&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
BOOLEAN&lt;/td&gt; 

&lt;td &gt;
Whether the Hive schema uses custom partition locations.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;
&lt;h2 id=&#34;privileges&#34;&gt;Privileges&lt;/h2&gt;
&lt;p&gt;No explicit permissions are required; however, users see only the records that correspond to schemas they have permissions to access.&lt;/p&gt;
&lt;h2 id=&#34;see-also&#34;&gt;See also&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;a href=&#34;../../../../en/sql-reference/system-tables/v-catalog-schema/hcatalog-columns/#&#34;&gt;HCATALOG_COLUMNS&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href=&#34;../../../../en/sql-reference/system-tables/v-catalog-schema/hcatalog-table-list/#&#34;&gt;HCATALOG_TABLE_LIST&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href=&#34;../../../../en/sql-reference/system-tables/v-catalog-schema/hcatalog-tables/#&#34;&gt;HCATALOG_TABLES&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

      </description>
    </item>
    
    <item>
      <title>Sql-Reference: HCATALOG_TABLE_LIST</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/hcatalog-table-list/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/hcatalog-table-list/</guid>
      <description>
        
        
        &lt;p&gt;A concise list of all tables contained in all Hive schemas and databases available through the HCatalog Connector. See &lt;a href=&#34;../../../../en/hadoop-integration/using-hcatalog-connector/#&#34;&gt;Using the HCatalog Connector&lt;/a&gt;.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


TABLE_SCHEMA_ID&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


Internal ID number for the schema containing the table&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


TABLE_SCHEMA&lt;/td&gt; 

&lt;td &gt;


VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;


Name of the OpenText™ Analytics Database schema through which the table is available&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
HCATALOG_SCHEMA&lt;/td&gt; 

&lt;td &gt;
VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;
Name of the Hive schema or database containing the table&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
TABLE_NAME&lt;/td&gt; 

&lt;td &gt;
VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;
The name of the table&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
HCATALOG_USER_NAME&lt;/td&gt; 

&lt;td &gt;
VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;
Name of Hive user used to access the table&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;
&lt;h2 id=&#34;privileges&#34;&gt;Privileges&lt;/h2&gt;
&lt;p&gt;No explicit permissions are required; however, users see only the records that correspond to schemas they have permissions to access.&lt;/p&gt;
&lt;h2 id=&#34;notes&#34;&gt;Notes&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Querying this table results in one call to HiveServer2 for each Hive schema defined using the HCatalog Connector. This means that the query usually takes longer than querying other system tables.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Querying this table is faster than querying HCATALOG_TABLES. Querying HCATALOG_TABLE_LIST only makes one HiveServer2 call per HCatalog schema versus one call per table for HCATALOG_TABLES.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;examples&#34;&gt;Examples&lt;/h2&gt;
&lt;p&gt;The following example demonstrates defining a new HCatalog schema then querying HCATALOG_TABLE_LIST. Note that one table defined in a different HCatalog schema also appears. HCATALOG_TABLE_LIST lists all of the tables available in any of the HCatalog schemas:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; CREATE HCATALOG SCHEMA hcat WITH hostname=&amp;#39;hcathost&amp;#39;
-&amp;gt; HCATALOG_SCHEMA=&amp;#39;default&amp;#39; HCATALOG_DB=&amp;#39;default&amp;#39; HCATALOG_USER=&amp;#39;hcatuser&amp;#39;;
CREATE SCHEMA
=&amp;gt; \x
Expanded display is on.
=&amp;gt; SELECT * FROM v_catalog.hcatalog_table_list;
-[ RECORD 1 ]------+------------------
table_schema_id    | 45035996273748980
table_schema       | hcat
hcatalog_schema    | default
table_name         | weblogs
hcatalog_user_name | hcatuser
-[ RECORD 2 ]------+------------------
table_schema_id    | 45035996273748980
table_schema       | hcat
hcatalog_schema    | default
table_name         | tweets
hcatalog_user_name | hcatuser
-[ RECORD 3 ]------+------------------
table_schema_id    | 45035996273748980
table_schema       | hcat
hcatalog_schema    | default
table_name         | messages
hcatalog_user_name | hcatuser
-[ RECORD 4 ]------+------------------
table_schema_id    | 45035996273864948
table_schema       | hiveschema
hcatalog_schema    | default
table_name         | weblogs
hcatalog_user_name | hcatuser
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;see-also&#34;&gt;See also&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;a href=&#34;../../../../en/sql-reference/system-tables/v-catalog-schema/hcatalog-columns/#&#34;&gt;HCATALOG_COLUMNS&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href=&#34;../../../../en/sql-reference/system-tables/v-catalog-schema/hcatalog-schemata/#&#34;&gt;HCATALOG_SCHEMATA&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href=&#34;../../../../en/sql-reference/system-tables/v-catalog-schema/hcatalog-tables/#&#34;&gt;HCATALOG_TABLES&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

      </description>
    </item>
    
    <item>
      <title>Sql-Reference: HCATALOG_TABLES</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/hcatalog-tables/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/hcatalog-tables/</guid>
      <description>
        
        
        &lt;p&gt;Returns a detailed list of all tables made available through the HCatalog Connector. See &lt;a href=&#34;../../../../en/hadoop-integration/using-hcatalog-connector/#&#34;&gt;Using the HCatalog Connector&lt;/a&gt;.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;TABLE_SCHEMA_ID&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


ID number of the schema&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;TABLE_SCHEMA&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;


The name of the OpenText™ Analytics Database schema through which the table is available&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;HCATALOG_SCHEMA&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;
The name of the Hive schema or database that contains the table&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;TABLE_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;
The name of the table&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;HCATALOG_USER_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;
The name of the HCatalog user whose credentials are used to access the table&#39;s data&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;MIN_FILE_SIZE_BYTES&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
The file size of the table&#39;s smallest data file, if using WebHCat; null if using HiveServer2&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;TOTAL_NUMBER_FILES&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
The number of files used to store this table&#39;s data in HDFS&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;LOCATION&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR(8192)&lt;/td&gt; 

&lt;td &gt;
The URI for the directory containing this table&#39;s data, normally an HDFS URI&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;LAST_UPDATE_TIME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
TIMESTAMPTZ&lt;/td&gt; 

&lt;td &gt;
The last time data in this table was updated, if using WebHCat; null if using HiveServer2&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;OUTPUT_FORMAT&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;
The Hive SerDe class used to output data from this table&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;LAST_ACCESS_TIME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
TIMESTAMPTZ&lt;/td&gt; 

&lt;td &gt;
The last time data in this table was accessed, if using WebHCat; null if using HiveServer2&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;MAX_FILE_SIZE_BYTES&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
The size of the largest data file for this table, if using WebHCat; null if using HiveServer2&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;IS_PARTITIONED&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
BOOLEAN&lt;/td&gt; 

&lt;td &gt;
Whether this table is partitioned&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;PARTITION_EXPRESSION&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;
The expression used to partition this table&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;TABLE_OWNER&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;
The Hive user that owns this table in the Hive database, if using WebHCat; null if using HiveServer2&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;INPUT_FORMAT&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;
The SerDe class used to read the data from this table&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;TOTAL_FILE_SIZE_BYTES&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
Total number of bytes used by all of this table&#39;s data files&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;HCATALOG_GROUP&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;
The permission group assigned to this table, if using WebHCat; null if using HiveServer2&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;PERMISSION&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;
The Unix file permissions for this group, as shown by the &lt;code&gt;ls -l&lt;/code&gt; command, if using WebHCat; null if using HiveServer2&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;
&lt;h2 id=&#34;privileges&#34;&gt;Privileges&lt;/h2&gt;
&lt;p&gt;No explicit permissions are required; however, users see only the records that correspond to schemas they have permissions to access.&lt;/p&gt;
&lt;h2 id=&#34;see-also&#34;&gt;See also&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;a href=&#34;../../../../en/sql-reference/system-tables/v-catalog-schema/hcatalog-schemata/#&#34;&gt;HCATALOG_SCHEMATA&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href=&#34;../../../../en/sql-reference/system-tables/v-catalog-schema/hcatalog-columns/#&#34;&gt;HCATALOG_COLUMNS&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href=&#34;../../../../en/sql-reference/system-tables/v-catalog-schema/hcatalog-table-list/#&#34;&gt;HCATALOG_TABLE_LIST&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

      </description>
    </item>
    
    <item>
      <title>Sql-Reference: ICEBERG_COLUMNS</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/iceberg-columns/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/iceberg-columns/</guid>
      <description>
        
        
        &lt;p&gt;Provides column information for &lt;a href=&#34;../../../../en/sql-reference/statements/create-statements/create-external-table-iceberg/&#34;&gt;Iceberg external tables&lt;/a&gt;. The information in this table is drawn from the Iceberg metadata files at query time.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;TABLE_ID&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;



Catalog-assigned numeric value that uniquely identifies the table.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;TABLE_SCHEMA&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;




&lt;p&gt;Name of the table&#39;s schema.&lt;/p&gt;
&lt;p&gt;If the schema belongs to a non-default namespace in an Eon Mode database, the schema name is front-qualified with the name of the schema&#39;s namespace. For example, &lt;code&gt;n1.s&lt;/code&gt; refers to schema &lt;code&gt;s&lt;/code&gt; in namespace &lt;code&gt;n1&lt;/code&gt;.&lt;/p&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;TABLE_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Name of the table containing the column.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;COLUMN_ID&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;



Catalog-assigned VARCHAR value that uniquely identifies a table column.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;COLUMN_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;


Name of the column.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;DATA_TYPE&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;


Column data type.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;DATA_TYPE_ID&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;


Catalog-assigned unique numeric ID of the data type.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;DATA_TYPE_LENGTH&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;


Maximum allowable length of the data type.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;CHARACTER_MAXIMUM_LENGTH&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;


Maximum allowable length of a VARCHAR column.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;NUMERIC_PRECISION&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;


Number of significant decimal digits for a NUMERIC column.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;NUMERIC_SCALE&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;


Number of fractional digits for a NUMERIC column.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;DATETIME_PRECISION&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;


Declared precision for a TIMESTAMP column, or NULL if no precision was declared.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;INTERVAL_PRECISION&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;


Number of fractional digits retained in the seconds field of an INTERVAL column.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;IS_NULLABLE&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
BOOLEAN&lt;/td&gt; 

&lt;td &gt;


Whether the column can contain NULL values.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;WRITE_DEFAULT&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;


Field value for any records written after the field was added to the schema, if the writer does not supply the field’s value.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;INITIAL_DEFAULT&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;


Field value for all records that were written before the field was added to the schema.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Sql-Reference: ICEBERG_NAMESPACES</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/iceberg-namespaces/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/iceberg-namespaces/</guid>
      <description>
        
        
        &lt;p&gt;Lists details about the namespaces created using Iceberg in an Eon Mode database.&lt;/p&gt;

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;NAMESPACE_ID&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
The ID number for the namespace.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;NAMESPACE_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;
The name of the namespace.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;CATALOG&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;
The name of the catalog used in the Iceberg namespace. The supported catalog types are filesystem, glue, hive, and rest.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;LOCATION&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;
The location of the Iceberg namespace.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;rest_auth&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;
The authentication method for the REST catalog which supports either bearerToken or OAuth2 authentication. Applicable only when CATALOG is rest.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;

&lt;h2 id=&#34;privileges&#34;&gt;Privileges&lt;/h2&gt;
&lt;p&gt;Only superuser has permissions. However, regular users can access Iceberg data if they have permissions on the underlying storage.&lt;/p&gt;
&lt;h2 id=&#34;examples&#34;&gt;Examples&lt;/h2&gt;
&lt;p&gt;To list all the namespaces created using Iceberg in an Eon Mode database, run the following query:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-sql&#34; data-lang=&#34;sql&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;o&#34;&gt;=&amp;gt;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;SELECT&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;*&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;from&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;v_catalog&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;iceberg_namespaces&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;  &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;namespace_id&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;  &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;namespace_name&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;catalog&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;   &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;location&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;                                  &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;rest_auth&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&lt;/span&gt;&lt;span class=&#34;c1&#34;&gt;-------------------+----------------+-----------------------------------------------------------------------
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;                &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;default_namespace&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;           &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;                                           &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;  
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;                &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;analytics&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;         &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;glue&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;      &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;s3&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;//&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;vertica&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;-&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;perpetual&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;/&lt;/span&gt;&lt;span class=&#34;k&#34;&gt;user&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;/&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;iceberg_new&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;   &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;                &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;finance&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;           &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;rest&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;      &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;http&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;//&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;localhost&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;19120&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;/&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;iceberg&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;/&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;v1&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;/&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;main&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;err&#34;&gt;{&lt;/span&gt;&lt;span class=&#34;s2&#34;&gt;&amp;#34;bearerToken&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;s2&#34;&gt;&amp;#34;token&amp;#34;&lt;/span&gt;&lt;span class=&#34;err&#34;&gt;}&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; 
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;3&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;rows&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
      </description>
    </item>
    
    <item>
      <title>Sql-Reference: INHERITED_PRIVILEGES</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/inherited-privileges/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/inherited-privileges/</guid>
      <description>
        
        
        &lt;p&gt;Provides summary information about &lt;a href=&#34;../../../../en/admin/db-users-and-privileges/db-privileges/inherited-privileges/&#34;&gt;privileges inherited&lt;/a&gt; by objects from GRANT statements on parent schemas, excluding inherited &lt;a href=&#34;../../../../en/admin/db-users-and-privileges/db-privileges/granting-and-revoking-privileges/granting-privileges/&#34;&gt;grant options&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;For information about explicitly granted permissions, see system table &lt;a href=&#34;../../../../en/sql-reference/system-tables/v-catalog-schema/grants/#&#34;&gt;GRANTS&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;
&lt;div class=&#34;alert admonition note&#34; role=&#34;alert&#34;&gt;
&lt;h4 class=&#34;admonition-head&#34;&gt;Note&lt;/h4&gt;

Inherited privileges are not displayed if privilege inheritance is disabled at the database level with &lt;a href=&#34;../../../../en/sql-reference/config-parameters/security-parameters/&#34;&gt;DisableInheritedPrivileges&lt;/a&gt;.

&lt;/div&gt;


&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
OBJECT_ID&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
Catalog-assigned integer value that uniquely identifies theobject inheriting the privileges.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
SCHEMA_ID&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
Catalog-assigned integer value that uniquely identifies theparent schema.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
OBJECT_NAMESPACE&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
For Eon Mode databases, &lt;a href=&#34;../../../../en/architecture/eon-concepts/shards-and-subscriptions/&#34;&gt;namespace&lt;/a&gt; of the table or view.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
OBJECT_SCHEMA&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;



&lt;p&gt;Name of the parent schema of a table or view.&lt;/p&gt;
&lt;p&gt;If the schema belongs to a non-default namespace in an Eon Mode database, the schema name is front-qualified with the name of the schema&#39;s namespace. For example, &lt;code&gt;n1.s&lt;/code&gt; refers to schema &lt;code&gt;s&lt;/code&gt; in namespace &lt;code&gt;n1&lt;/code&gt;.&lt;/p&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
OBJECT_NAME&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Name of the table or view.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
OBJECT_TYPE&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;






&lt;p&gt;The object type, one of the following:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Table&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;View&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Model&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
PRIVILEGES_DESCRIPTION&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Lists the privileges inherited on an object. An asterisk (*) appended to a privilege indicates that the user can grant the privilege to other users by granting the privilege on the parent schema.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
PRINCIPAL&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Name of the role or user inheriting the privileges in the row.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
PRINCIPAL_ID&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
Catalog-assigned integer value that uniquely identifies theuser inheriting the privileges.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
GRANTOR&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
User that granted the privileges on the parent schema to the principal.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
GRANTOR_ID&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
Catalog-assigned integer value that uniquely identifies theuser who performed the grant operation.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
GRANT_ID&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
Catalog-assigned integer value that uniquely identifies thegrant operation.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;
&lt;h2 id=&#34;examples&#34;&gt;Examples&lt;/h2&gt;
&lt;p&gt;The following query returns the privileges that the tables and views inherit from their parent schema, customers.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-sql&#34; data-lang=&#34;sql&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;o&#34;&gt;=&amp;gt;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;SELECT&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;object_schema&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;object_name&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;object_type&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;privileges_description&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;principal&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;grantor&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;FROM&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;inherited_privileges&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;WHERE&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;object_schema&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;customers&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;object_schema&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;  &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;object_name&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;object_type&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;                          &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;privileges_description&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;                           &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;principal&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;grantor&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;c1&#34;&gt;--------------+-----------------+-------------+---------------------------------------------------------------------------+-----------+---------
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;customers&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;     &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;cust_info&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;       &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;Table&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;       &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;INSERT&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;SELECT&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;UPDATE&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;DELETE&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;ALTER&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;REFERENCES&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;DROP&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;TRUNCATE&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;         &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;dbadmin&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;   &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;dbadmin&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;customers&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;     &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;shipping_info&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;   &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;Table&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;       &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;INSERT&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;SELECT&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;UPDATE&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;DELETE&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;ALTER&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;REFERENCES&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;DROP&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;TRUNCATE&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;         &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;dbadmin&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;   &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;dbadmin&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;customers&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;     &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;cust_set&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;        &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;View&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;        &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;SELECT&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;ALTER&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;DROP&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;                                                       &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;dbadmin&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;   &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;dbadmin&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;customers&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;     &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;cust_info&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;       &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;Table&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;       &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;SELECT&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;                                                                    &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;Val&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;       &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;dbadmin&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;customers&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;     &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;shipping_info&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;   &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;Table&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;       &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;SELECT&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;                                                                    &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;Val&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;       &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;dbadmin&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;customers&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;     &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;cust_set&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;        &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;View&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;        &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;SELECT&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;                                                                    &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;Val&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;       &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;dbadmin&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;customers&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;     &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;sales_model&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;     &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;Model&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;       &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;USAGE&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;ALTER&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;DROP&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;                                                        &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;Pooja&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;     &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;dbadmin&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;customers&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;     &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;shipping_info&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;   &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;Table&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;       &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;INSERT&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;                                                                    &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;Pooja&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;     &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;dbadmin&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;8&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;rows&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id=&#34;see-also&#34;&gt;See also&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;a href=&#34;../../../../en/sql-reference/system-tables/v-catalog-schema/inheriting-objects/#&#34;&gt;INHERITING_OBJECTS&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href=&#34;../../../../en/admin/db-users-and-privileges/#&#34;&gt;Database users and privileges&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href=&#34;../../../../en/sql-reference/functions/management-functions/privileges-and-access-functions/get-privileges-description/#&#34;&gt;GET_PRIVILEGES_DESCRIPTION&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

      </description>
    </item>
    
    <item>
      <title>Sql-Reference: INHERITING_OBJECTS</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/inheriting-objects/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/inheriting-objects/</guid>
      <description>
        
        
        &lt;p&gt;Provides information about the objects (table, view, or model) that inherit privileges from their parent schemas.&lt;/p&gt;
&lt;p&gt;For information about the particular privileges inherited from schemas and their associated GRANT statements, see the &lt;a href=&#34;../../../../en/sql-reference/system-tables/v-catalog-schema/inherited-privileges/#&#34;&gt;INHERITED_PRIVILEGES&lt;/a&gt; table.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
OBJECT_ID&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
Catalog-assigned integer value that uniquely identifies theobject inheriting the privileges.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
SCHEMA_ID&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
Catalog-assigned integer value that uniquely identifies theparent schema.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
OBJECT_SCHEMA&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Name of the parent schema.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
OBJECT_NAME&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Name of the object.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
OBJECT_TYPE&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;






&lt;p&gt;The object type, one of the following:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Table&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;View&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Model&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;
&lt;h2 id=&#34;examples&#34;&gt;Examples&lt;/h2&gt;
&lt;p&gt;The following query returns the tables and views that inherit their privileges from their parent schema, customers.&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT * FROM inheriting_objects WHERE object_schema=&amp;#39;customers&amp;#39;;
     object_id     |     schema_id     | object_schema |  object_name      | object_type
 ------------------+-------------------+---------------+-------------------+-------------
 45035996273980908 | 45035996273980902 | customers     | cust_info         | table
 45035996273980984 | 45035996273980902 | customers     | shipping_info     | table
 45035996273980980 | 45035996273980902 | customers     | cust_set          | view
 45035996273980983 | 45035996273980901 | ml_models     | clustering_model  | model
 (3 rows)
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;see-also&#34;&gt;See also&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;a href=&#34;../../../../en/sql-reference/system-tables/v-catalog-schema/inherited-privileges/#&#34;&gt;INHERITED_PRIVILEGES&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href=&#34;../../../../en/admin/db-users-and-privileges/db-privileges/inherited-privileges/#&#34;&gt;Inherited privileges&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href=&#34;../../../../en/admin/db-users-and-privileges/#&#34;&gt;Database users and privileges&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href=&#34;../../../../en/sql-reference/functions/management-functions/privileges-and-access-functions/get-privileges-description/#&#34;&gt;GET_PRIVILEGES_DESCRIPTION&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

      </description>
    </item>
    
    <item>
      <title>Sql-Reference: KEYWORDS</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/keywords/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/keywords/</guid>
      <description>
        
        
        &lt;p&gt;Identifies OpenText™ Analytics Database reserved and non-reserved keywords.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;KEYWORD&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
OpenText™ Analytics Database-reserved or non-reserved keyword.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;RESERVED&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;




&lt;p&gt;Indicates whether a keyword is reserved or non-reserved:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;R: reserved&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;N: non-reserved&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;
&lt;h2 id=&#34;examples&#34;&gt;Examples&lt;/h2&gt;
&lt;p&gt;The following query gets all reserved keywords that begin with B:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT * FROM keywords WHERE reserved = &amp;#39;R&amp;#39; AND keyword ilike &amp;#39;B%&amp;#39;;
 keyword | reserved
---------+----------
 BETWEEN | R
 BIGINT  | R
 BINARY  | R
 BIT     | R
 BOOLEAN | R
 BOTH    | R
(6 rows)
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;see-also&#34;&gt;See also&lt;/h2&gt;
&lt;a href=&#34;../../../../en/sql-reference/language-elements/keywords/#&#34;&gt;Keywords&lt;/a&gt;

      </description>
    </item>
    
    <item>
      <title>Sql-Reference: LARGE_CLUSTER_CONFIGURATION_STATUS</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/large-cluster-config-status/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/large-cluster-config-status/</guid>
      <description>
        
        
        &lt;p&gt;Shows the current cluster nodes and control node (spread hosts) designations in the Catalog so you can see if they match.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;NODE_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


The name of the node in the cluster.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;SPREAD_HOST_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
The host name of the control node (the host that manages control message responsibilities)&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;CONTROL_NODE_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
The name of the control node&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;
&lt;h2 id=&#34;see-also&#34;&gt;See also&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;../../../../en/admin/managing-db/managing-nodes/large-cluster/&#34;&gt;Large Cluster&lt;/a&gt;&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Sql-Reference: LICENSE_AUDITS</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/license-audits/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/license-audits/</guid>
      <description>
        
        
        &lt;p&gt;Lists the results of OpenText™ Analytics Database&#39;s license automatic compliance audits. See &lt;a href=&#34;../../../../en/admin/managing-licenses/auditing-db-size/&#34;&gt;How Database Calculates Database Size&lt;/a&gt;.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;DATABASE_SIZE_BYTES&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


&lt;code&gt;INTEGER&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


The estimated raw data size of the database&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;LICENSE_SIZE_BYTES&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


&lt;code&gt;INTEGER&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


The licensed data allowance&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;USAGE_PERCENT&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


&lt;code&gt;FLOAT&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


Percentage of the licensed allowance used&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;AUDIT_START_TIMESTAMP&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


&lt;code&gt;TIMESTAMPTZ&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


When the audit started&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;AUDIT_END_TIMESTAMP&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


&lt;code&gt;TIMESTAMPTZ&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


When the audit finished&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;CONFIDENCE_LEVEL_PERCENT&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


&lt;code&gt;FLOAT&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


The confidence level of the size estimate&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;ERROR_TOLERANCE_PERCENT&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


&lt;code&gt;FLOAT&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


The error tolerance used for the size estimate&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;USED_SAMPLING&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


&lt;code&gt;BOOLEAN&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


Whether data was randomly sampled (if false, all of the data was analyzed)&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;CONFIDENCE_INTERVAL_LOWER_BOUND_BYTES&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


&lt;code&gt;INTEGER&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


The lower bound of the data size estimate within the confidence level&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;CONFIDENCE_INTERVAL_UPPER_BOUND_BYTES&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


&lt;code&gt;INTEGER&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


The upper bound of the data size estimate within the confidence level&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;SAMPLE_COUNT&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


&lt;code&gt;INTEGER&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


The number of data samples used to generate the estimate&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;CELL_COUNT&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


&lt;code&gt;INTEGER&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


The number of &lt;a class=&#34;glosslink&#34; href=&#34;../../../../en/glossary/cell/&#34; title=&#34;A cell is space in a database object allocated for a single piece of data.&#34;&gt;cells&lt;/a&gt; in the database&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;AUDITED_DATA&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


&lt;code&gt;VARCHAR&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


The type of data audited, which includes regular (non-flex), flex, external, and total data&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Sql-Reference: LICENSES</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/licenses/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/licenses/</guid>
      <description>
        
        
        &lt;p&gt;For all licenses, provides information on license types, the dates for which licenses are valid, and the limits the licenses impose.&lt;/p&gt;

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;LICENSE_ID&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


Unique numeric ID assigned by the OpenText™ Analytics Database catalog, which identifies the license.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


The license’s name. (The license name in this column could be represented by a long license key.)&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;LICENSEE&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


The entity to which the product is licensed.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;START_DATE&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


The start date for which the license is valid.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;END_DATE&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


The end date until which the license is valid (or &amp;quot;Perpetual&amp;quot; if the license has no expiration).&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;LICENSETYPE&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


The type of the license (for example, Premium Edition).&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;PARENT&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


The parent license (field is blank if there is no parent).&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;SIZE&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


The size limit for data on the license.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;IS_SIZE_LIMIT_ENFORCED&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


BOOLEAN&lt;/td&gt; 

&lt;td &gt;


Indicates whether the license includes enforcement of data and node limits, where t is true and f is false.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;NODE_RESTRICTION&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


The node limit the license imposes.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;CONFIGURED_ID&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


A long license key.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;


      </description>
    </item>
    
    <item>
      <title>Sql-Reference: LOAD_BALANCE_GROUPS</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/load-balance-groups/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/load-balance-groups/</guid>
      <description>
        
        
        &lt;p&gt;Lists the objects contained by all load balance groups. Each row in this table represents a single object that is a member of a load balance group. If a load balance group does not contain any objects, it appears once in this table with its type column set to &#39;Empty Group.&#39;

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
NAME&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
The name of the load balance group&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
POLICY&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;








&lt;p&gt;The policy that sets how the group chooses the node for a connection. Contains one of the following:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;ROUNDROBIN&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;RANDOM&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;NONE&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
FILTER&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
The IP address range in CIDR format to select the members of a fault group that are included in the load balance group. This column only has a value if the TYPE column is &#39;Fault Group&#39; or &#39;Subcluster.&#39;&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
TYPE&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;










&lt;p&gt;The type of object contained in the load balance group. Contains one of:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Fault Group&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Subcluster&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Network Address Group&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Empty Group&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
OBJECT_NAME&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
The name of the fault group or network address included in the load balance group. This column is NULL if the group contains no objects.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;
&lt;h2 id=&#34;examples&#34;&gt;Examples&lt;/h2&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT * FROM LOAD_BALANCE_GROUPS;
     name      |   policy   |  filter   |         type          | object_name
---------------+------------+-----------+-----------------------+-------------
 group_1       | ROUNDROBIN |           | Network Address Group | node01
 group_1       | ROUNDROBIN |           | Network Address Group | node02
 group_2       | ROUNDROBIN |           | Empty Group           |
 group_all     | ROUNDROBIN |           | Network Address Group | node01
 group_all     | ROUNDROBIN |           | Network Address Group | node02
 group_all     | ROUNDROBIN |           | Network Address Group | node03
 group_fault_1 | RANDOM     | 0.0.0.0/0 | Fault Group           | fault_1
(7 rows)
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;see-also&#34;&gt;See also&lt;/h2&gt;



&lt;ul&gt;
	
	&lt;li&gt;&lt;a href=&#34;../../../../en/sql-reference/system-tables/v-catalog-schema/network-addresses/&#34;&gt;NETWORK_ADDRESSES&lt;/a&gt;&lt;/li&gt;
	
	&lt;li&gt;&lt;a href=&#34;../../../../en/sql-reference/statements/alter-statements/alter-load-balance-group/&#34;&gt;ALTER LOAD BALANCE GROUP&lt;/a&gt;&lt;/li&gt;
	
	&lt;li&gt;&lt;a href=&#34;../../../../en/sql-reference/statements/alter-statements/alter-network-address/&#34;&gt;ALTER NETWORK ADDRESS&lt;/a&gt;&lt;/li&gt;
	
	&lt;li&gt;&lt;a href=&#34;../../../../en/sql-reference/statements/alter-statements/alter-routing-rule/&#34;&gt;ALTER ROUTING RULE&lt;/a&gt;&lt;/li&gt;
	
	&lt;li&gt;&lt;a href=&#34;../../../../en/sql-reference/statements/create-statements/create-load-balance-group/&#34;&gt;CREATE LOAD BALANCE GROUP&lt;/a&gt;&lt;/li&gt;
	
&lt;/ul&gt;



      </description>
    </item>
    
    <item>
      <title>Sql-Reference: LOG_PARAMS</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/log-params/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/log-params/</guid>
      <description>
        
        
        &lt;p&gt;Provides summary information about changes to configuration parameters related to authentication and security run in your database.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
ISSUED_TIME&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
The time at which the query was executed.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
USER_NAME&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Name of the user who issued the query at the time OpenText™ Analytics Database recorded the session.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
USER_ID&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
Numeric representation of the user who ran the query.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
HOSTNAME&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
The hostname, IP address, or URL of the database server.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
SESSION_ID&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Identifier for this session. This identifier is unique within the cluster at any point in time but can be reused when the session closes.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
AUDIT_TYPE&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;


The type of operation for the audit, in this case, Parameter.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
AUDIT_TAG_NAME&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
The tag for the specific parameter.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
REQUEST_TYPE&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;


The type of query request.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
REQUEST_ID&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
Unique identifier of the query request in the user session.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
SUBJECT&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
The new value of the parameter.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
REQUEST&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Lists the query request.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
SUCCESS&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Indicates whether or not the operation was successful.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
CATEGORY&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
The audit parent category, such as Authentication.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;
&lt;h2 id=&#34;examples&#34;&gt;Examples&lt;/h2&gt;
&lt;p&gt;The following example queries the LOG_PARAMS system table and shows only the most recent configuration parameter for this user under the Authentication category:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT * FROM log_params limit 1;

--------------------------------------------------------------------------------------------------------

issued_time   | 2018-02-12 13:41:20.837452-05
user_name     | dbadmin
user_id       | 45035996273704962
hostname      | ::1:50690
session_id    | v_vmart_node0001-341751:0x13878
audit_type    | Param
audit_tag_name| SecurityAlgorithm
request_type  | UTILITY
request_id    | 8
subject       | MD5
request       | select set_config_parameter(&amp;#39;SecurityAlgorithm&amp;#39;,&amp;#39;MD5&amp;#39;,null);
success       | t
category      | Authentication
(1 row)
&lt;/code&gt;&lt;/pre&gt;
      </description>
    </item>
    
    <item>
      <title>Sql-Reference: LOG_QUERIES</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/log-queries/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/log-queries/</guid>
      <description>
        
        
        &lt;p&gt;Provides summary information about some queries related to authentication and security run in your database.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
ISSUED_TIME&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
The time at which the query was executed.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
USER_NAME&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Name of the user who issued the query at the time OpenText™ Analytics Database recorded the session.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
USER_ID&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
Numeric representation of the user who ran the query.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
HOSTNAME&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
The hostname, IP address, or URL of the database server.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
SESSION_ID&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Identifier for this session. This identifier is unique within the cluster at any point in time but can be reused when the session closes.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
AUDIT_TYPE&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;


The type of operation for the audit, in this case, Query.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
AUDIT_TAG_NAME&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
The tag for the specific query.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
REQUEST_TYPE&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;




















&lt;p&gt;The type of query request. Examples include, but are not limited to:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;QUERY&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;DDL&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;LOAD&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;UTILITY&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;TRANSACTION&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;PREPARE&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;EXECUTE&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;SET&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;SHOW&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
REQUEST_ID&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
The ID of the query request.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
SUBJECT&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
The subject of the query.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
REQUEST&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Lists the query request.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
SUCCESS&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Indicates whether or not the operation was successful.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
CATEGORY&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
The audit parent category, such as Managing_Users_Privileges.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;
&lt;h2 id=&#34;examples&#34;&gt;Examples&lt;/h2&gt;
&lt;p&gt;The following example queries the LOG_QUERIES system table and shows only the most recent query for this user under the Managing_Users_Privileges category:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT * FROM log_queries limit 1;
---------------------------------------------------------------------------

issued_time   | 2018-01-22 10:36:55.634349-05
user_name     | dbadmin
user_id       | 45035996273704962
hostname      |
session_id    | v_vmart_node0001-237210:0x37e1d
audit_type    | Query
audit_tag_name| REVOKE ROLE
request_type  | DDL
request_id    | 2
subject       |
request       | revoke all privileges from Joe;
success       | f
category      | Managing_Users_Privileges
(1 row)
&lt;/code&gt;&lt;/pre&gt;
      </description>
    </item>
    
    <item>
      <title>Sql-Reference: LOG_TABLES</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/log-tables/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/log-tables/</guid>
      <description>
        
        
        &lt;p&gt;Provides summary information about queries on system tables.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
ISSUED_TIME&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Time of query execution.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
USER_NAME&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Name of user who issued the query at the time OpenText™ Analytics Database recorded the session.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
USER_ID&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
Numeric representation of the user who ran the query.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
HOSTNAME&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
The hostname, IP address, or URL of the database server.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
SESSION_ID&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Identifier for this session. This identifier is unique within the cluster at any point in time but can be reused when the session closes.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
AUDIT_TYPE&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;


The type of operation for the audit, in this case, Table.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
AUDIT_TAG_NAME&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
The tag for the specific table.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
REQUEST_TYPE&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;


The type of query request. In this case, QUERY.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
REQUEST_ID&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
Unique identifier of the query request in the user session.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
SUBJECT&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
The name of the table that was queried.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
REQUEST&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Lists the query request.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
SUCCESS&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Indicates whether or not the operation was successful.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
CATEGORY&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
The audit parent category—for example, &lt;code&gt;Views&lt;/code&gt;, &lt;code&gt;Security&lt;/code&gt;, and &lt;code&gt;Managing_Users_Privileges&lt;/code&gt;.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;
&lt;h2 id=&#34;examples&#34;&gt;Examples&lt;/h2&gt;
&lt;p&gt;The following example shows recent queries on configuration parameters:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;dbadmin=&amp;gt; SELECT issued_time, audit_type, request_type, subject, request, category FROM log_tables
   WHERE category ilike &amp;#39;%Managing_Config_Parameters%&amp;#39; ORDER BY issued_time DESC LIMIT 4;
-[ RECORD 1 ]+-------------------------------------------------------------------------------------
issued_time  | 2020-05-14 14:14:53.453552-04
audit_type   | Table
request_type | QUERY
subject      | vs_nodes
request      | SELECT * from vs_nodes order by name  limit 1;
category     | Managing_Config_Parameters
-[ RECORD 2 ]+-------------------------------------------------------------------------------------
issued_time  | 2020-05-14 14:14:27.546474-04
audit_type   | Table
request_type | QUERY
subject      | vs_nodes
request      | SELECT * from vs_nodes order by name ;
category     | Managing_Config_Parameters
-[ RECORD 3 ]+-------------------------------------------------------------------------------------
issued_time  | 2020-05-14 08:54:32.86881-04
audit_type   | Table
request_type | QUERY
subject      | vs_parameters_mismatch
request      | select * from configuration_parameters where parameter_name = &amp;#39;MaxDepotSizePercent&amp;#39;;
category     | Managing_Config_Parameters
-[ RECORD 4 ]+-------------------------------------------------------------------------------------
issued_time  | 2020-05-14 08:54:32.86881-04
audit_type   | Table
request_type | QUERY
subject      | vs_nodes
request      | select * from configuration_parameters where parameter_name = &amp;#39;MaxDepotSizePercent&amp;#39;;
category     | Managing_Config_Parameters
&lt;/code&gt;&lt;/pre&gt;
      </description>
    </item>
    
    <item>
      <title>Sql-Reference: MATERIALIZE_FLEXTABLE_COLUMNS_RESULTS</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/materialize-flextable-columns-results/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/materialize-flextable-columns-results/</guid>
      <description>
        
        
        &lt;p&gt;Contains the results of running the &lt;a href=&#34;../../../../en/sql-reference/functions/flex-functions/flex-data-functions/materialize-flextable-columns/#&#34;&gt;MATERIALIZE_FLEXTABLE_COLUMNS&lt;/a&gt; function. The table contains information about keys that the function evaluated. It does not contain information about all keys.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;TABLE_ID&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


Unique numeric ID assigned by the OpenText™ Analytics Database catalog, which identifies the table.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;TABLE_SCHEMA&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


The schema name for which information is listed.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;TABLE_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


The table name for which information is listed.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;CREATION_TIME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


Timestamp when the key was materialized.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;KEY_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


Name of the key from the VMap column that was materialized.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;STATUS&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;








&lt;p&gt;Status of the materialized column, one of the following:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;ADDED&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;EXISTS&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;ERROR&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;MESSAGE&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


BOOLEAN&lt;/td&gt; 

&lt;td &gt;










&lt;p&gt;Message associated with the status in the previous column, one of the following:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;Added successfully&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;Column of same name already exists in table definition&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;Add operation failed&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;No data type guess provided to add column&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;
&lt;h2 id=&#34;examples&#34;&gt;Examples&lt;/h2&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; \x
Expanded display is on.
=&amp;gt; SELECT table_id, table_schema, table_name, key_name, status, message FROM MATERIALIZE_FLEXTABLE_COLUMNS_RESULTS
WHERE table_name = &amp;#39;mountains_hybrid&amp;#39;;
-[ RECORD 1 ]+-------------------------------------------------------
table_id     | 45035996273708192
table_schema | public
table_name   | mountains_hybrid
key_name     | type
status       | ADDED
message      | Added successfully
-[ RECORD 2 ]+-------------------------------------------------------
table_id     | 45035996273708192
table_schema | public
table_name   | mountains_hybrid
key_name     | height
status       | ADDED
message      | Added successfully
-[ RECORD 3 ]+-------------------------------------------------------
table_id     | 45035996273708192
table_schema | public
table_name   | mountains_hybrid
key_name     | name
status       | EXISTS
message      | Column of same name already exists in table definition
&lt;/code&gt;&lt;/pre&gt;
      </description>
    </item>
    
    <item>
      <title>Sql-Reference: MODELS</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/models/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/models/</guid>
      <description>
        
        
        &lt;p&gt;Lists details about the machine-learning models in the database.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;MODEL_ID&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


The model&#39;s internal ID.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;MODEL_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;


The name of the model.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;SCHEMA_ID&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


The schema&#39;s internal ID.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;SCHEMA_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;


The name of the schema.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;OWNER_ID&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


The model owner&#39;s ID.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;OWNER_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;


The user who created the model.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;CATEGORY&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;


The type of model. By default, models created in OpenText™ Analytics Database are assigned to the Vertica_Models category.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;MODEL_TYPE&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;
The type of algorithm used to create the model.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;IS_COMPLETE&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;


Denotes whether the model is complete and ready for use in machine learning functions. This field is usually false when the model is being trained. Once the training is complete, the field is set to true.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;CREATE_TIME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


TIMESTAMPTZ&lt;/td&gt; 

&lt;td &gt;


The time the model was created.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;SIZE&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
The size of the model in bytes.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;IS_INHERIT_PRIVILEGES&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
BOOLEAN&lt;/td&gt; 

&lt;td &gt;
Whether the model &lt;a href=&#34;../../../../en/admin/db-users-and-privileges/db-privileges/inherited-privileges/&#34;&gt;inherits&lt;/a&gt; the &lt;a href=&#34;../../../../en/sql-reference/statements/grant-statements/grant-schema/&#34;&gt;privileges&lt;/a&gt; of its parent schema.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;
&lt;h2 id=&#34;examples&#34;&gt;Examples&lt;/h2&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT * FROM models;
-[ RECORD 1 ]---------+------------------------------
model_id              | 45035996273850350
model_name            | xgb_iris
schema_id             | 45035996273704984
schema_name           | public
owner_id              | 45035996273704962
owner_name            | dbadmin
category              | VERTICA_MODELS
model_type            | XGB_CLASSIFIER
is_complete           | t
create_time           | 2022-11-29 13:38:59.259531-05
size                  | 11018
is_inherit_privileges | f
-[ RECORD 2 ]---------+------------------------------
model_id              | 45035996273866816
model_name            | arima_weather
schema_id             | 45035996273704984
schema_name           | public
owner_id              | 45035996273704962
owner_name            | dbadmin
category              | VERTICA_MODELS
model_type            | ARIMA
is_complete           | t
create_time           | 2023-03-31 13:13:06.342661-05
size                  | 2770
is_inherit_privileges | f
&lt;/code&gt;&lt;/pre&gt;
      </description>
    </item>
    
    <item>
      <title>Sql-Reference: NAMESPACES</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/namespaces/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/namespaces/</guid>
      <description>
        
        
        &lt;p&gt;Lists details about the &lt;a href=&#34;../../../../en/architecture/eon-concepts/shards-and-subscriptions/&#34;&gt;namespaces&lt;/a&gt; in an Eon Mode database.&lt;/p&gt;

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
NAMESPACE_OID&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
Catalog-assigned numeric value that uniquely identifies the namesapce.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
NAMESPACE_NAME&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Name of the namespace&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
IS_DEFAULT&lt;/td&gt; 

&lt;td &gt;
BOOLEAN&lt;/td&gt; 

&lt;td &gt;
Whether the namespace is the default namespace of the database.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
DEFAULT_SHARD_COUNT&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Shard count of the namespace.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;

&lt;h2 id=&#34;example&#34;&gt;Example&lt;/h2&gt;
&lt;p&gt;List the details of all namespaces in your database:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-sql&#34; data-lang=&#34;sql&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;o&#34;&gt;=&amp;gt;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;SELECT&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;*&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;FROM&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;NAMESPACES&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;   &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;namespace_oid&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;   &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;  &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;namespace_name&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;   &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;is_default&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;default_shard_count&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&lt;/span&gt;&lt;span class=&#34;c1&#34;&gt;-------------------+-------------------+------------+---------------------
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;45035996273704988&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;default_namespace&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;t&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;          &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;                   &lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;9&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;32582959204859183&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;analytics&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;         &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;n&#34;&gt;f&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;          &lt;/span&gt;&lt;span class=&#34;o&#34;&gt;|&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;                  &lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;12&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;2&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;k&#34;&gt;rows&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
      </description>
    </item>
    
    <item>
      <title>Sql-Reference: NETWORK_ADDRESSES</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/network-addresses/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/network-addresses/</guid>
      <description>
        
        
        &lt;p&gt;Lists information about the network addresses defined in your database using the &lt;a href=&#34;../../../../en/sql-reference/statements/create-statements/create-network-address/#&#34;&gt;CREATE NETWORK ADDRESS&lt;/a&gt; statement.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
NAME&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
The name of the network address.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
NODE&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
The name of the node that owns the network address.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
ADDRESS&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
The network address&#39;s IP address. This address can be either in IPv4 or IPv6 format.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
PORT&lt;/td&gt; 

&lt;td &gt;
INT&lt;/td&gt; 

&lt;td &gt;
The network address&#39;s port number.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
ADDRESS_FAMILY&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
The format of the network address&#39;s IP address. This values is either &#39;ipv4&#39; or &#39;ipv6&#39;.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
IS_ENABLED&lt;/td&gt; 

&lt;td &gt;
BOOLEAN&lt;/td&gt; 

&lt;td &gt;
Whether the network address is enabled. You can disable network addresses to prevent their use. If the address is disabled, the value in this column is False.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
IS_AUTO_DETECTED&lt;/td&gt; 

&lt;td &gt;
BOOLEAN&lt;/td&gt; 

&lt;td &gt;
Whether OpenText™ Analytics Database created the network address automatically.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;
&lt;h2 id=&#34;examples&#34;&gt;Examples&lt;/h2&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; \x
Expanded display is on.

=&amp;gt; SELECT * FROM v_catalog.network_addresses;
-[ RECORD 1 ]----+-----------------
name             | node01
node             | v_vmart_node0001
address          | 10.20.100.247
port             | 5433
address_family   | ipv4
is_enabled       | t
is_auto_detected | f
-[ RECORD 2 ]----+-----------------
name             | node02
node             | v_vmart_node0002
address          | 10.20.100.248
port             | 5433
address_family   | ipv4
is_enabled       | t
is_auto_detected | f
-[ RECORD 3 ]----+-----------------
name             | node03
node             | v_vmart_node0003
address          | 10.20.100.249
port             | 5433
address_family   | ipv4
is_enabled       | t
is_auto_detected | f
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;see-also&#34;&gt;See also&lt;/h2&gt;



&lt;ul&gt;
	
	&lt;li&gt;&lt;a href=&#34;../../../../en/sql-reference/system-tables/v-catalog-schema/load-balance-groups/&#34;&gt;LOAD_BALANCE_GROUPS&lt;/a&gt;&lt;/li&gt;
	
	&lt;li&gt;&lt;a href=&#34;../../../../en/sql-reference/statements/alter-statements/alter-load-balance-group/&#34;&gt;ALTER LOAD BALANCE GROUP&lt;/a&gt;&lt;/li&gt;
	
	&lt;li&gt;&lt;a href=&#34;../../../../en/sql-reference/statements/alter-statements/alter-network-address/&#34;&gt;ALTER NETWORK ADDRESS&lt;/a&gt;&lt;/li&gt;
	
	&lt;li&gt;&lt;a href=&#34;../../../../en/sql-reference/statements/alter-statements/alter-routing-rule/&#34;&gt;ALTER ROUTING RULE&lt;/a&gt;&lt;/li&gt;
	
	&lt;li&gt;&lt;a href=&#34;../../../../en/sql-reference/statements/create-statements/create-load-balance-group/&#34;&gt;CREATE LOAD BALANCE GROUP&lt;/a&gt;&lt;/li&gt;
	
&lt;/ul&gt;



      </description>
    </item>
    
    <item>
      <title>Sql-Reference: NODE_SUBSCRIPTION_CHANGE_PHASES</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/node-subscription-change-phases/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/node-subscription-change-phases/</guid>
      <description>
        
        
        &lt;p&gt;In an Eon Mode database, stores information about changes to node&#39;s shard subscriptions.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
node_name&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Name of the node&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
subscription_change_type&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
The change being made to the subscription&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
session_id&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
ID of the session in which the change was initiated&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
transaction_id&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
ID of the transaction in which the change was initiated&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
user_id&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
ID of user that initiated the change&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
user_name&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Name of user that initiated the change&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
subscription_oid&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
Session object ID&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
subscriber_node_oid&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
Object ID of node that requested the subscription&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
subscriber_node_name&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Name of the node that requested the subscription&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
shard_oid&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
Object ID of the shard to which the node is subscribed&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
shard_name&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Name of the shard to which the node is subscribed&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
min_time&lt;/td&gt; 

&lt;td &gt;
TIMESTAMPTZ&lt;/td&gt; 

&lt;td &gt;
Start time of the subscription change&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
max_time&lt;/td&gt; 

&lt;td &gt;
TIMESTAMPTZ&lt;/td&gt; 

&lt;td &gt;
Completion time of the subscription change&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
source_node_oid&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
Object ID of the node from which catalog objects were fetched&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
source_node_name&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Name of the node from which catalog objects were fetched&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
num_objs_affected&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
Number of catalog objects affected by the subscription change&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
action&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Description of the action taken&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
new_content_size&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
Total size of the catalog objects that were fetched for the subscription change&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
phase_limit_reached&lt;/td&gt; 

&lt;td &gt;
BOOLEAN&lt;/td&gt; 

&lt;td &gt;
Reached maximum number of retries?&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
START_TIME&lt;/td&gt; 

&lt;td &gt;
TIMESTAMPTZ&lt;/td&gt; 

&lt;td &gt;
When the subscription change started&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
END_TIME&lt;/td&gt; 

&lt;td &gt;
TIMESTAMPTZ&lt;/td&gt; 

&lt;td &gt;
When the subscription change was finished&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
retried&lt;/td&gt; 

&lt;td &gt;
BOOLEAN&lt;/td&gt; 

&lt;td &gt;
Retry of subscription phase?&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
phase_result&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;






&lt;p&gt;Outcome of the subscription change, one of the following:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Success&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Failure&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;
&lt;h2 id=&#34;examples&#34;&gt;Examples&lt;/h2&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT NODE_NAME, SUBSCRIPTION_CHANGE_TYPE, SHARD_NAME,
   ACTION  FROM node_subscription_change_phases
   ORDER BY start_time ASC LIMIT 10;

      NODE_NAME       | SUBSCRIPTION_CHANGE_TYPE | SHARD_NAME  |         ACTION
----------------------+--------------------------+-------------+------------------------
 v_verticadb_node0001 | CREATE SUBSCRIPTION      | segment0007 | COLLECT SHARD METADATA
 v_verticadb_node0001 | CREATE SUBSCRIPTION      | segment0010 | COLLECT SHARD METADATA
 v_verticadb_node0001 | CREATE SUBSCRIPTION      | segment0004 | COLLECT SHARD METADATA
 v_verticadb_node0001 | CREATE SUBSCRIPTION      | segment0005 | COLLECT SHARD METADATA
 v_verticadb_node0001 | CREATE SUBSCRIPTION      | replica     | COLLECT SHARD METADATA
 v_verticadb_node0001 | CREATE SUBSCRIPTION      | segment0005 | COLLECT SHARD METADATA
 v_verticadb_node0001 | CREATE SUBSCRIPTION      | segment0006 | COLLECT SHARD METADATA
 v_verticadb_node0001 | CREATE SUBSCRIPTION      | segment0008 | COLLECT SHARD METADATA
 v_verticadb_node0001 | CREATE SUBSCRIPTION      | segment0011 | COLLECT SHARD METADATA
 v_verticadb_node0001 | CREATE SUBSCRIPTION      | segment0002 | COLLECT SHARD METADATA
&lt;/code&gt;&lt;/pre&gt;
      </description>
    </item>
    
    <item>
      <title>Sql-Reference: NODE_SUBSCRIPTIONS</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/node-subscriptions/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/node-subscriptions/</guid>
      <description>
        
        
        &lt;p&gt;Eon Mode only&lt;/p&gt;

&lt;p&gt;Lists information about database node subscriptions to shards.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
SUBSCRIPTION_OID&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;
Subscription OID&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
NODE_OID&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;
Subscribed node OID&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
NODE_NAME&lt;/td&gt; 

&lt;td &gt;
VARCHAR&lt;/td&gt; 

&lt;td &gt;
Name of the node&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
SHARD_OID&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;
OID of the shard to which the node is subscribed&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
SHARD_NAME&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;
Name of the shard to which the node is subscribed&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
SUBSCRIPTION_STATE&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;
Node&#39;s current subscription state&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
FROM _VERSION&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
Deprecated&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
IS_PRIMARY&lt;/td&gt; 

&lt;td &gt;
BOOLEAN&lt;/td&gt; 

&lt;td &gt;
Specifies whether the node is currently the &lt;a class=&#34;glosslink&#34; href=&#34;../../../../en/glossary/primary-subscriber/&#34; title=&#34;In an Eon Mode database, each shard has a primary subscriber node.&#34;&gt;primary subscriber&lt;/a&gt;.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
IS_RESUBSCRIBING&lt;/td&gt; 

&lt;td &gt;
BOOLEAN&lt;/td&gt; 

&lt;td &gt;






&lt;p&gt;Indicates whether a subscription is resubscribing to a node:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;t&lt;/code&gt; (true): A subscription is resubscribing, only applies to PENDING subscriptions created during the cluster or node startup.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;f&lt;/code&gt; (false): A subscription is not resubscribing, applies to PENDING subscriptions created with &lt;a href=&#34;../../../../en/sql-reference/functions/management-functions/eon-functions/rebalance-shards/#&#34;&gt;REBALANCE_SHARDS&lt;/a&gt; that transitioned to an ACTIVE state.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
CREATOR_TID&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
ID of transaction that created this subscription&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
SUBSCRIBED_TO_METADATA_AT&lt;/td&gt; 

&lt;td &gt;
INTEGER&lt;/td&gt; 

&lt;td &gt;
Deprecated&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
IS_PARTICIPATING_PRIMARY&lt;/td&gt; 

&lt;td &gt;
BOOLEAN&lt;/td&gt; 

&lt;td &gt;


Whether this node is the participating primary subscriber for the shard. If true, the node listed in NODE_NAME is the only one that reads from and writes to communal storage for this shard in the subcluster. Other nodes in the subcluster that subscribe to the same shard receive data from this node via peer-to-peer transfers.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;
&lt;h2 id=&#34;examples&#34;&gt;Examples&lt;/h2&gt;
&lt;p&gt;The following example queries the NODE_SUBSCRIPTIONS table in a database with two three-node subclusters (a primary and a secondary) in a 12-shard database.&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT node_name, shard_name, subscription_state, is_primary,
          is_participating_primary AS is_p_primary
       FROM NODE_SUBSCRIPTIONS ORDER BY node_name, shard_name;

      node_name       | shard_name  | subscription_state | is_primary | is_p_primary
----------------------+-------------+--------------------+------------+--------------
 v_verticadb_node0001 | replica     | ACTIVE             | t          | t
 v_verticadb_node0001 | segment0001 | ACTIVE             | t          | t
 v_verticadb_node0001 | segment0003 | ACTIVE             | f          | f
 v_verticadb_node0001 | segment0004 | ACTIVE             | t          | t
 v_verticadb_node0001 | segment0006 | ACTIVE             | f          | f
 v_verticadb_node0001 | segment0007 | ACTIVE             | t          | t
 v_verticadb_node0001 | segment0009 | ACTIVE             | f          | f
 v_verticadb_node0001 | segment0010 | ACTIVE             | t          | t
 v_verticadb_node0001 | segment0012 | ACTIVE             | f          | f
 v_verticadb_node0002 | replica     | ACTIVE             | f          | t
 v_verticadb_node0002 | segment0001 | ACTIVE             | f          | f
 v_verticadb_node0002 | segment0002 | ACTIVE             | t          | t
 v_verticadb_node0002 | segment0004 | ACTIVE             | f          | f
 v_verticadb_node0002 | segment0005 | ACTIVE             | t          | t
 v_verticadb_node0002 | segment0007 | ACTIVE             | f          | f
 v_verticadb_node0002 | segment0008 | ACTIVE             | t          | t
 v_verticadb_node0002 | segment0010 | ACTIVE             | f          | f
 v_verticadb_node0002 | segment0011 | ACTIVE             | t          | t
 v_verticadb_node0003 | replica     | ACTIVE             | f          | t
 v_verticadb_node0003 | segment0002 | ACTIVE             | f          | f
 v_verticadb_node0003 | segment0003 | ACTIVE             | t          | t
 v_verticadb_node0003 | segment0005 | ACTIVE             | f          | f
 v_verticadb_node0003 | segment0006 | ACTIVE             | t          | t
 v_verticadb_node0003 | segment0008 | ACTIVE             | f          | f
 v_verticadb_node0003 | segment0009 | ACTIVE             | t          | t
 v_verticadb_node0003 | segment0011 | ACTIVE             | f          | f
 v_verticadb_node0003 | segment0012 | ACTIVE             | t          | t
 v_verticadb_node0004 | replica     | ACTIVE             | f          | t
 v_verticadb_node0004 | segment0001 | ACTIVE             | f          | t
 v_verticadb_node0004 | segment0003 | ACTIVE             | f          | f
 v_verticadb_node0004 | segment0004 | ACTIVE             | f          | t
 v_verticadb_node0004 | segment0006 | ACTIVE             | f          | f
 v_verticadb_node0004 | segment0007 | ACTIVE             | f          | t
 v_verticadb_node0004 | segment0009 | ACTIVE             | f          | f
 v_verticadb_node0004 | segment0010 | ACTIVE             | f          | t
 v_verticadb_node0004 | segment0012 | ACTIVE             | f          | f
 v_verticadb_node0005 | replica     | ACTIVE             | f          | t
 v_verticadb_node0005 | segment0001 | ACTIVE             | f          | f
 v_verticadb_node0005 | segment0002 | ACTIVE             | f          | t
 v_verticadb_node0005 | segment0004 | ACTIVE             | f          | f
 v_verticadb_node0005 | segment0005 | ACTIVE             | f          | t
 v_verticadb_node0005 | segment0007 | ACTIVE             | f          | f
 v_verticadb_node0005 | segment0008 | ACTIVE             | f          | t
 v_verticadb_node0005 | segment0010 | ACTIVE             | f          | f
 v_verticadb_node0005 | segment0011 | ACTIVE             | f          | t
 v_verticadb_node0006 | replica     | ACTIVE             | f          | t
 v_verticadb_node0006 | segment0002 | ACTIVE             | f          | f
 v_verticadb_node0006 | segment0003 | ACTIVE             | f          | t
 v_verticadb_node0006 | segment0005 | ACTIVE             | f          | f
 v_verticadb_node0006 | segment0006 | ACTIVE             | f          | t
 v_verticadb_node0006 | segment0008 | ACTIVE             | f          | f
 v_verticadb_node0006 | segment0009 | ACTIVE             | f          | t
 v_verticadb_node0006 | segment0011 | ACTIVE             | f          | f
 v_verticadb_node0006 | segment0012 | ACTIVE             | f          | t
(54 rows)
&lt;/code&gt;&lt;/pre&gt;
      </description>
    </item>
    
    <item>
      <title>Sql-Reference: NODES</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/nodes/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/nodes/</guid>
      <description>
        
        
        &lt;p&gt;Lists details about the nodes in the database.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column Name&lt;/th&gt; 

&lt;th &gt;
Data Type&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
NODE_NAME&lt;/td&gt; 

&lt;td &gt;


VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;


The name of the node.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
NODE_ID&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


Catalog-assigned integer value that uniquely identifies the node.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
NODE_STATE&lt;/td&gt; 

&lt;td &gt;


VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;










































&lt;p&gt;The node&#39;s current state, one of the following:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;UP&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;DOWN&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;READY&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;UNSAFE&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;SHUTDOWN&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;SHUTDOWN_ERROR&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;RECOVERING&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;RECOVER_ERROR&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;RECOVERED&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;INITIALIZING&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;STANDBY&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;NEEDS_CATCHUP&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
IS_PRIMARY&lt;/td&gt; 

&lt;td &gt;
BOOLEAN&lt;/td&gt; 

&lt;td &gt;
Whether the node is a primary or secondary node. Primary nodes are the only ones OpenText™ Analytics Database considers when determining the K-Safety of an Eon Mode database. The node inherits this property from the subcluster that contains it.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
IS_READONLY&lt;/td&gt; 

&lt;td &gt;
BOOLEAN&lt;/td&gt; 

&lt;td &gt;
Whether the node is in read-only mode or not. This column is TRUE if the Eon Mode database is read-only due to the loss of &lt;a class=&#34;glosslink&#34; href=&#34;../../../../en/glossary/quorum/&#34; title=&#34;Your database has a minimum number of nodes that must be up and part of the database cluster for the database to continue operating.&#34;&gt;quorum&lt;/a&gt; or &lt;a class=&#34;glosslink&#34; href=&#34;../../../../en/glossary/shard-coverage/&#34; title=&#34;In an Eon Mode database, nodes in a subcluster subscribe to one or more shards in communal storage.&#34;&gt;primary shard coverage&lt;/a&gt;. See &lt;a href=&#34;../../../../en/architecture/eon-concepts/data-integrity-and-high-availability-an-eon-db/#Read-Onl&#34;&gt;Database Read-Only Mode&lt;/a&gt;.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
NODE_ADDRESS&lt;/td&gt; 

&lt;td &gt;


VARCHAR(80)&lt;/td&gt; 

&lt;td &gt;


The host address of the node.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
NODE_ADDRESS_FAMILY&lt;/td&gt; 

&lt;td &gt;
VARCHAR(10)&lt;/td&gt; 

&lt;td &gt;
The IP Version of the &lt;code&gt;node_address&lt;/code&gt;. For example, &lt;code&gt;ipv4&lt;/code&gt;.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
EXPORT_ADDRESS&lt;/td&gt; 

&lt;td &gt;


VARCHAR(8192)&lt;/td&gt; 

&lt;td &gt;


The IP address of the node (on the public network) used for import/export operations and native load-balancing.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
EXPORT_ADDRESS_FAMILY&lt;/td&gt; 

&lt;td &gt;
VARCHAR(10)&lt;/td&gt; 

&lt;td &gt;
The IP Version of the &lt;code&gt;export_address&lt;/code&gt;. For example, &lt;code&gt;ipv4&lt;/code&gt;.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
CATALOG_PATH&lt;/td&gt; 

&lt;td &gt;


VARCHAR(8192)&lt;/td&gt; 

&lt;td &gt;


The absolute path to the catalog on the node.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
NODE_TYPE&lt;/td&gt; 

&lt;td &gt;
VARCHAR(9)&lt;/td&gt; 

&lt;td &gt;
The type of the node. For more information on the types of nodes, refer to &lt;a href=&#34;../../../../en/admin/managing-db/managing-nodes/setting-node-type/#&#34;&gt;Setting node type&lt;/a&gt;.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
IS_EPHEMERAL&lt;/td&gt; 

&lt;td &gt;


BOOLEAN&lt;/td&gt; 

&lt;td &gt;


(Deprecated) True if this node has been marked as ephemeral. (in preparation for removing it from the cluster).&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
STANDING_IN_FOR&lt;/td&gt; 

&lt;td &gt;
VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;
The name of the node that this node is currently replacing.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
SUBCLUSTER_NAME&lt;/td&gt; 

&lt;td &gt;
VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;
In an Eon Mode database, the name of the subcluster that contains the node. Nodes belong to exactly one subcluster.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
SANDBOX&lt;/td&gt; 

&lt;td &gt;
VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;


In an Eon Mode database, the name, if any, of the sandbox to which the node belongs. NULL if the node is not a member of an active sandbox.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
LAST_MSG_FROM_NODE_AT&lt;/td&gt; 

&lt;td &gt;
TIMESTAMPTZ&lt;/td&gt; 

&lt;td &gt;
The date and time the last message was received from this node.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
NODE_DOWN_SINCE&lt;/td&gt; 

&lt;td &gt;
TIMESTAMPTZ&lt;/td&gt; 

&lt;td &gt;
The amount of time that the replaced node has been unavailable.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
BUILD_INFO&lt;/td&gt; 

&lt;td &gt;
VARCHAR(128)&lt;/td&gt; 

&lt;td &gt;
The version of the database server binary the node is running.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;
&lt;h2 id=&#34;example&#34;&gt;Example&lt;/h2&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT NODE_NAME, NODE_STATE, IS_PRIMARY, IS_READONLY, NODE_TYPE,
          SUBCLUSTER_NAME FROM NODES ORDER BY NODE_NAME ASC;
      NODE_NAME       | NODE_STATE | IS_PRIMARY | IS_READONLY | NODE_TYPE |  SUBCLUSTER_NAME
----------------------+------------+------------+-------------+-----------+--------------------
 v_verticadb_node0001 | UP         | t          | f           | PERMANENT | default_subcluster
 v_verticadb_node0002 | UP         | t          | f           | PERMANENT | default_subcluster
 v_verticadb_node0003 | UP         | t          | f           | PERMANENT | default_subcluster
 v_verticadb_node0004 | UP         | f          | f           | PERMANENT | analytics
 v_verticadb_node0005 | UP         | f          | f           | PERMANENT | analytics
 v_verticadb_node0006 | UP         | f          | f           | PERMANENT | analytics
(6 rows)
&lt;/code&gt;&lt;/pre&gt;
      </description>
    </item>
    
    <item>
      <title>Sql-Reference: ODBC_COLUMNS</title>
      <link>/en/sql-reference/system-tables/v-catalog-schema/odbc-columns/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/sql-reference/system-tables/v-catalog-schema/odbc-columns/</guid>
      <description>
        
        
        &lt;p&gt;Provides table column information. The format is defined by the ODBC standard for the ODBC SQLColumns metadata. Details on the ODBC SQLColumns format are available in the ODBC specification: &lt;a href=&#34;http://msdn.microsoft.com/en-us/library/windows/desktop/ms711683(v=vs.85).aspx&#34;&gt;http://msdn.microsoft.com/en-us/library/windows/desktop/ms711683%28v=vs.85%29.aspx&lt;/a&gt;.

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
&lt;strong&gt;Column Name&lt;/strong&gt;&lt;/th&gt; 

&lt;th &gt;
&lt;strong&gt;Data Type&lt;/strong&gt;&lt;/th&gt; 

&lt;th &gt;
&lt;strong&gt;Description&lt;/strong&gt;&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;SCHEMA_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


Name of the schema in which the column resides. If the column does not reside in a schema, this field is empty.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;TABLE_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


Name of the table in which the column resides.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;COLUMN_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


Name of the column.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;DATA_TYPE&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


Data type of the column. This can be an ODBC SQL data type or a driver-specific SQL data type. This column corresponds to the ODBC_TYPE column in the &lt;a href=&#34;../../../../en/sql-reference/system-tables/v-catalog-schema/types/#&#34;&gt;TYPES&lt;/a&gt; table.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;DATA_TYPE_NAME&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


Driver-specific data type name.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;COLUMN_SIZE&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


ODBC-defined data size of the column.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;BUFFER_LENGTH&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


Transfer octet length of a column is the maximum number of bytes returned to the application when data is transferred to its default C data type. See &lt;a href=&#34;http://msdn.microsoft.com/en-us/library/windows/desktop/ms713979%28v=vs.85%29.aspx&#34;&gt;http://msdn.microsoft.com/en-us/library/windows/desktop/ms713979%28v=vs.85%29.aspx&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;DECIMAL_DIGITS&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


Total number of significant digits to the right of the decimal point. This value has no meaning for non-decimal data types.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;NUM_PREC_RADIX&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


Radix OpenText™ Analytics Database reports decimal_digits and columns_size as. This value is always 10, because it refers to a number of decimal digits, rather than a number of bits.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;NULLABLE&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


BOOLEAN&lt;/td&gt; 

&lt;td &gt;


Whether the column can contain null values.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;REMARKS&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


Textual remarks for the column.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;COLUMN_DEFAULT&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


Default value of the column.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;SQL_TYPE_ID&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


SQL data type of the column.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;SQL_DATETIME_SUB&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


Subtype for a datetime data type. This value has no meaning for non-datetime data types.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;CHAR_OCTET_LENGTH&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


Maximum length of a string or binary data column.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;ORDINAL_POSITION&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


INTEGER&lt;/td&gt; 

&lt;td &gt;


Position of the column in the table definition.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;IS_NULLABLE&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


VARCHAR&lt;/td&gt; 

&lt;td &gt;


Values can be YES or NO, determined by the value of the NULLABLE column.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


&lt;code&gt;IS_IDENTITY&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;


BOOLEAN&lt;/td&gt; 

&lt;td &gt;


Whether the column is an &lt;a href=&#34;../../../../en/admin/working-with-native-tables/sequences/identity-sequences/&#34;&gt;IDENTITY&lt;/a&gt; column.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;

      </description>
    </item>
    
  </channel>
</rss>
