Reference for Language

This guide lists the predefined objects in OCI Resource Analytics for the Language service. You can find information about views, entity relationships, subject areas, and sample queries.

Views

This section provides information about views within OCI Resource Analytics Language and their columns, data types, keys, and the referred view and column names. The following views are available:

Language Views
Name Description
LANGUAGE_ENDPOINT_DIM_V This view stores information about the details of the endpoint.
LANGUAGE_MODEL_DIM_V This view stores information about the details of a model.
LANGUAGE_PROJECT_DIM_V This view stores information about the details of a project, which enables users to organize their project resources.
LANGUAGE_FACT_V Fact table for the Language service.

The suffixes in the view names specify the view type:

  • FACT_V: Fact
  • DIM_V: Dimension

Relationship Diagram

This section provides diagrams that define the logical relationship of a fact table with different dimension tables.

The contents of each view and their relationships are listed in the following file: Language views.

LANGUAGE_FACT_V


Relationship diagram showing LANGUAGE_FACT_V and its related dimension tables.

Sample Queries

Sample queries for Language.

List the number of models associated with an endpoint.

SELECT
 ENDPOINT_ID,
 COUNT(MODEL_ID) AS MODEL_COUNT
FROM OCIRA.LANGUAGE_FACT_V F
GROUP BY ENDPOINT_ID;