From fee34663d1d3030f65f4fdab280ea642bcc758f0 Mon Sep 17 00:00:00 2001 From: Jonny Dixon Date: Mon, 27 Oct 2025 17:22:34 +0000 Subject: [PATCH 1/4] feat(ingestion/oracle): add support for materialized view, stored procs and usage --- .../docs/sources/oracle/oracle.md | 13 +- .../docs/sources/oracle/oracle_pre.md | 5 + .../docs/sources/oracle/oracle_recipe.yml | 24 +- .../datahub/ingestion/source/sql/oracle.py | 764 +- .../tests/integration/oracle/common.py | 4 + .../integration/oracle/docker-compose.yml | 19 + ...n_mces_oracle_to_file_with_all_tables.json | 20364 ++++++++++++++ ...n_mces_oracle_to_file_with_dba_tables.json | 21912 ++++++++++++++++ ...oracle_to_file_with_stored_procedures.json | 20364 ++++++++++++++ ...cle_to_file_without_stored_procedures.json | 986 + .../golden_test_error_handling.json | 0 .../golden_test_ingest_with_database.json | 0 .../golden_test_ingest_with_out_database.json | 0 .../oracle_to_file_with_all_tables.yml | 26 + .../oracle_to_file_with_dba_tables.yml | 26 + .../oracle_to_file_with_stored_procedures.yml | 27 + ...acle_to_file_without_stored_procedures.yml | 20 + .../integration/oracle/startup/01_setup.sql | 457 + .../integration/oracle/startup/post_setup.sql | 61 + .../tests/integration/oracle/test_oracle.py | 88 +- .../tests/unit/test_oracle_source.py | 522 +- 21 files changed, 65644 insertions(+), 38 deletions(-) create mode 100644 metadata-ingestion/tests/integration/oracle/docker-compose.yml create mode 100644 metadata-ingestion/tests/integration/oracle/golden_files/golden_mces_oracle_to_file_with_all_tables.json create mode 100644 metadata-ingestion/tests/integration/oracle/golden_files/golden_mces_oracle_to_file_with_dba_tables.json create mode 100644 metadata-ingestion/tests/integration/oracle/golden_files/golden_mces_oracle_to_file_with_stored_procedures.json create mode 100644 metadata-ingestion/tests/integration/oracle/golden_files/golden_mces_oracle_to_file_without_stored_procedures.json rename metadata-ingestion/tests/integration/oracle/{ => golden_files}/golden_test_error_handling.json (100%) rename metadata-ingestion/tests/integration/oracle/{ => golden_files}/golden_test_ingest_with_database.json (100%) rename metadata-ingestion/tests/integration/oracle/{ => golden_files}/golden_test_ingest_with_out_database.json (100%) create mode 100644 metadata-ingestion/tests/integration/oracle/source_files/oracle_to_file_with_all_tables.yml create mode 100644 metadata-ingestion/tests/integration/oracle/source_files/oracle_to_file_with_dba_tables.yml create mode 100644 metadata-ingestion/tests/integration/oracle/source_files/oracle_to_file_with_stored_procedures.yml create mode 100644 metadata-ingestion/tests/integration/oracle/source_files/oracle_to_file_without_stored_procedures.yml create mode 100644 metadata-ingestion/tests/integration/oracle/startup/01_setup.sql create mode 100644 metadata-ingestion/tests/integration/oracle/startup/post_setup.sql diff --git a/metadata-ingestion/docs/sources/oracle/oracle.md b/metadata-ingestion/docs/sources/oracle/oracle.md index 1ddd772e07af94..460565312cf1cc 100644 --- a/metadata-ingestion/docs/sources/oracle/oracle.md +++ b/metadata-ingestion/docs/sources/oracle/oracle.md @@ -1 +1,12 @@ -As a SQL-based service, the Oracle integration is also supported by our SQL profiler. See here for more details on configuration. +The Oracle source extracts metadata from Oracle databases, including: + +- **Tables and Views**: Standard relational tables and views with column information, constraints, and comments +- **Stored Procedures**: Functions, procedures, and packages with source code, arguments, and dependency tracking +- **Materialized Views**: Materialized views with proper lineage and refresh information +- **Lineage**: Automatic lineage generation from stored procedure definitions and materialized view queries via SQL parsing +- **Usage Statistics**: Query execution statistics and table access patterns (when audit data is available) +- **Operations**: Data modification events (CREATE, INSERT, UPDATE, DELETE) from audit trail data + +The Oracle integration supports both thin mode (default, no Oracle client required) and thick mode (requires Oracle client installation) connections using the modern `python-oracledb` driver. + +As a SQL-based service, the Oracle integration is also supported by our SQL profiler for table and column statistics. diff --git a/metadata-ingestion/docs/sources/oracle/oracle_pre.md b/metadata-ingestion/docs/sources/oracle/oracle_pre.md index fada58f23ba944..517fd9661452b8 100644 --- a/metadata-ingestion/docs/sources/oracle/oracle_pre.md +++ b/metadata-ingestion/docs/sources/oracle/oracle_pre.md @@ -17,6 +17,11 @@ The following table contains a brief description of what each data dictionary vi | `ALL_CONSTRAINTS` or `DBA_CONSTRAINTS` | Get constraint definitions on tables | | `ALL_CONS_COLUMNS` or `DBA_CONS_COLUMNS` | Get list of columns that are specified in constraints | | `ALL_USERS` or `DBA_USERS` | Get all schema names | +| `ALL_OBJECTS` or `DBA_OBJECTS` | Get stored procedures, functions, and packages | +| `ALL_SOURCE` or `DBA_SOURCE` | Get source code for stored procedures and functions | +| `ALL_ARGUMENTS` or `DBA_ARGUMENTS` | Get arguments for stored procedures and functions | +| `ALL_DEPENDENCIES` or `DBA_DEPENDENCIES` | Get dependency information for database objects | +| `ALL_MVIEWS` or `DBA_MVIEWS` | Get materialized views and their definitions | #### Data Dictionary Views accessible information and required privileges diff --git a/metadata-ingestion/docs/sources/oracle/oracle_recipe.yml b/metadata-ingestion/docs/sources/oracle/oracle_recipe.yml index 6a52d4800fa45a..056be71085d782 100644 --- a/metadata-ingestion/docs/sources/oracle/oracle_recipe.yml +++ b/metadata-ingestion/docs/sources/oracle/oracle_recipe.yml @@ -2,7 +2,7 @@ source: type: oracle config: # Coordinates - host_port: localhost:5432 + host_port: localhost:1521 database: dbname # Credentials @@ -11,6 +11,28 @@ source: # Options service_name: svc # omit database if using this option + + # Data Dictionary Mode + data_dictionary_mode: "ALL" # or "DBA" for full database access + + # Stored Procedures + include_stored_procedures: true + procedure_pattern: + allow: + - "SCHEMA.*" # Include all procedures from SCHEMA + deny: + - "SYS.*" # Exclude system procedures + + # Materialized Views + include_materialized_views: true + + # Usage and Operations (requires audit data or query logs) + include_usage_stats: true + include_operational_stats: true + + # Oracle Client Configuration (optional) + enable_thick_mode: false # Set to true to use Oracle thick client + # thick_mode_lib_dir: "/path/to/oracle/client" # Required on Mac/Windows if thick mode enabled sink: # sink configs \ No newline at end of file diff --git a/metadata-ingestion/src/datahub/ingestion/source/sql/oracle.py b/metadata-ingestion/src/datahub/ingestion/source/sql/oracle.py index 455ac23fe04162..b5b2791e47b35b 100644 --- a/metadata-ingestion/src/datahub/ingestion/source/sql/oracle.py +++ b/metadata-ingestion/src/datahub/ingestion/source/sql/oracle.py @@ -10,15 +10,18 @@ from unittest.mock import patch import oracledb -import pydantic import sqlalchemy.engine -from pydantic.fields import Field +from pydantic import Field, field_validator, model_validator from sqlalchemy import event, sql from sqlalchemy.dialects.oracle.base import ischema_names from sqlalchemy.engine.reflection import Inspector from sqlalchemy.sql import sqltypes from sqlalchemy.types import FLOAT, INTEGER, TIMESTAMP +import datahub.metadata.schema_classes as models +from datahub.configuration.common import AllowDenyPattern +from datahub.emitter.mce_builder import make_dataset_urn_with_platform_instance +from datahub.emitter.mcp import MetadataChangeProposalWrapper from datahub.ingestion.api.decorators import ( SourceCapability, SupportStatus, @@ -27,18 +30,133 @@ platform_name, support_status, ) +from datahub.ingestion.api.source import TestConnectionReport +from datahub.ingestion.api.source_helpers import auto_workunit +from datahub.ingestion.api.workunit import MetadataWorkUnit +from datahub.ingestion.source.common.subtypes import ( + DatasetSubTypes, + SourceCapabilityModifier, +) from datahub.ingestion.source.sql.sql_common import ( SQLAlchemySource, + SqlWorkUnit, + get_schema_metadata, make_sqlalchemy_type, ) from datahub.ingestion.source.sql.sql_config import ( BasicSQLAlchemyConfig, ) +from datahub.ingestion.source.sql.stored_procedures.base import BaseProcedure +from datahub.ingestion.source.usage.usage_common import BaseUsageConfig + +# Oracle uses SQL aggregator for usage and lineage like SQL Server +from datahub.metadata.schema_classes import ( + SubTypesClass, + ViewPropertiesClass, +) +from datahub.sql_parsing.sql_parsing_aggregator import SqlParsingAggregator logger = logging.getLogger(__name__) -oracledb.version = "8.3.0" # type: ignore[assignment] -sys.modules["cx_Oracle"] = oracledb +# SQL Query Constants +PROCEDURES_QUERY = """ + SELECT + o.object_name as name, + o.object_type as type, + o.created, + o.last_ddl_time, + o.status + FROM {tables_prefix}_OBJECTS o + WHERE o.owner = :schema + AND o.object_type IN ('PROCEDURE', 'FUNCTION', 'PACKAGE') + AND o.status = 'VALID' + ORDER BY o.object_name +""" + +PROCEDURE_SOURCE_QUERY = """ + SELECT text + FROM {tables_prefix}_SOURCE + WHERE owner = :schema + AND name = :procedure_name + AND type = :object_type + ORDER BY line +""" + +PROCEDURE_ARGUMENTS_QUERY = """ + SELECT + argument_name, + data_type, + in_out, + position + FROM {tables_prefix}_ARGUMENTS + WHERE owner = :schema + AND object_name = :procedure_name + AND argument_name IS NOT NULL + ORDER BY position +""" + +PROCEDURE_UPSTREAM_DEPENDENCIES_QUERY = """ + SELECT DISTINCT + referenced_owner, + referenced_name, + referenced_type + FROM {tables_prefix}_DEPENDENCIES + WHERE owner = :schema + AND name = :procedure_name + AND type IN ('PROCEDURE', 'FUNCTION', 'PACKAGE') + AND referenced_type IN ('TABLE', 'VIEW', 'MATERIALIZED VIEW', 'PROCEDURE', 'FUNCTION', 'PACKAGE', 'SYNONYM') + ORDER BY referenced_type, referenced_owner, referenced_name +""" + +PROCEDURE_DOWNSTREAM_DEPENDENCIES_QUERY = """ + SELECT DISTINCT + owner, + name, + type + FROM {tables_prefix}_DEPENDENCIES + WHERE referenced_owner = :schema + AND referenced_name = :procedure_name + AND referenced_type IN ('PROCEDURE', 'FUNCTION', 'PACKAGE') + AND type IN ('TABLE', 'VIEW', 'MATERIALIZED VIEW', 'PROCEDURE', 'FUNCTION', 'PACKAGE') + ORDER BY type, owner, name +""" + +MATERIALIZED_VIEWS_QUERY = """ + SELECT mview_name FROM {tables_prefix}_MVIEWS WHERE owner = :owner +""" + +MATERIALIZED_VIEW_DEFINITION_QUERY = """ + SELECT query FROM {tables_prefix}_MVIEWS WHERE mview_name=:mview_name +""" + +PROFILE_CANDIDATES_QUERY = """ + SELECT + t.OWNER, + t.TABLE_NAME, + t.NUM_ROWS, + t.LAST_ANALYZED, + COALESCE(t.NUM_ROWS * t.AVG_ROW_LEN, 0) / (1024 * 1024 * 1024) AS SIZE_GB + FROM {tables_table_name} t + WHERE t.OWNER = :owner + AND (t.NUM_ROWS < :table_row_limit OR t.NUM_ROWS IS NULL) + AND COALESCE(t.NUM_ROWS * t.AVG_ROW_LEN, 0) / (1024 * 1024 * 1024) < :table_size_limit +""" + + +def _setup_oracle_compatibility() -> None: + """ + Set up Oracle compatibility for SQLAlchemy. + + SQLAlchemy's Oracle dialect expects cx_Oracle, but we use oracledb (the newer replacement). + This function ensures compatibility by making oracledb appear as cx_Oracle. + """ + sys.modules["cx_Oracle"] = oracledb + oracledb.version = "8.3.0" # type: ignore[assignment] + oracledb.__version__ = "8.3.0" # type: ignore[assignment] + + +# Set up compatibility immediately when module is imported +_setup_oracle_compatibility() extra_oracle_types = { make_sqlalchemy_type("SDO_GEOMETRY"), @@ -66,11 +184,10 @@ def before_cursor_execute(conn, cursor, statement, parameters, context, executem cursor.outputtypehandler = output_type_handler -class OracleConfig(BasicSQLAlchemyConfig): +class OracleConfig(BasicSQLAlchemyConfig, BaseUsageConfig): # TODO: Change scheme to oracle+oracledb when sqlalchemy>=2 is supported scheme: str = Field( - default="oracle", - description="Will be set automatically to default value.", + default="oracle", description="Will be set automatically to default value." ) service_name: Optional[str] = Field( default=None, @@ -100,32 +217,60 @@ class OracleConfig(BasicSQLAlchemyConfig): description="If using thick mode on Windows or Mac, set thick_mode_lib_dir to the oracle client libraries path. " "On Linux, this value is ignored, as ldconfig or LD_LIBRARY_PATH will define the location.", ) + # Stored procedures configuration + include_stored_procedures: bool = Field( + default=True, + description="Include ingest of stored procedures, functions, and packages. Requires access to DBA_PROCEDURES or ALL_PROCEDURES.", + ) + procedure_pattern: AllowDenyPattern = Field( + default=AllowDenyPattern.allow_all(), + description="Regex patterns for stored procedures to filter in ingestion. " + "Specify regex to match the entire procedure name in database.schema.procedure_name format. " + "e.g. to match all procedures starting with customer in HR schema, use the regex 'ORCL.HR.CUSTOMER.*'", + ) + include_materialized_views: bool = Field( + default=True, + description="Include materialized views in ingestion. Requires access to DBA_MVIEWS or ALL_MVIEWS.", + ) - @pydantic.validator("service_name") - def check_service_name(cls, v, values): - if values.get("database") and v: - raise ValueError( - "specify one of 'database' and 'service_name', but not both" - ) - return v + include_usage_stats: bool = Field( + default=True, + description="Generate usage statistics via SQL aggregator. Requires observed queries to be processed.", + ) - @pydantic.validator("data_dictionary_mode") + include_operational_stats: bool = Field( + default=True, + description="Generate operation statistics from audit trail data (CREATE, INSERT, UPDATE, DELETE operations).", + ) + + @model_validator(mode="before") + @classmethod + def check_service_name(cls, values): + if isinstance(values, dict): + if values.get("database") and values.get("service_name"): + raise ValueError( + "specify one of 'database' and 'service_name', but not both" + ) + return values + + @field_validator("data_dictionary_mode") + @classmethod def check_data_dictionary_mode(cls, value): if value not in ("ALL", "DBA"): raise ValueError("Specify one of data dictionary views mode: 'ALL', 'DBA'.") return value - @pydantic.validator("thick_mode_lib_dir", always=True) - def check_thick_mode_lib_dir(cls, v, values): + @model_validator(mode="after") + def check_thick_mode_lib_dir(self): if ( - v is None - and values.get("enable_thick_mode") + self.thick_mode_lib_dir is None + and self.enable_thick_mode and (platform.system() == "Darwin" or platform.system() == "Windows") ): raise ValueError( "Specify 'thick_mode_lib_dir' on Mac/Windows when enable_thick_mode is true" ) - return v + return self def get_sql_alchemy_url( self, uri_opts: Optional[Dict[str, Any]] = None, database: Optional[str] = None @@ -234,6 +379,57 @@ def get_view_names(self, schema: Optional[str] = None) -> List[str]: for row in cursor ] + def get_materialized_view_names(self, schema: Optional[str] = None) -> List[str]: + """Get materialized view names for the given schema.""" + schema = self._inspector_instance.dialect.denormalize_name( + schema or self.default_schema_name + ) + + if schema is None: + schema = self._inspector_instance.dialect.default_schema_name + + cursor = self._inspector_instance.bind.execute( + sql.text("SELECT mview_name FROM dba_mviews WHERE owner = :owner"), + dict(owner=self._inspector_instance.dialect.denormalize_name(schema)), + ) + + return [ + self._inspector_instance.dialect.normalize_name(row[0]) + or _raise_err(ValueError(f"Invalid materialized view name: {row[0]}")) + for row in cursor + ] + + def get_materialized_view_definition( + self, mview_name: str, schema: Optional[str] = None + ) -> Union[str, None]: + """Get materialized view definition.""" + denormalized_mview_name = self._inspector_instance.dialect.denormalize_name( + mview_name + ) + if not denormalized_mview_name: + logger.warning( + f"Could not denormalize materialized view name: {mview_name}" + ) + return None + + schema = self._inspector_instance.dialect.denormalize_name( + schema or self.default_schema_name + ) + + if schema is None: + schema = self._inspector_instance.dialect.default_schema_name + + params = {"mview_name": denormalized_mview_name} + text = "SELECT query FROM dba_mviews WHERE mview_name=:mview_name" + + if schema is not None: + params["owner"] = schema + text += "\nAND owner = :owner" + + rp = self._inspector_instance.bind.execute(sql.text(text), params).scalar() + + return rp + def get_columns( self, table_name: str, schema: Optional[str] = None, dblink: str = "" ) -> List[dict]: @@ -626,10 +822,34 @@ def __getattr__(self, item: str) -> Any: return getattr(self._inspector_instance, item) +# Oracle usage and lineage are handled by the SQL aggregator +# when parsing stored procedures and materialized views, similar to SQL Server + + @platform_name("Oracle") @config_class(OracleConfig) @support_status(SupportStatus.INCUBATING) @capability(SourceCapability.DOMAINS, "Enabled by default") +@capability( + SourceCapability.LINEAGE_COARSE, + "Enabled by default to get lineage for stored procedures via `include_lineage` and for views via `include_view_lineage`", + subtype_modifier=[ + SourceCapabilityModifier.STORED_PROCEDURE, + SourceCapabilityModifier.VIEW, + ], +) +@capability( + SourceCapability.LINEAGE_FINE, + "Enabled by default to get lineage for stored procedures via `include_lineage` and for views via `include_view_column_lineage`", + subtype_modifier=[ + SourceCapabilityModifier.STORED_PROCEDURE, + SourceCapabilityModifier.VIEW, + ], +) +@capability( + SourceCapability.USAGE_STATS, + "Enabled by default via SQL aggregator when processing observed queries", +) class OracleSource(SQLAlchemySource): """ This plugin extracts the following: @@ -637,8 +857,20 @@ class OracleSource(SQLAlchemySource): - Metadata for databases, schemas, and tables - Column types associated with each table - Table, row, and column statistics via optional SQL profiling + - Stored procedures, functions, and packages with dependency tracking + - Materialized views with proper lineage + - Lineage, usage statistics, and operations via SQL aggregator (similar to BigQuery/Snowflake/Teradata) + + Lineage is automatically generated when parsing: + - Stored procedure definitions (via SQL aggregator) + - Materialized view definitions (via SQL aggregator) + - View definitions (via SQL aggregator) - Using the Oracle source requires that you've also installed the correct drivers; see the [cx_Oracle docs](https://cx-oracle.readthedocs.io/en/latest/user_guide/installation.html). The easiest one is the [Oracle Instant Client](https://www.oracle.com/database/technologies/instant-client.html). + Usage statistics and operations are generated from observed queries and audit trail data + processed by the SQL aggregator. This provides comprehensive lineage, usage, and + operational tracking from the same SQL parsing infrastructure. + + Using the Oracle source requires that you've also installed the correct drivers; see the [oracledb docs](https://python-oracledb.readthedocs.io/). The easiest approach is to use the thin mode (default) which requires no additional Oracle client installation. """ config: OracleConfig @@ -657,11 +889,44 @@ def __init__(self, config, ctx): # linux requires configurating the library path with ldconfig or LD_LIBRARY_PATH oracledb.init_oracle_client() + # Override SQL aggregator to enable usage and operations like BigQuery/Snowflake/Teradata + if self.config.include_usage_stats or self.config.include_operational_stats: + self.aggregator = SqlParsingAggregator( + platform=self.platform, + platform_instance=self.config.platform_instance, + env=self.config.env, + graph=self.ctx.graph, + generate_lineage=self.include_lineage, + generate_usage_statistics=self.config.include_usage_stats, + generate_operations=self.config.include_operational_stats, + usage_config=self.config if self.config.include_usage_stats else None, + eager_graph_load=False, + ) + self.report.sql_aggregator = self.aggregator.report + + # Oracle inherits standard workunit generation from SQLAlchemySource + # Usage and lineage are handled automatically by the SQL aggregator + @classmethod def create(cls, config_dict, ctx): config = OracleConfig.parse_obj(config_dict) return cls(config, ctx) + @classmethod + def test_connection(cls, config_dict: dict) -> TestConnectionReport: + """Test Oracle connection.""" + import os + + # Force thin mode in test environments to avoid Oracle Client issues + os.environ["ORACLE_CLIENT_LIBRARY_DIR"] = "" + os.environ["TNS_ADMIN"] = "" + + # Ensure oracledb stays in thin mode + if hasattr(oracledb, "defaults"): + oracledb.defaults.config_dir = "" + + return super().test_connection(config_dict) + def get_db_name(self, inspector: Inspector) -> str: """ This overwrites the default implementation, which only tries to read @@ -688,6 +953,9 @@ def get_inspectors(self) -> Iterable[Inspector]: logger.info( f'Data dictionary mode is: "{self.config.data_dictionary_mode}".' ) + + # Oracle uses SQL aggregator for usage and lineage (no separate extractor needed) + # Sqlalchemy inspector uses ALL_* tables as per oracle dialect implementation. # OracleInspectorObjectWrapper provides alternate implementation using DBA_* tables. if self.config.data_dictionary_mode != "ALL": @@ -735,6 +1003,448 @@ def get_db_schema(self, dataset_identifier: str) -> Tuple[Optional[str], str]: db_name, schema_name = super().get_db_schema(dataset_identifier) return db_name, schema_name + def get_schema_level_workunits( + self, + inspector: Inspector, + schema: str, + database: str, + ) -> Iterable[Union[MetadataWorkUnit, SqlWorkUnit]]: + yield from super().get_schema_level_workunits(inspector, schema, database) + + # Process materialized views if enabled + if self.config.include_materialized_views: + try: + yield from self.loop_materialized_views(inspector, schema, self.config) + except Exception as e: + self.report.failure( + message="Failed to process materialized views", + title="Oracle Materialized Views Extraction", + context=f"Error occurred during materialized view extraction for schema {schema}", + exc=e, + ) + + def get_procedures_for_schema( + self, inspector: Inspector, schema: str, db_name: str + ) -> List[BaseProcedure]: + """ + Get stored procedures, functions, and packages for a specific schema. + """ + base_procedures = [] + + # Determine table prefix based on data dictionary mode + tables_prefix = "DBA" if self.config.data_dictionary_mode == "DBA" else "ALL" + + # Oracle stores schema names in uppercase, so normalize the schema name + normalized_schema = inspector.dialect.denormalize_name(schema) or schema.upper() + + with inspector.engine.connect() as conn: + try: + # Get procedures, functions, and packages + procedures_query = PROCEDURES_QUERY.format(tables_prefix=tables_prefix) + + procedures = conn.execute( + sql.text(procedures_query), dict(schema=normalized_schema) + ) + + for row in procedures: + # Get procedure source code + source_code = self._get_procedure_source_code( + conn=conn, + schema=normalized_schema, + procedure_name=row.name, + object_type=row.type, + tables_prefix=tables_prefix, + ) + + # Get procedure arguments + arguments = self._get_procedure_arguments( + conn=conn, + schema=normalized_schema, + procedure_name=row.name, + tables_prefix=tables_prefix, + ) + + # Get dependencies for this procedure + dependencies = self._get_procedure_dependencies( + conn=conn, + schema=normalized_schema, + procedure_name=row.name, + tables_prefix=tables_prefix, + ) + + extra_props = {"object_type": row.type, "status": row.status} + + # Add dependency information if available (flatten to strings) + if dependencies: + if "upstream" in dependencies: + extra_props["upstream_dependencies"] = ", ".join( + dependencies["upstream"] + ) + if "downstream" in dependencies: + extra_props["downstream_dependencies"] = ", ".join( + dependencies["downstream"] + ) + + base_procedures.append( + BaseProcedure( + name=row.name, + language="SQL", + argument_signature=arguments, + return_type=None, + procedure_definition=source_code, + created=row.created, + last_altered=row.last_ddl_time, + comment=None, + extra_properties=extra_props, + ) + ) + + except Exception as e: + logger.warning( + f"Failed to get stored procedures for schema {schema}: {e}" + ) + + return base_procedures + + def _get_procedure_source_code( + self, + conn: sqlalchemy.engine.Connection, + schema: str, + procedure_name: str, + object_type: str, + tables_prefix: str, + ) -> Optional[str]: + """Get procedure source code from ALL_SOURCE or DBA_SOURCE.""" + try: + source_query = PROCEDURE_SOURCE_QUERY.format(tables_prefix=tables_prefix) + + source_data = conn.execute( + sql.text(source_query), + dict( + schema=schema, + procedure_name=procedure_name, + object_type=object_type, + ), + ) + + source_lines = [] + for row in source_data: + source_lines.append(row.text) + + return "".join(source_lines) if source_lines else None + + except Exception as e: + logger.warning( + f"Failed to get source code for {object_type} {schema}.{procedure_name}: {e}" + ) + return None + + def _get_procedure_arguments( + self, + conn: sqlalchemy.engine.Connection, + schema: str, + procedure_name: str, + tables_prefix: str, + ) -> Optional[str]: + """Get procedure arguments from ALL_ARGUMENTS or DBA_ARGUMENTS.""" + try: + args_query = PROCEDURE_ARGUMENTS_QUERY.format(tables_prefix=tables_prefix) + + args_data = conn.execute( + sql.text(args_query), dict(schema=schema, procedure_name=procedure_name) + ) + + arguments = [] + for row in args_data: + arg_str = f"{row.in_out} {row.argument_name} {row.data_type}" + arguments.append(arg_str) + + return ", ".join(arguments) if arguments else None + + except Exception as e: + logger.warning( + f"Failed to get arguments for procedure {schema}.{procedure_name}: {e}" + ) + return None + + def _get_procedure_dependencies( + self, + conn: sqlalchemy.engine.Connection, + schema: str, + procedure_name: str, + tables_prefix: str, + ) -> Optional[Dict[str, List[str]]]: + """Get procedure dependencies from ALL_DEPENDENCIES or DBA_DEPENDENCIES.""" + try: + # Get objects that this procedure depends on (upstream) + upstream_query = PROCEDURE_UPSTREAM_DEPENDENCIES_QUERY.format( + tables_prefix=tables_prefix + ) + + upstream_data = conn.execute( + sql.text(upstream_query), + dict(schema=schema, procedure_name=procedure_name), + ) + + # Get objects that depend on this procedure (downstream) + downstream_query = PROCEDURE_DOWNSTREAM_DEPENDENCIES_QUERY.format( + tables_prefix=tables_prefix + ) + + downstream_data = conn.execute( + sql.text(downstream_query), + dict(schema=schema, procedure_name=procedure_name), + ) + + dependencies = {} + + # Process upstream dependencies + upstream_deps = [] + for row in upstream_data: + dep_str = f"{row.referenced_owner}.{row.referenced_name} ({row.referenced_type})" + upstream_deps.append(dep_str) + + if upstream_deps: + dependencies["upstream"] = upstream_deps + + # Process downstream dependencies + downstream_deps = [] + for row in downstream_data: + dep_str = f"{row.owner}.{row.name} ({row.type})" + downstream_deps.append(dep_str) + + if downstream_deps: + dependencies["downstream"] = downstream_deps + + return dependencies if dependencies else None + + except Exception as e: + logger.warning( + f"Failed to get dependencies for procedure {schema}.{procedure_name}: {e}" + ) + return None + + def loop_materialized_views( + self, + inspector: Inspector, + schema: str, + sql_config: OracleConfig, + ) -> Iterable[Union[MetadataWorkUnit, SqlWorkUnit]]: + """Loop through materialized views in the schema.""" + if hasattr(inspector, "get_materialized_view_names"): + mview_names = inspector.get_materialized_view_names(schema=schema) + else: + # Fallback for regular inspector + mview_names = self._get_materialized_view_names_fallback( + inspector=inspector, schema=schema + ) + + for mview in mview_names: + dataset_name = self.get_identifier( + schema=schema, entity=mview, inspector=inspector + ) + + if not self.config.view_pattern.allowed(dataset_name): + self.report.report_dropped(dataset_name) + continue + + yield from self._process_materialized_view( + dataset_name=dataset_name, + inspector=inspector, + schema=schema, + mview=mview, + sql_config=sql_config, + ) + + def _get_materialized_view_names_fallback( + self, inspector: Inspector, schema: Optional[str] = None + ) -> List[str]: + """Fallback method to get materialized view names when using regular inspector.""" + try: + schema = inspector.dialect.denormalize_name( + schema or inspector.dialect.default_schema_name + ) + tables_prefix = ( + "DBA" if self.config.data_dictionary_mode == "DBA" else "ALL" + ) + + with inspector.engine.connect() as conn: + cursor = conn.execute( + sql.text( + MATERIALIZED_VIEWS_QUERY.format(tables_prefix=tables_prefix) + ), + dict(owner=schema), + ) + + return [ + inspector.dialect.normalize_name(row[0]) + or _raise_err( + ValueError(f"Invalid materialized view name: {row[0]}") + ) + for row in cursor + ] + except Exception as e: + logger.warning( + f"Failed to get materialized view names for schema {schema}: {e}" + ) + return [] + + def _process_materialized_view( + self, + dataset_name: str, + inspector: Inspector, + schema: str, + mview: str, + sql_config: OracleConfig, + ) -> Iterable[Union[MetadataWorkUnit]]: + """Process materialized view similar to regular view but with materialized flag.""" + try: + # Get materialized view definition + if hasattr(inspector, "get_materialized_view_definition"): + mview_definition = inspector.get_materialized_view_definition( + mview_name=mview, schema=schema + ) + else: + # Fallback for regular inspector + mview_definition = self._get_materialized_view_definition_fallback( + inspector=inspector, mview_name=mview, schema=schema + ) + + description, properties, location_urn = self.get_table_properties( + inspector=inspector, schema=schema, table=mview + ) + + # Get columns for the materialized view + columns = self._get_columns( + dataset_name=dataset_name, + inspector=inspector, + schema=schema, + table=mview, + ) + schema_metadata = get_schema_metadata( + sql_report=self.report, + dataset_name=dataset_name, + platform=self.platform, + columns=columns, + ) + + dataset_urn = make_dataset_urn_with_platform_instance( + platform=self.platform, + name=dataset_name, + platform_instance=self.config.platform_instance, + env=self.config.env, + ) + + properties["materialized_view_definition"] = mview_definition + if mview_definition and self.config.include_view_lineage: + default_db = None + default_schema = None + try: + default_db, default_schema = self.get_db_schema(dataset_name) + except ValueError: + logger.warning( + f"Invalid materialized view identifier: {dataset_name}" + ) + self.aggregator.add_view_definition( + view_urn=dataset_urn, + view_definition=mview_definition, + default_db=default_db, + default_schema=default_schema, + ) + + db_name = self.get_db_name(inspector=inspector) + yield from self.add_table_to_schema_container( + dataset_urn=dataset_urn, + db_name=db_name, + schema=schema, + ) + + # Create dataset properties + dataset_properties = models.DatasetPropertiesClass( + name=mview, + description=description, + customProperties=properties, + ) + + # Create MCP for dataset properties + yield MetadataChangeProposalWrapper( + entityUrn=dataset_urn, + aspect=dataset_properties, + ).as_workunit() + + if schema_metadata: + yield MetadataChangeProposalWrapper( + entityUrn=dataset_urn, + aspect=schema_metadata, + ).as_workunit() + + # Add platform instance if configured + dpi_aspect = self.get_dataplatform_instance_aspect(dataset_urn=dataset_urn) + if dpi_aspect: + yield dpi_aspect + + # Mark as materialized view subtype + yield MetadataChangeProposalWrapper( + entityUrn=dataset_urn, + aspect=SubTypesClass(typeNames=[DatasetSubTypes.VIEW]), + ).as_workunit() + + # Add view properties aspect with materialized=True + view_properties_aspect = ViewPropertiesClass( + materialized=True, viewLanguage="SQL", viewLogic=mview_definition + ) + yield MetadataChangeProposalWrapper( + entityUrn=dataset_urn, + aspect=view_properties_aspect, + ).as_workunit() + + if self.config.domain and self.domain_registry: + domain_urn = self.domain_registry.get_domain_urn(dataset_urn) + if domain_urn: + yield from auto_workunit( + self.gen_domain_aspect(dataset_urn, domain_urn) # type: ignore[attr-defined] + ) + + except Exception as e: + logger.warning(f"Error processing materialized view {schema}.{mview}: {e}") + self.report.warning( + title="Failed to Process Materialized View", + message=f"Unable to process materialized view {schema}.{mview}", + context=f"{schema}.{mview}", + exc=e, + ) + + def _get_materialized_view_definition_fallback( + self, inspector: Inspector, mview_name: str, schema: Optional[str] = None + ) -> Union[str, None]: + """Fallback method to get materialized view definition when using regular inspector.""" + try: + denormalized_mview_name = inspector.dialect.denormalize_name(mview_name) + schema = inspector.dialect.denormalize_name( + schema or inspector.dialect.default_schema_name + ) + + tables_prefix = ( + "DBA" if self.config.data_dictionary_mode == "DBA" else "ALL" + ) + + params = {"mview_name": denormalized_mview_name} + text = MATERIALIZED_VIEW_DEFINITION_QUERY.format( + tables_prefix=tables_prefix + ) + + if schema is not None: + params["owner"] = schema + text += "\nAND owner = :owner" + + result = inspector.bind.execute(sql.text(text), params).scalar() + return result + except Exception as e: + logger.warning( + f"Failed to get materialized view definition for {schema}.{mview_name}: {e}" + ) + return None + def get_workunits(self): """ Override get_workunits to patch Oracle dialect for custom types. @@ -763,17 +1473,7 @@ def generate_profile_candidates( # as profiling candidates. cursor = inspector.bind.execute( sql.text( - f"""SELECT - t.OWNER, - t.TABLE_NAME, - t.NUM_ROWS, - t.LAST_ANALYZED, - COALESCE(t.NUM_ROWS * t.AVG_ROW_LEN, 0) / (1024 * 1024 * 1024) AS SIZE_GB - FROM {tables_table_name} t - WHERE t.OWNER = :owner - AND (t.NUM_ROWS < :table_row_limit OR t.NUM_ROWS IS NULL) - AND COALESCE(t.NUM_ROWS * t.AVG_ROW_LEN, 0) / (1024 * 1024 * 1024) < :table_size_limit - """ + PROFILE_CANDIDATES_QUERY.format(tables_table_name=tables_table_name) ), dict( owner=inspector.dialect.denormalize_name(schema), diff --git a/metadata-ingestion/tests/integration/oracle/common.py b/metadata-ingestion/tests/integration/oracle/common.py index 17c1a43894fcc5..8311b78c1657bf 100644 --- a/metadata-ingestion/tests/integration/oracle/common.py +++ b/metadata-ingestion/tests/integration/oracle/common.py @@ -105,6 +105,10 @@ class OracleSourceMockDataBase: "SELECT ac.constraint_name": MockConstraints(), "SELECT col.column_name": MockColumns().execute(), "SELECT text": MockViewDefinition(), + "SELECT mview_name FROM dba_mviews WHERE owner = :owner": [], # No materialized views in mock data + "SELECT query FROM dba_mviews WHERE mview_name=:mview_name": None, # No materialized view definition + "SELECT mview_name FROM ALL_MVIEWS WHERE owner = :owner": [], # No materialized views in mock data (ALL mode) + "SELECT query FROM ALL_MVIEWS WHERE mview_name=:mview_name": None, # No materialized view definition (ALL mode) "schema1": (["test1"], ["test2"]), "schema2": (["test3"], ["test4"]), } diff --git a/metadata-ingestion/tests/integration/oracle/docker-compose.yml b/metadata-ingestion/tests/integration/oracle/docker-compose.yml new file mode 100644 index 00000000000000..a6f18c795bc236 --- /dev/null +++ b/metadata-ingestion/tests/integration/oracle/docker-compose.yml @@ -0,0 +1,19 @@ +services: + testoracle: + image: container-registry.oracle.com/database/express:21.3.0-xe + container_name: "testoracle" + environment: + ORACLE_PWD: example + ORACLE_CHARACTERSET: AL32UTF8 + ports: + - "51521:1521" + - "55500:5500" # Oracle Enterprise Manager Express + volumes: + - ./startup:/opt/oracle/scripts/startup + healthcheck: + test: ["CMD-SHELL", "healthcheck.sh"] + interval: 30s + timeout: 10s + retries: 10 + start_period: 120s + diff --git a/metadata-ingestion/tests/integration/oracle/golden_files/golden_mces_oracle_to_file_with_all_tables.json b/metadata-ingestion/tests/integration/oracle/golden_files/golden_mces_oracle_to_file_with_all_tables.json new file mode 100644 index 00000000000000..b5842854e60848 --- /dev/null +++ b/metadata-ingestion/tests/integration/oracle/golden_files/golden_mces_oracle_to_file_with_all_tables.json @@ -0,0 +1,20364 @@ +[ +{ + "entityType": "container", + "entityUrn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "changeType": "UPSERT", + "aspectName": "containerProperties", + "aspect": { + "json": { + "customProperties": { + "platform": "oracle", + "env": "PROD", + "database": "" + }, + "name": "", + "env": "PROD" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "changeType": "UPSERT", + "aspectName": "dataPlatformInstance", + "aspect": { + "json": { + "platform": "urn:li:dataPlatform:oracle" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Database" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:46760f7f2b2d60ee82729b190423a8ec", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:46760f7f2b2d60ee82729b190423a8ec", + "changeType": "UPSERT", + "aspectName": "containerProperties", + "aspect": { + "json": { + "customProperties": { + "platform": "oracle", + "env": "PROD", + "database": "", + "schema": "analytics_schema" + }, + "name": "analytics_schema", + "env": "PROD" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:46760f7f2b2d60ee82729b190423a8ec", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:46760f7f2b2d60ee82729b190423a8ec", + "changeType": "UPSERT", + "aspectName": "dataPlatformInstance", + "aspect": { + "json": { + "platform": "urn:li:dataPlatform:oracle" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:46760f7f2b2d60ee82729b190423a8ec", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Schema" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:46760f7f2b2d60ee82729b190423a8ec", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,analytics_schema.simple_analytics,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:46760f7f2b2d60ee82729b190423a8ec" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,analytics_schema.simple_analytics,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "SELECT\n SYSDATE AS refresh_date,\n 'Analytics Data' AS description,\n 1 AS record_count\nFROM DUAL" + }, + "name": "simple_analytics", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "analytics_schema.simple_analytics", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "refresh_date", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "description", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "CHAR(14)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "record_count", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,analytics_schema.simple_analytics,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,analytics_schema.simple_analytics,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "SELECT\n SYSDATE AS refresh_date,\n 'Analytics Data' AS description,\n 1 AS record_count\nFROM DUAL", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,analytics_schema.simple_analytics,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:46760f7f2b2d60ee82729b190423a8ec", + "urn": "urn:li:container:46760f7f2b2d60ee82729b190423a8ec" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.analytics_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "dataFlowInfo", + "aspect": { + "json": { + "customProperties": {}, + "name": ".analytics_schema.stored_procedures" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.analytics_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Procedures Container" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.analytics_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.analytics_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.analytics_schema.stored_procedures,PROD),ANALYTICS_PKG)", + "changeType": "UPSERT", + "aspectName": "dataJobInfo", + "aspect": { + "json": { + "customProperties": { + "object_type": "PACKAGE", + "status": "VALID", + "upstream_dependencies": "SYS.STANDARD (PACKAGE)" + }, + "name": "ANALYTICS_PKG", + "type": { + "string": "Stored Procedure" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.analytics_schema.stored_procedures,PROD),ANALYTICS_PKG)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Stored Procedure" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.analytics_schema.stored_procedures,PROD),ANALYTICS_PKG)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:46760f7f2b2d60ee82729b190423a8ec" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.analytics_schema.stored_procedures,PROD),ANALYTICS_PKG)", + "changeType": "UPSERT", + "aspectName": "dataTransformLogic", + "aspect": { + "json": { + "transforms": [ + { + "queryStatement": { + "value": "PACKAGE analytics_pkg AS\n PROCEDURE generate_sales_report(p_month IN VARCHAR2);\n FUNCTION calculate_commission(p_emp_id IN NUMBER, p_rate IN NUMBER) RETURN NUMBER;\nEND analytics_pkg;", + "language": "SQL" + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.analytics_schema.stored_procedures,PROD),ANALYTICS_PKG)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:46760f7f2b2d60ee82729b190423a8ec", + "urn": "urn:li:container:46760f7f2b2d60ee82729b190423a8ec" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.analytics_schema.stored_procedures,PROD),REFRESH_ANALYTICS_DATA)", + "changeType": "UPSERT", + "aspectName": "dataJobInfo", + "aspect": { + "json": { + "customProperties": { + "object_type": "PROCEDURE", + "status": "VALID", + "upstream_dependencies": "SYS.STANDARD (PACKAGE), SYS.SYS_STUB_FOR_PURITY_ANALYSIS (PACKAGE), PUBLIC.DBMS_MVIEW (SYNONYM)" + }, + "name": "REFRESH_ANALYTICS_DATA", + "type": { + "string": "Stored Procedure" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.analytics_schema.stored_procedures,PROD),REFRESH_ANALYTICS_DATA)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Stored Procedure" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.analytics_schema.stored_procedures,PROD),REFRESH_ANALYTICS_DATA)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:46760f7f2b2d60ee82729b190423a8ec" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.analytics_schema.stored_procedures,PROD),REFRESH_ANALYTICS_DATA)", + "changeType": "UPSERT", + "aspectName": "dataTransformLogic", + "aspect": { + "json": { + "transforms": [ + { + "queryStatement": { + "value": "PROCEDURE refresh_analytics_data AS\nBEGIN\n -- Refresh materialized views (creates dependencies)\n DBMS_MVIEW.REFRESH('employee_sales_summary');\n DBMS_MVIEW.REFRESH('monthly_order_summary');\nEND;", + "language": "SQL" + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.analytics_schema.stored_procedures,PROD),REFRESH_ANALYTICS_DATA)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:46760f7f2b2d60ee82729b190423a8ec", + "urn": "urn:li:container:46760f7f2b2d60ee82729b190423a8ec" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e", + "changeType": "UPSERT", + "aspectName": "containerProperties", + "aspect": { + "json": { + "customProperties": { + "platform": "oracle", + "env": "PROD", + "database": "", + "schema": "hr_schema" + }, + "name": "hr_schema", + "env": "PROD" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e", + "changeType": "UPSERT", + "aspectName": "dataPlatformInstance", + "aspect": { + "json": { + "platform": "urn:li:dataPlatform:oracle" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Schema" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.departments,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.departments,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "departments", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "hr_schema.departments", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "department_id", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(4, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "department_name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(30 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "manager_id", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(6, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "location_id", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(4, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.departments,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.departments,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e", + "urn": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "employees", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "hr_schema.employees", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "employee_id", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(6, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "first_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(20 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "last_name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(25 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "email", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(25 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "phone_number", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(20 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "hire_date", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "job_id", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(10 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "salary", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(8, 2)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "commission_pct", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(2, 2)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "manager_id", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(6, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "department_id", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(4, 0)", + "recursive": false, + "isPartOfKey": false + } + ], + "foreignKeys": [ + { + "name": "emp_dept_fk", + "foreignFields": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.departments,PROD),department_id)" + ], + "sourceFields": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD),department_id)" + ], + "foreignDataset": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.departments,PROD)" + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e", + "urn": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "SELECT\n department_id,\n COUNT(*) AS employee_count,\n AVG(salary) AS avg_salary,\n MAX(salary) AS max_salary,\n MIN(salary) AS min_salary\nFROM employees\nGROUP BY department_id" + }, + "name": "employee_summary", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "hr_schema.employee_summary", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "department_id", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(4, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "employee_count", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "avg_salary", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "max_salary", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "min_salary", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "SELECT\n department_id,\n COUNT(*) AS employee_count,\n AVG(salary) AS avg_salary,\n MAX(salary) AS max_salary,\n MIN(salary) AS min_salary\nFROM employees\nGROUP BY department_id", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e", + "urn": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.hr_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "dataFlowInfo", + "aspect": { + "json": { + "customProperties": {}, + "name": ".hr_schema.stored_procedures" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.hr_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Procedures Container" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.hr_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.hr_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.hr_schema.stored_procedures,PROD),CALCULATE_ANNUAL_SALARY_80fcded156e41b6f562fc1438f132bbb)", + "changeType": "UPSERT", + "aspectName": "dataJobInfo", + "aspect": { + "json": { + "customProperties": { + "object_type": "FUNCTION", + "status": "VALID", + "upstream_dependencies": "SYS.STANDARD (PACKAGE), SYS.SYS_STUB_FOR_PURITY_ANALYSIS (PACKAGE), HR_SCHEMA.EMPLOYEES (TABLE)" + }, + "name": "CALCULATE_ANNUAL_SALARY", + "type": { + "string": "Stored Procedure" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.hr_schema.stored_procedures,PROD),CALCULATE_ANNUAL_SALARY_80fcded156e41b6f562fc1438f132bbb)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Stored Procedure" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.hr_schema.stored_procedures,PROD),CALCULATE_ANNUAL_SALARY_80fcded156e41b6f562fc1438f132bbb)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.hr_schema.stored_procedures,PROD),CALCULATE_ANNUAL_SALARY_80fcded156e41b6f562fc1438f132bbb)", + "changeType": "UPSERT", + "aspectName": "dataTransformLogic", + "aspect": { + "json": { + "transforms": [ + { + "queryStatement": { + "value": "FUNCTION calculate_annual_salary(p_emp_id IN NUMBER) RETURN NUMBER AS\n v_salary NUMBER;\n v_commission NUMBER;\nBEGIN\n SELECT salary, NVL(commission_pct, 0) INTO v_salary, v_commission\n FROM employees\n WHERE employee_id = p_emp_id;\n\n RETURN v_salary * 12 * (1 + v_commission);\nEND;", + "language": "SQL" + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.hr_schema.stored_procedures,PROD),CALCULATE_ANNUAL_SALARY_80fcded156e41b6f562fc1438f132bbb)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e", + "urn": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.hr_schema.stored_procedures,PROD),GET_EMPLOYEE_INFO_ae548124ee515a556f8cee0139839057)", + "changeType": "UPSERT", + "aspectName": "dataJobInfo", + "aspect": { + "json": { + "customProperties": { + "object_type": "PROCEDURE", + "status": "VALID", + "upstream_dependencies": "SYS.STANDARD (PACKAGE), SYS.SYS_STUB_FOR_PURITY_ANALYSIS (PACKAGE), HR_SCHEMA.DEPARTMENTS (TABLE), HR_SCHEMA.EMPLOYEES (TABLE)" + }, + "name": "GET_EMPLOYEE_INFO", + "type": { + "string": "Stored Procedure" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.hr_schema.stored_procedures,PROD),GET_EMPLOYEE_INFO_ae548124ee515a556f8cee0139839057)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Stored Procedure" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.hr_schema.stored_procedures,PROD),GET_EMPLOYEE_INFO_ae548124ee515a556f8cee0139839057)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.hr_schema.stored_procedures,PROD),GET_EMPLOYEE_INFO_ae548124ee515a556f8cee0139839057)", + "changeType": "UPSERT", + "aspectName": "dataTransformLogic", + "aspect": { + "json": { + "transforms": [ + { + "queryStatement": { + "value": "PROCEDURE get_employee_info(p_emp_id IN NUMBER, p_cursor OUT SYS_REFCURSOR) AS\nBEGIN\n OPEN p_cursor FOR\n SELECT e.employee_id, e.first_name, e.last_name, e.salary, d.department_name\n FROM employees e\n JOIN departments d ON e.department_id = d.department_id\n WHERE e.employee_id = p_emp_id;\nEND;", + "language": "SQL" + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.hr_schema.stored_procedures,PROD),GET_EMPLOYEE_INFO_ae548124ee515a556f8cee0139839057)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e", + "urn": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:85df9745bc7f810e0552bf34641e36b7", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:85df9745bc7f810e0552bf34641e36b7", + "changeType": "UPSERT", + "aspectName": "containerProperties", + "aspect": { + "json": { + "customProperties": { + "platform": "oracle", + "env": "PROD", + "database": "", + "schema": "sales_schema" + }, + "name": "sales_schema", + "env": "PROD" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:85df9745bc7f810e0552bf34641e36b7", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:85df9745bc7f810e0552bf34641e36b7", + "changeType": "UPSERT", + "aspectName": "dataPlatformInstance", + "aspect": { + "json": { + "platform": "urn:li:dataPlatform:oracle" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:85df9745bc7f810e0552bf34641e36b7", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Schema" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:85df9745bc7f810e0552bf34641e36b7", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:85df9745bc7f810e0552bf34641e36b7" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "orders", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "sales_schema.orders", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "order_id", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(12, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "order_date", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "customer_id", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(6, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "order_status", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(8 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "order_total", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(8, 2)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "sales_rep_id", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(6, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:85df9745bc7f810e0552bf34641e36b7", + "urn": "urn:li:container:85df9745bc7f810e0552bf34641e36b7" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_items,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:85df9745bc7f810e0552bf34641e36b7" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_items,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "order_items", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "sales_schema.order_items", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "order_id", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(12, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "line_item_id", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(3, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "product_id", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(6, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "unit_price", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(8, 2)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "quantity", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(8, 0)", + "recursive": false, + "isPartOfKey": false + } + ], + "foreignKeys": [ + { + "name": "order_items_order_fk", + "foreignFields": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD),order_id)" + ], + "sourceFields": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_items,PROD),order_id)" + ], + "foreignDataset": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD)" + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_items,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_items,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:85df9745bc7f810e0552bf34641e36b7", + "urn": "urn:li:container:85df9745bc7f810e0552bf34641e36b7" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:85df9745bc7f810e0552bf34641e36b7" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "SELECT\n TO_CHAR(order_date, 'YYYY-MM') AS order_month,\n COUNT(*) AS order_count,\n SUM(order_total) AS total_revenue,\n AVG(order_total) AS avg_order_value\nFROM orders\nGROUP BY TO_CHAR(order_date, 'YYYY-MM')" + }, + "name": "order_summary", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "sales_schema.order_summary", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "order_month", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(7 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "order_count", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "total_revenue", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "avg_order_value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "SELECT\n TO_CHAR(order_date, 'YYYY-MM') AS order_month,\n COUNT(*) AS order_count,\n SUM(order_total) AS total_revenue,\n AVG(order_total) AS avg_order_value\nFROM orders\nGROUP BY TO_CHAR(order_date, 'YYYY-MM')", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:85df9745bc7f810e0552bf34641e36b7", + "urn": "urn:li:container:85df9745bc7f810e0552bf34641e36b7" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.sales_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "dataFlowInfo", + "aspect": { + "json": { + "customProperties": {}, + "name": ".sales_schema.stored_procedures" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.sales_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Procedures Container" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.sales_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.sales_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.sales_schema.stored_procedures,PROD),GET_ORDER_TOTAL_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "dataJobInfo", + "aspect": { + "json": { + "customProperties": { + "object_type": "FUNCTION", + "status": "VALID", + "upstream_dependencies": "SYS.STANDARD (PACKAGE), SYS.SYS_STUB_FOR_PURITY_ANALYSIS (PACKAGE), SALES_SCHEMA.ORDER_ITEMS (TABLE)" + }, + "name": "GET_ORDER_TOTAL", + "type": { + "string": "Stored Procedure" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.sales_schema.stored_procedures,PROD),GET_ORDER_TOTAL_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Stored Procedure" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.sales_schema.stored_procedures,PROD),GET_ORDER_TOTAL_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:85df9745bc7f810e0552bf34641e36b7" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.sales_schema.stored_procedures,PROD),GET_ORDER_TOTAL_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "dataTransformLogic", + "aspect": { + "json": { + "transforms": [ + { + "queryStatement": { + "value": "FUNCTION get_order_total(p_order_id IN NUMBER) RETURN NUMBER AS\n v_total NUMBER := 0;\nBEGIN\n SELECT SUM(unit_price * quantity) INTO v_total\n FROM order_items\n WHERE order_id = p_order_id;\n\n RETURN NVL(v_total, 0);\nEND;", + "language": "SQL" + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.sales_schema.stored_procedures,PROD),GET_ORDER_TOTAL_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "dataJobInputOutput", + "aspect": { + "json": { + "inputDatasets": [ + "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_items,PROD)" + ], + "outputDatasets": [ + "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.v_total,PROD)" + ], + "fineGrainedLineages": [ + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_items,PROD),quantity)", + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_items,PROD),unit_price)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.v_total,PROD),sum%28\"order_items\".\"unit_price\" * \"order_items\".\"quantity\"%29)" + ], + "transformOperation": "SQL: SUM(\"ORDER_ITEMS\".\"UNIT_PRICE\" * \"ORDER_ITEMS\".\"QUANTITY\") AS \"_col_0\"", + "confidenceScore": 0.35 + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.sales_schema.stored_procedures,PROD),GET_ORDER_TOTAL_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:85df9745bc7f810e0552bf34641e36b7", + "urn": "urn:li:container:85df9745bc7f810e0552bf34641e36b7" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.sales_schema.stored_procedures,PROD),PROCESS_ORDER_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "dataJobInfo", + "aspect": { + "json": { + "customProperties": { + "object_type": "PROCEDURE", + "status": "VALID", + "upstream_dependencies": "SYS.STANDARD (PACKAGE), SYS.SYS_STUB_FOR_PURITY_ANALYSIS (PACKAGE), HR_SCHEMA.EMPLOYEES (TABLE), SALES_SCHEMA.ORDERS (TABLE)" + }, + "name": "PROCESS_ORDER", + "type": { + "string": "Stored Procedure" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.sales_schema.stored_procedures,PROD),PROCESS_ORDER_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Stored Procedure" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.sales_schema.stored_procedures,PROD),PROCESS_ORDER_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:85df9745bc7f810e0552bf34641e36b7" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.sales_schema.stored_procedures,PROD),PROCESS_ORDER_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "dataTransformLogic", + "aspect": { + "json": { + "transforms": [ + { + "queryStatement": { + "value": "PROCEDURE process_order(p_order_id IN NUMBER) AS\n v_sales_rep_id NUMBER;\n v_emp_name VARCHAR2(50);\nBEGIN\n -- Get sales rep info from HR schema\n SELECT o.sales_rep_id INTO v_sales_rep_id\n FROM orders o\n WHERE o.order_id = p_order_id;\n\n -- Get employee name from HR schema (creates dependency)\n SELECT first_name || ' ' || last_name INTO v_emp_name\n FROM hr_schema.employees\n WHERE employee_id = v_sales_rep_id;\n\n -- Update order status\n UPDATE orders\n SET order_status = 'PROCESSED'\n WHERE order_id = p_order_id;\n\n -- Log processing (this would create dependency on a log table if it existed)\n NULL; -- Placeholder for logging logic\nEND;", + "language": "SQL" + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.sales_schema.stored_procedures,PROD),PROCESS_ORDER_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "dataJobInputOutput", + "aspect": { + "json": { + "inputDatasets": [ + "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD)", + "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD)" + ], + "outputDatasets": [ + "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD)", + "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.v_emp_name,PROD)", + "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.v_sales_rep_id,PROD)" + ], + "fineGrainedLineages": [ + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD),first_name)", + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD),last_name)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.v_emp_name,PROD),\"employees\".\"first_name\" || ' ' || \"employees\".\"last_name\")" + ], + "transformOperation": "SQL: \"EMPLOYEES\".\"FIRST_NAME\" || ' ' || \"EMPLOYEES\".\"LAST_NAME\" AS \"_col_0\"", + "confidenceScore": 0.35 + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD),sales_rep_id)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.v_sales_rep_id,PROD),sales_rep_id)" + ], + "transformOperation": "COPY: \"O\".\"SALES_REP_ID\" AS \"SALES_REP_ID\"", + "confidenceScore": 0.35 + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.sales_schema.stored_procedures,PROD),PROCESS_ORDER_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:85df9745bc7f810e0552bf34641e36b7", + "urn": "urn:li:container:85df9745bc7f810e0552bf34641e36b7" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "changeType": "UPSERT", + "aspectName": "containerProperties", + "aspect": { + "json": { + "customProperties": { + "platform": "oracle", + "env": "PROD", + "database": "", + "schema": "system" + }, + "name": "system", + "env": "PROD" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "changeType": "UPSERT", + "aspectName": "dataPlatformInstance", + "aspect": { + "json": { + "platform": "urn:li:dataPlatform:oracle" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Schema" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_dictstate$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_dictstate$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_dictstate$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_dictstate$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "start_scnbas", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scnwrp", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "end_scnbas", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "end_scnwrp", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "redo_thread", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "rbasqn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "rbablk", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "rbabyte", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_dictstate$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_dictstate$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gtlo,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gtlo,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_gtlo", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_gtlo", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "KEYOBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "lvlcnt", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "BASEOBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "BASEOBJV#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "LVL1OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "LVL2OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "LVL0TYPE#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "LVL1TYPE#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "LVL2TYPE#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OWNER#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ownername", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "lvl0name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "lvl1name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "lvl2name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "intcols", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "cols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "kernelcols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "tab_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "trigflag", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ASSOC#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "obj_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TS#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "tsname", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(90 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "property", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scn", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "drop_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xidusn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xidslt", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xidsqn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(1000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare4", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare5", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare6", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare7", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare8", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare9", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "parttype", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "subparttype", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "unsupportedcols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "complextypecols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ntparentobjnum", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ntparentobjversion", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ntparentintcolnum", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnrtloflags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnrmcv", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(30 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "acdrflags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ACDRTSOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ACDRROWTSINTCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gtlo,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gtlo,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gtcs,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gtcs,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_gtcs", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_gtcs", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "OBJV#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "SEGCOL#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INTCOL#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "colname", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TYPE#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "length", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "precision", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "scale", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "interval_leading_precision", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "interval_trailing_precision", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "property", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "toid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "charsetid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "charsetform", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "typename", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "fqcolname", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "numintcols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "numattrs", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "adtorder", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(1000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare4", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare5", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare6", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare7", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare8", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare9", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "COL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xtypeschemaname", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xtypename", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xfqcolname", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xtopintcol", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xreffedtableobjn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xreffedtableobjv", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xcoltypeflags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xopqtypetype", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xopqtypeflags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xopqlobintcol", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xopqobjintcol", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xxmlintcol", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "EAOWNER#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "eamkeyid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(192 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "eaencalg", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "eaintalg", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "eacolklc", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "eaklclen", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "eaflags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnrderivedflags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "collid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "COLLINTCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ACDRRESCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gtcs,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gtcs,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_seq_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_seq_gg,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_seq_gg", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_seq_gg", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "commit_scn", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "drop_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "seq_flags", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OWNER#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ownername", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "objname", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "seqcache", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "seqinc", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare4", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_seq_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_seq_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_con_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_con_gg,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_con_gg", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_con_gg", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "CON#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "commit_scn", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "drop_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "BASEOBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "BASEOBJV#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "flags", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INDEXOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare4", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare5", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare6", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_con_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_con_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_concol_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_concol_gg,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_concol_gg", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_concol_gg", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "CON#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "commit_scn", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "INTCOL#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "POS#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_concol_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_concol_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_ind_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_ind_gg,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_ind_gg", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_ind_gg", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "commit_scn", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "drop_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "BASEOBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "BASEOBJV#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "flags", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OWNER#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ownername", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare4", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare5", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare6", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_ind_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_ind_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_indcol_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_indcol_gg,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_indcol_gg", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_indcol_gg", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "commit_scn", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "INTCOL#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "POS#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_indcol_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_indcol_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_shard_ts,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_shard_ts,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_shard_ts", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_shard_ts", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "tablespace_name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(90 CHAR)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "chunk_number", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scn", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "drop_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_shard_ts,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_shard_ts,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_tspart,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_tspart,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_tspart", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_tspart", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "TS#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scn", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "drop_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_tspart,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_tspart,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_ts,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_ts,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_ts", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_ts", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "TS#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(90 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scn", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "drop_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_ts,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_ts,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gsii,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gsii,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_gsii", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_gsii", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "BO#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INDTYPE#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "drop_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(1000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare4", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gsii,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gsii,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gsba,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gsba,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_gsba", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_gsba", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "as_of_scn", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "fdo_length", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "fdo_value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "charsetid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ncharsetid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "dbtimezone_len", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "dbtimezone_value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(192 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(1000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare4", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_global_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gsba,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gsba,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_user,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_user,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_user", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_user", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "USER#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scn", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "drop_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1_c", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2_c", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3_c", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_user,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_user,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_seed$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_seed$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_seed$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_seed$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "seed_version", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "gather_version", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "schemaname", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "OBJV#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "table_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "col_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "COL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INTCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "SEGCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TYPE#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "length", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "PRECISION#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "scale", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "null$", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_seed$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_seed$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_dictionary$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_dictionary$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_dictionary$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_dictionary$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "db_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(27 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_id", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(20, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_created", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(20 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_dict_created", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(20 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_dict_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_thread_map", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_txn_scnbas", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_txn_scnwrp", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "DB_RESETLOGS_CHANGE#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_resetlogs_time", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(20 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_version_time", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(20 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_redo_type_id", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(8 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_redo_release", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(60 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_character_set", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(192 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_version", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(240 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_status", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(240 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_global_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_dict_maxobjects", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_dict_objectcount", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "pdb_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "pdb_id", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "pdb_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "pdb_dbid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "pdb_guid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "pdb_create_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "pdb_count", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "pdb_global_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "FED_ROOT_CON_ID#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_dictionary$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_dictionary$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_obj$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_obj$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_obj$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_obj$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OBJV#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OWNER#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "namespace", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "subname", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TYPE#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "oid$", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "remoteowner", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "linkname", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "stime", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scnbas", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scnwrp", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_obj$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_obj$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tab$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tab$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_tab$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_tab$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "TS#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "cols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "property", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "intcols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "kernelcols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "BOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "trigflag", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "acdrflags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ACDRTSOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ACDRROWTSINTCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tab$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tab$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_col$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_col$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_col$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_col$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "COL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "SEGCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TYPE#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "length", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "PRECISION#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "scale", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "null$", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INTCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "property", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "charsetid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "charsetform", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "collid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "COLLINTCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ACDRRESCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_col$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_col$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_attrcol$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_attrcol$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_attrcol$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_attrcol$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "INTCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_attrcol$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_attrcol$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ts$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ts$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_ts$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_ts$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "TS#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(90 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OWNER#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "blocksize", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scnbas", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scnwrp", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ts$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ts$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ind$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ind$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_ind$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_ind$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "BO#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "cols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TYPE#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "property", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ind$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ind$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_user$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_user$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_user$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_user$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "USER#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_user$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_user$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tabpart$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tabpart$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_tabpart$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_tabpart$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "TS#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "PART#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "BO#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tabpart$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tabpart$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tabsubpart$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tabsubpart$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_tabsubpart$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_tabsubpart$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "DATAOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "POBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "SUBPART#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TS#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tabsubpart$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tabsubpart$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tabcompart$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tabcompart$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_tabcompart$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_tabcompart$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "BO#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "PART#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tabcompart$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tabcompart$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_type$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_type$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_type$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_type$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "VERSION#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "version", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "tvoid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "typecode", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "properties", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "attributes", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "methods", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "hiddenmethods", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "supertypes", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "subtypes", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "externtype", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "externname", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "helperclassname", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "local_attrs", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "local_methods", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "typeid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "roottoid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "supertoid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "hashcode", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "toid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_type$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_type$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_coltype$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_coltype$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_coltype$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_coltype$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "COL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INTCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "toid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "VERSION#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "packed", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "intcols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INTCOL#S", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TYPIDCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "SYNOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_coltype$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_coltype$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_attribute$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_attribute$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_attribute$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_attribute$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "VERSION#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ATTRIBUTE#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "attr_toid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ATTR_VERSION#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "SYNOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "properties", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "charsetid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "charsetform", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "length", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "PRECISION#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "scale", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "externname", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xflags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare4", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare5", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "setter", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "getter", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "toid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_attribute$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_attribute$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_lob$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_lob$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_lob$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_lob$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "INTCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "COL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "LOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "chunk", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_lob$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_lob$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_con$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_con$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_con$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_con$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OWNER#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "CON#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scnbas", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scnwrp", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_con$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_con$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_container$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_container$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_container$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_container$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "CON_ID#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "dbid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "con_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "create_scnwrp", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "create_scnbas", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "status", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "vsn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "FED_ROOT_CON_ID#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_container$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_container$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_cdef$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_cdef$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_cdef$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_cdef$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "CON#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "cols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TYPE#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ROBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "RCON#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "enabled", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "defer", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_cdef$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_cdef$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ccol$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ccol$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_ccol$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_ccol$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "CON#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "COL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "POS#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INTCOL#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ccol$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ccol$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_icol$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_icol$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_icol$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_icol$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "BO#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "COL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "POS#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "SEGCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INTCOL#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_icol$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_icol$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_lobfrag$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_lobfrag$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_lobfrag$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_lobfrag$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "FRAGOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "PARENTOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TABFRAGOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INDFRAGOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "FRAG#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_lobfrag$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_lobfrag$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_indpart$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_indpart$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_indpart$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_indpart$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "BO#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "PART#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TS#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_indpart$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_indpart$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_indsubpart$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_indsubpart$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_indsubpart$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_indsubpart$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "DATAOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "POBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "SUBPART#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TS#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_indsubpart$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_indsubpart$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_indcompart$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_indcompart$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_indcompart$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_indcompart$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "DATAOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "BO#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "PART#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_indcompart$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_indcompart$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_logmnr_buildlog,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_logmnr_buildlog,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_logmnr_buildlog", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_logmnr_buildlog", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "build_date", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(20 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_txn_scnbas", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_txn_scnwrp", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "current_build_state", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "completion_status", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "marked_log_file_low_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "initial_xid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(22 CHAR)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "cdb_xid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(22 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_logmnr_buildlog,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_logmnr_buildlog,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ntab$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ntab$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_ntab$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_ntab$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "COL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INTCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "NTAB#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ntab$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ntab$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_opqtype$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_opqtype$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_opqtype$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_opqtype$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "INTCOL#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "type", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "lobcol", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "objcol", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "extracol", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "schemaoid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "elemnum", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "schemaurl", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_opqtype$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_opqtype$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_subcoltype$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_subcoltype$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_subcoltype$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_subcoltype$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "INTCOL#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "toid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "VERSION#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "intcols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INTCOL#S", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "SYNOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_subcoltype$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_subcoltype$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_kopm$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_kopm$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_kopm$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_kopm$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "length", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "metadata", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_kopm$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_kopm$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_props$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_props$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_props$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_props$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "value$", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "comment$", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_props$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_props$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_enc$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_enc$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_enc$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_enc$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "OWNER#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "encalg", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "intalg", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "colklc", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "klclen", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "flag", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "mkeyid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(192 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_enc$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_enc$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_refcon$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_refcon$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_refcon$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_refcon$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "COL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INTCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "reftyp", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "stabid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "expctoid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_refcon$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_refcon$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_idnseq$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_idnseq$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_idnseq$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_idnseq$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "INTCOL#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "SEQOBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "startwith", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_idnseq$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_idnseq$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_partobj$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_partobj$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_partobj$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_partobj$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "parttype", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "partcnt", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "partkeycols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "DEFTS#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "defpctfree", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "defpctused", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "defpctthres", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "definitrans", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "defmaxtrans", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "deftiniexts", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "defextsize", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "defminexts", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "defmaxexts", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "defextpct", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "deflists", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "defgroups", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "deflogging", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "definclcol", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "parameters", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(3000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_partobj$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_partobj$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrp_ctas_part_map,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrp_ctas_part_map,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrp_ctas_part_map", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrp_ctas_part_map", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "BASEOBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "BASEOBJV#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "KEYOBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "PART#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(1000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrp_ctas_part_map,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrp_ctas_part_map,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_shard_ts,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_shard_ts,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_shard_ts", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_shard_ts", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "tablespace_name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(90 CHAR)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "chunk_number", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scnbas", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scnwrp", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_shard_ts,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_shard_ts,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logstdby$apply_progress,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logstdby$apply_progress,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logstdby$apply_progress", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logstdby$apply_progress", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "xidusn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xidslt", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xidsqn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "commit_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "commit_time", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(2000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logstdby$apply_progress,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logstdby$apply_progress,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_workload,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_workload,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "" + }, + "name": "mview_workload", + "description": "This view gives DBA access to shared workload", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.mview_workload", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "workloadid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "import_time", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "queryid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "application", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "cardinality", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "resultsize", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "lastuse", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "frequency", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "owner", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "priority", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "query", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "LONG", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "responsetime", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_workload,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_workload,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_workload,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_filter,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_filter,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "" + }, + "name": "mview_filter", + "description": "Workload filter records", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.mview_filter", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "filterid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "subfilternum", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "subfiltertype", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(12 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "str_value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(1028 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "num_value1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "num_value2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "date_value1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "date_value2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_filter,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_filter,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_filter,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_log,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_log,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "" + }, + "name": "mview_log", + "description": "Advisor session log", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.mview_log", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "id", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "filterid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "run_begin", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "run_end", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "type", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(11 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "status", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(11 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "message", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(2000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "completed", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "total", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "error_code", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(20 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_log,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_log,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_log,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_filterinstance,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_filterinstance,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "" + }, + "name": "mview_filterinstance", + "description": "Workload filter instance records", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.mview_filterinstance", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "runid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "filterid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "subfilternum", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "subfiltertype", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(12 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "str_value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(1028 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "num_value1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "num_value2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "date_value1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "date_value2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_filterinstance,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_filterinstance,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_filterinstance,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_recommendations,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_recommendations,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "" + }, + "name": "mview_recommendations", + "description": "This view gives DBA access to summary recommendations", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.mview_recommendations", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "runid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "all_tables", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(2000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "fact_tables", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(1000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "grouping_levels", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(2000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "query_text", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "LONG", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "recommendation_number", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "recommended_action", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(6 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "mview_owner", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "mview_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "storage_in_bytes", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "pct_performance_gain", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "benefit_to_cost_ratio", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_recommendations,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_recommendations,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_recommendations,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_evaluations,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_evaluations,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "" + }, + "name": "mview_evaluations", + "description": "This view gives DBA access to summary evaluation output", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.mview_evaluations", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "runid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "mview_owner", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "mview_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "rank", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "storage_in_bytes", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "frequency", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "cumulative_benefit", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "benefit_to_cost_ratio", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_evaluations,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_evaluations,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_evaluations,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_exceptions,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_exceptions,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "" + }, + "name": "mview_exceptions", + "description": "This view gives DBA access to dimension validation results", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.mview_exceptions", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "runid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "owner", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "table_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "dimension_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "relationship", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(11 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "bad_rowid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NullType": {} + } + }, + "nativeDataType": "null", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_exceptions,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_exceptions,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_exceptions,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.scheduler_program_args,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.scheduler_program_args,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "" + }, + "name": "scheduler_program_args", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.scheduler_program_args", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "owner", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "program_name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "argument_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "argument_position", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "argument_type", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(257 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "metadata_attribute", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(19 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "default_value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "default_anydata_value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NullType": {} + } + }, + "nativeDataType": "null", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "out_argument", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(5 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.scheduler_program_args,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.scheduler_program_args,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.scheduler_program_args,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.scheduler_job_args,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.scheduler_job_args,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "" + }, + "name": "scheduler_job_args", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.scheduler_job_args", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "owner", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "job_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "argument_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "argument_position", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "argument_type", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(257 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "anydata_value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NullType": {} + } + }, + "nativeDataType": "null", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "out_argument", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(5 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.scheduler_job_args,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.scheduler_job_args,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.scheduler_job_args,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "SELECT PRODUCT, USERID, ATTRIBUTE, SCOPE,\n NUMERIC_VALUE, CHAR_VALUE, DATE_VALUE, LONG_VALUE\n FROM SQLPLUS_PRODUCT_PROFILE\n WHERE USERID = 'PUBLIC' OR\n USERID LIKE SYS_CONTEXT('USERENV','CURRENT_USER')" + }, + "name": "product_privs", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.product_privs", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "product", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(30 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "userid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "attribute", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(240 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "scope", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(240 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "numeric_value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(15, 2)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "char_value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(240 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "date_value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "long_value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "LONG", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "SELECT PRODUCT, USERID, ATTRIBUTE, SCOPE,\n NUMERIC_VALUE, CHAR_VALUE, DATE_VALUE, LONG_VALUE\n FROM SQLPLUS_PRODUCT_PROFILE\n WHERE USERID = 'PUBLIC' OR\n USERID LIKE SYS_CONTEXT('USERENV','CURRENT_USER')", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.system.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "dataFlowInfo", + "aspect": { + "json": { + "customProperties": {}, + "name": ".system.stored_procedures" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.system.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Procedures Container" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.system.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.system.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$COL_GG_TABF_PUBLIC_ef2341af0dcac8651a66e2477d17845f)", + "changeType": "UPSERT", + "aspectName": "dataJobInfo", + "aspect": { + "json": { + "customProperties": { + "object_type": "FUNCTION", + "status": "VALID", + "upstream_dependencies": "SYS.LOGMNR_DICT_CACHE (PACKAGE), SYS.STANDARD (PACKAGE), SYS.SYS_STUB_FOR_PURITY_ANALYSIS (PACKAGE), PUBLIC.PLITBLM (SYNONYM)" + }, + "name": "LOGMNR$COL_GG_TABF_PUBLIC", + "type": { + "string": "Stored Procedure" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$COL_GG_TABF_PUBLIC_ef2341af0dcac8651a66e2477d17845f)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Stored Procedure" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$COL_GG_TABF_PUBLIC_ef2341af0dcac8651a66e2477d17845f)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$COL_GG_TABF_PUBLIC_ef2341af0dcac8651a66e2477d17845f)", + "changeType": "UPSERT", + "aspectName": "dataTransformLogic", + "aspect": { + "json": { + "transforms": [ + { + "queryStatement": { + "value": "FUNCTION LOGMNR$COL_GG_TABF_PUBLIC wrapped\na000000\n1\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\n8\n237 185\nnkvJV1w6wH1y7mRApzf9mGuebNUwgxDILkhGfHQCmP8+Vi4fyqh3SG1Fyq+pCts1OlgnK761\nYuzKBA4JE5DNwZzBIF/Y4ZM5eUlquVyTkOg+AodK3vQJt9NLvPITXbP42O37gO+zKr4BQEJk\nypwrP1U/Pf6MLZONN8LUaVqHCN87T14HqHs5taX7LhLXQ2lCVBE1Ll8dyB9CDOlbyvQS/lrb\n+0n1pQi9IJAWySL85ChAqnTaqFJm0YeToD4lZ8UUPQqIZNoX0x73WK9OzsmdBrvEC97iduxe\nPEXVkxF6xklPod6yOGBvW7DAFMBgf+LajDLVKOAwB2EAiKCXYMuTUTtMYYkCFFf4sj1rCpsj\nTLth6TSru530aM2HP6bEbm3m\n", + "language": "SQL" + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$COL_GG_TABF_PUBLIC_ef2341af0dcac8651a66e2477d17845f)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$GSBA_GG_TABF_PUBLIC_5d2d46c2c96d70c5e0c9ceee5faa26d1)", + "changeType": "UPSERT", + "aspectName": "dataJobInfo", + "aspect": { + "json": { + "customProperties": { + "object_type": "FUNCTION", + "status": "VALID", + "upstream_dependencies": "SYS.LOGMNR_DICT_CACHE (PACKAGE), SYS.STANDARD (PACKAGE), SYS.SYS_STUB_FOR_PURITY_ANALYSIS (PACKAGE), PUBLIC.PLITBLM (SYNONYM)" + }, + "name": "LOGMNR$GSBA_GG_TABF_PUBLIC", + "type": { + "string": "Stored Procedure" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$GSBA_GG_TABF_PUBLIC_5d2d46c2c96d70c5e0c9ceee5faa26d1)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Stored Procedure" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$GSBA_GG_TABF_PUBLIC_5d2d46c2c96d70c5e0c9ceee5faa26d1)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$GSBA_GG_TABF_PUBLIC_5d2d46c2c96d70c5e0c9ceee5faa26d1)", + "changeType": "UPSERT", + "aspectName": "dataTransformLogic", + "aspect": { + "json": { + "transforms": [ + { + "queryStatement": { + "value": "FUNCTION LOGMNR$GSBA_GG_TABF_PUBLIC wrapped\na000000\n1\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\n8\n206 171\n6gxi/CQwK1I5Rfwuw/SXrOGpVRYwgwLI1yfbfHRGEjNe54OE4QwRZCoA20oG536tzgcBrj+1\nxE3tE8jIhAoTlUdUmkdYMmZycO1SdiJZwwt/6BrM1wHXl/E5+3Ip2NXzC9j8v4+KjkD9d5AT\np05eEsEWjU1CBTMSpjZZrXzbgFl9QNnQ+zJGjSug21f76ajs78m6anxz7vFcTcem6XpAgKjc\nEXzd/ijP8qiOqwblTfnXcRslJn3MljD02u+5fh9NBctOmnaw/tOjRCFPUhY8I9gCoMptjG7U\nrHEIFzHOFyxBEdulRGq4ngSgcm7l2yOdSHgNM8rO2vUH4gozvJoLE1S8GBBzG/wrvHPhACQ/\n2w==\n", + "language": "SQL" + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$GSBA_GG_TABF_PUBLIC_5d2d46c2c96d70c5e0c9ceee5faa26d1)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$KEY_GG_TABF_PUBLIC_77a58b36bdddafb91baa24311fe59af7)", + "changeType": "UPSERT", + "aspectName": "dataJobInfo", + "aspect": { + "json": { + "customProperties": { + "object_type": "FUNCTION", + "status": "VALID", + "upstream_dependencies": "SYS.LOGMNR_DICT_CACHE (PACKAGE), SYS.STANDARD (PACKAGE), SYS.SYS_STUB_FOR_PURITY_ANALYSIS (PACKAGE), PUBLIC.PLITBLM (SYNONYM)" + }, + "name": "LOGMNR$KEY_GG_TABF_PUBLIC", + "type": { + "string": "Stored Procedure" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$KEY_GG_TABF_PUBLIC_77a58b36bdddafb91baa24311fe59af7)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Stored Procedure" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$KEY_GG_TABF_PUBLIC_77a58b36bdddafb91baa24311fe59af7)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$KEY_GG_TABF_PUBLIC_77a58b36bdddafb91baa24311fe59af7)", + "changeType": "UPSERT", + "aspectName": "dataTransformLogic", + "aspect": { + "json": { + "transforms": [ + { + "queryStatement": { + "value": "FUNCTION LOGMNR$KEY_GG_TABF_PUBLIC wrapped\na000000\n1\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\n8\n2a0 1a1\n3O4I5hDO715d8A2tqbxMCflFW0owg/D319xqfC9Grfg+K6yE71zMvtNS45AyRXBk77WpI5v4\nnUSfE2lbvUYgk3JHySIe28XxC3xIYYpPGQjxwa3GzPw0FN5aN6kerQQTHUBp29Dd+vLSgBaC\n2pAFrq059ZvN0ZPN11XG/2RuDY7HaTQu/QffhnY8rVlNxpFmbkVidwtZQahx5qIFu9Uww/tv\no1AvhjaORi898/KiPtOqv7LpsPFbyNuMnZEG48cxtZuesMBJFP/bKtgU2DN69xiT8Pxf+N2n\ng0D2ximYzZqwY/4dBQj9dyQDuXRFo40hdqtWw0L96zV6723aQ8Xp0cqBaZj2wWTI4+6Ikry9\nzY0Mdm3bV8TYqsOa+zT4fnikGO0eYbTFHEiW9QUbl/UwzuERwk8p\n", + "language": "SQL" + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$KEY_GG_TABF_PUBLIC_77a58b36bdddafb91baa24311fe59af7)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$SEQ_GG_TABF_PUBLIC_9ae1b2cd87934dcb4bda65f8828fab9f)", + "changeType": "UPSERT", + "aspectName": "dataJobInfo", + "aspect": { + "json": { + "customProperties": { + "object_type": "FUNCTION", + "status": "VALID", + "upstream_dependencies": "SYS.LOGMNR_DICT_CACHE (PACKAGE), SYS.STANDARD (PACKAGE), SYS.SYS_STUB_FOR_PURITY_ANALYSIS (PACKAGE), PUBLIC.PLITBLM (SYNONYM)" + }, + "name": "LOGMNR$SEQ_GG_TABF_PUBLIC", + "type": { + "string": "Stored Procedure" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$SEQ_GG_TABF_PUBLIC_9ae1b2cd87934dcb4bda65f8828fab9f)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Stored Procedure" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$SEQ_GG_TABF_PUBLIC_9ae1b2cd87934dcb4bda65f8828fab9f)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$SEQ_GG_TABF_PUBLIC_9ae1b2cd87934dcb4bda65f8828fab9f)", + "changeType": "UPSERT", + "aspectName": "dataTransformLogic", + "aspect": { + "json": { + "transforms": [ + { + "queryStatement": { + "value": "FUNCTION LOGMNR$SEQ_GG_TABF_PUBLIC wrapped\na000000\n1\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\n8\n249 181\n++dDv/cHZatK7/vHG9lvR8DQCpYwg/D3AEhqfHQC2h6ONoOvOeHvTNX1S5GDyajM4j8vkSVz\nIMw+LbYS3goujprvmrB/LUpdBF8TVvjEqZpC7MCKPXWcGnTeL7ja8C2tcOdjOpRXkwL5NmPJ\nB0KqMvwepdiQDY7HUDQrBddQC1lBqHGEogWkwRJ3+2+jUC+Gpo5GTazIWS0V551NkSl3+h0W\nBhkPglLbvQDPzxWTnmu4ZuJIlTiNwTf1R0WxghyyKFjES9CJsCrGT8Fn7prlF4Mr5kx1YBGf\n5xaODtRnmVJgb65RlKbAN9+Xxf2QnQjKQL99RZAgsEwGVKNfx9lFKwHLGUwzjOxmIAXXYd/Z\n+L9osPQJjZYkNrD0pQ==\n", + "language": "SQL" + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$SEQ_GG_TABF_PUBLIC_9ae1b2cd87934dcb4bda65f8828fab9f)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$TAB_GG_TABF_PUBLIC_ef2341af0dcac8651a66e2477d17845f)", + "changeType": "UPSERT", + "aspectName": "dataJobInfo", + "aspect": { + "json": { + "customProperties": { + "object_type": "FUNCTION", + "status": "VALID", + "upstream_dependencies": "SYS.LOGMNR_DICT_CACHE (PACKAGE), SYS.STANDARD (PACKAGE), SYS.SYS_STUB_FOR_PURITY_ANALYSIS (PACKAGE), PUBLIC.PLITBLM (SYNONYM)" + }, + "name": "LOGMNR$TAB_GG_TABF_PUBLIC", + "type": { + "string": "Stored Procedure" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$TAB_GG_TABF_PUBLIC_ef2341af0dcac8651a66e2477d17845f)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Stored Procedure" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$TAB_GG_TABF_PUBLIC_ef2341af0dcac8651a66e2477d17845f)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$TAB_GG_TABF_PUBLIC_ef2341af0dcac8651a66e2477d17845f)", + "changeType": "UPSERT", + "aspectName": "dataTransformLogic", + "aspect": { + "json": { + "transforms": [ + { + "queryStatement": { + "value": "FUNCTION LOGMNR$TAB_GG_TABF_PUBLIC wrapped\na000000\n1\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\n8\n22e 181\nPRVt0FiLRPgjIhZlCZcQhnOHXQ4wgzJp2UhGfHSKrQ843hKm3gKD9swoFAS4jVcW0CsSl7W1\n6banVWdjktOVM18XyRjY4ZM5eRdquSp0ZdfHl3KJPBYqPi9LXIwum30Qh7ymgO+zTKj+R1N2\nnSs/TPnknfYLwcUdAfBryDQGEIMisMuE9XT5ix3sudhHa5tLJRjsBIDKlqL7zk2CH0C1NRAZ\nXrP7WgavVdNS3Yikz88VupZG21hTuAGspJBgCagmNWIwi9pgCIWP3rxF4p+uMps/ABEg+MBP\n6Iykm62kO6hWhVHJXkfKF/jrQFjYBTTzatr1VTcOXt/AFuagDR7isNtb//lnXh8TXyAFWyCT\nubv6GXL0aM0PP/t+DfSl\n", + "language": "SQL" + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$TAB_GG_TABF_PUBLIC_ef2341af0dcac8651a66e2477d17845f)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$USER_GG_TABF_PUBLIC_2296f4485fd114c2708254214ed8e953)", + "changeType": "UPSERT", + "aspectName": "dataJobInfo", + "aspect": { + "json": { + "customProperties": { + "object_type": "FUNCTION", + "status": "VALID", + "upstream_dependencies": "SYS.LOGMNR_DICT_CACHE (PACKAGE), SYS.STANDARD (PACKAGE), SYS.SYS_STUB_FOR_PURITY_ANALYSIS (PACKAGE), PUBLIC.PLITBLM (SYNONYM)" + }, + "name": "LOGMNR$USER_GG_TABF_PUBLIC", + "type": { + "string": "Stored Procedure" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$USER_GG_TABF_PUBLIC_2296f4485fd114c2708254214ed8e953)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Stored Procedure" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$USER_GG_TABF_PUBLIC_2296f4485fd114c2708254214ed8e953)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$USER_GG_TABF_PUBLIC_2296f4485fd114c2708254214ed8e953)", + "changeType": "UPSERT", + "aspectName": "dataTransformLogic", + "aspect": { + "json": { + "transforms": [ + { + "queryStatement": { + "value": "FUNCTION LOGMNR$USER_GG_TABF_PUBLIC wrapped\na000000\n1\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\n8\n272 191\nVc+i+Mga8m7/BSlvXl0J+GmParYwg/D319wCfC8CTE6Ot30G8QRR0WzR8ohw8Z/y6DuL4pL5\nIDjZApnCaZgeKa1OTjLj2B2tOYZg2ZuOAPKrxo7DeBqtn0Ahw0tubS36jP4xc+d2eQebdJMD\nc/U0JxdiAl0qIPzsltBjeoGAEsxUk0aubCMJmysgc2d8ojil6ixQ37D7RA0HWMkh27QdOuXF\nvSwuufDunMMT8Hue9dvy4vRXj+PhuyylJSukStsxyIb234EahCXyrjDlnzbC91eoU7v5sb4D\nOvtDmggQCEViyhFXwspP9P0dOObin8JENsDJeFZYr/oVAgSHa97LRKvNZgd+f//XHlpEAOP4\nrNm5mF0wTCABbb7tc5c7uo09M+79i7en8g==\n", + "language": "SQL" + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$USER_GG_TABF_PUBLIC_2296f4485fd114c2708254214ed8e953)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.test_mview,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.test_mview,PROD)", + "changeType": "UPSERT", + "aspectName": "datasetProperties", + "aspect": { + "json": { + "customProperties": { + "materialized_view_definition": "SELECT\n COUNT(*) AS total_schemas,\n 'Test Materialized View' AS description\nFROM all_users\nWHERE username LIKE '%SCHEMA%'" + }, + "name": "test_mview", + "tags": [] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.test_mview,PROD)", + "changeType": "UPSERT", + "aspectName": "schemaMetadata", + "aspect": { + "json": { + "schemaName": "system.test_mview", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.test_mview,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.test_mview,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": true, + "viewLogic": "SELECT\n COUNT(*) AS total_schemas,\n 'Test Materialized View' AS description\nFROM all_users\nWHERE username LIKE '%SCHEMA%'", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.test_mview,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,analytics_schema.simple_analytics,PROD)", + "changeType": "UPSERT", + "aspectName": "upstreamLineage", + "aspect": { + "json": { + "upstreams": [ + { + "auditStamp": { + "time": 1615443388097, + "actor": "urn:li:corpuser:_ingestion" + }, + "created": { + "time": 0, + "actor": "urn:li:corpuser:_ingestion" + }, + "dataset": "urn:li:dataset:(urn:li:dataPlatform:oracle,analytics_schema.dual,PROD)", + "type": "VIEW", + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Canalytics_schema.simple_analytics%2CPROD%29" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Canalytics_schema.simple_analytics%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "queryProperties", + "aspect": { + "json": { + "customProperties": {}, + "statement": { + "value": "SELECT\n SYSDATE AS refresh_date,\n 'Analytics Data' AS description,\n 1 AS record_count\nFROM DUAL", + "language": "SQL" + }, + "source": "SYSTEM", + "created": { + "time": 0, + "actor": "urn:li:corpuser:_ingestion" + }, + "lastModified": { + "time": 1761584190812, + "actor": "urn:li:corpuser:_ingestion" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Canalytics_schema.simple_analytics%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "querySubjects", + "aspect": { + "json": { + "subjects": [ + { + "entity": "urn:li:dataset:(urn:li:dataPlatform:oracle,analytics_schema.dual,PROD)" + }, + { + "entity": "urn:li:dataset:(urn:li:dataPlatform:oracle,analytics_schema.simple_analytics,PROD)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,analytics_schema.simple_analytics,PROD),refresh_date)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,analytics_schema.simple_analytics,PROD),description)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,analytics_schema.simple_analytics,PROD),record_count)" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Canalytics_schema.simple_analytics%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "dataPlatformInstance", + "aspect": { + "json": { + "platform": "urn:li:dataPlatform:oracle" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD)", + "changeType": "UPSERT", + "aspectName": "upstreamLineage", + "aspect": { + "json": { + "upstreams": [ + { + "auditStamp": { + "time": 1615443388097, + "actor": "urn:li:corpuser:_ingestion" + }, + "created": { + "time": 0, + "actor": "urn:li:corpuser:_ingestion" + }, + "dataset": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD)", + "type": "VIEW", + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Chr_schema.employee_summary%2CPROD%29" + } + ], + "fineGrainedLineages": [ + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD),department_id)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD),department_id)" + ], + "transformOperation": "COPY: \"EMPLOYEES\".\"DEPARTMENT_ID\" AS \"DEPARTMENT_ID\"", + "confidenceScore": 0.9, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Chr_schema.employee_summary%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD),salary)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD),avg_salary)" + ], + "transformOperation": "SQL: AVG(\"EMPLOYEES\".\"SALARY\") AS \"AVG_SALARY\"", + "confidenceScore": 0.9, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Chr_schema.employee_summary%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD),salary)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD),max_salary)" + ], + "transformOperation": "SQL: MAX(\"EMPLOYEES\".\"SALARY\") AS \"MAX_SALARY\"", + "confidenceScore": 0.9, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Chr_schema.employee_summary%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD),salary)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD),min_salary)" + ], + "transformOperation": "SQL: MIN(\"EMPLOYEES\".\"SALARY\") AS \"MIN_SALARY\"", + "confidenceScore": 0.9, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Chr_schema.employee_summary%2CPROD%29" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Chr_schema.employee_summary%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "queryProperties", + "aspect": { + "json": { + "customProperties": {}, + "statement": { + "value": "SELECT\n department_id,\n COUNT(*) AS employee_count,\n AVG(salary) AS avg_salary,\n MAX(salary) AS max_salary,\n MIN(salary) AS min_salary\nFROM employees\nGROUP BY\n department_id", + "language": "SQL" + }, + "source": "SYSTEM", + "created": { + "time": 0, + "actor": "urn:li:corpuser:_ingestion" + }, + "lastModified": { + "time": 1761584190815, + "actor": "urn:li:corpuser:_ingestion" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Chr_schema.employee_summary%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "querySubjects", + "aspect": { + "json": { + "subjects": [ + { + "entity": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD)" + }, + { + "entity": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD),department_id)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD),salary)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD),department_id)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD),employee_count)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD),avg_salary)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD),max_salary)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD),min_salary)" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Chr_schema.employee_summary%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "dataPlatformInstance", + "aspect": { + "json": { + "platform": "urn:li:dataPlatform:oracle" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD)", + "changeType": "UPSERT", + "aspectName": "upstreamLineage", + "aspect": { + "json": { + "upstreams": [ + { + "auditStamp": { + "time": 1615443388097, + "actor": "urn:li:corpuser:_ingestion" + }, + "created": { + "time": 0, + "actor": "urn:li:corpuser:_ingestion" + }, + "dataset": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD)", + "type": "VIEW", + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csales_schema.order_summary%2CPROD%29" + } + ], + "fineGrainedLineages": [ + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD),order_date)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD),order_month)" + ], + "transformOperation": "SQL: TO_CHAR(\"ORDERS\".\"ORDER_DATE\", 'YYYY-MM') AS \"ORDER_MONTH\"", + "confidenceScore": 0.9, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csales_schema.order_summary%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD),order_total)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD),total_revenue)" + ], + "transformOperation": "SQL: SUM(\"ORDERS\".\"ORDER_TOTAL\") AS \"TOTAL_REVENUE\"", + "confidenceScore": 0.9, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csales_schema.order_summary%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD),order_total)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD),avg_order_value)" + ], + "transformOperation": "SQL: AVG(\"ORDERS\".\"ORDER_TOTAL\") AS \"AVG_ORDER_VALUE\"", + "confidenceScore": 0.9, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csales_schema.order_summary%2CPROD%29" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csales_schema.order_summary%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "queryProperties", + "aspect": { + "json": { + "customProperties": {}, + "statement": { + "value": "SELECT\n TO_CHAR(order_date, 'YYYY-MM') AS order_month,\n COUNT(*) AS order_count,\n SUM(order_total) AS total_revenue,\n AVG(order_total) AS avg_order_value\nFROM orders\nGROUP BY\n TO_CHAR(order_date, 'YYYY-MM')", + "language": "SQL" + }, + "source": "SYSTEM", + "created": { + "time": 0, + "actor": "urn:li:corpuser:_ingestion" + }, + "lastModified": { + "time": 1761584190820, + "actor": "urn:li:corpuser:_ingestion" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csales_schema.order_summary%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "querySubjects", + "aspect": { + "json": { + "subjects": [ + { + "entity": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD)" + }, + { + "entity": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD),order_date)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD),order_total)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD),order_month)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD),order_count)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD),total_revenue)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD),avg_order_value)" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csales_schema.order_summary%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "dataPlatformInstance", + "aspect": { + "json": { + "platform": "urn:li:dataPlatform:oracle" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD)", + "changeType": "UPSERT", + "aspectName": "upstreamLineage", + "aspect": { + "json": { + "upstreams": [ + { + "auditStamp": { + "time": 1615443388097, + "actor": "urn:li:corpuser:_ingestion" + }, + "created": { + "time": 0, + "actor": "urn:li:corpuser:_ingestion" + }, + "dataset": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD)", + "type": "VIEW", + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29" + } + ], + "fineGrainedLineages": [ + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),product)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),product)" + ], + "transformOperation": "COPY: \"SQLPLUS_PRODUCT_PROFILE\".\"PRODUCT\" AS \"PRODUCT\"", + "confidenceScore": 0.2, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),userid)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),userid)" + ], + "transformOperation": "COPY: \"SQLPLUS_PRODUCT_PROFILE\".\"USERID\" AS \"USERID\"", + "confidenceScore": 0.2, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),attribute)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),attribute)" + ], + "transformOperation": "COPY: \"SQLPLUS_PRODUCT_PROFILE\".\"ATTRIBUTE\" AS \"ATTRIBUTE\"", + "confidenceScore": 0.2, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),scope)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),scope)" + ], + "transformOperation": "COPY: \"SQLPLUS_PRODUCT_PROFILE\".\"SCOPE\" AS \"SCOPE\"", + "confidenceScore": 0.2, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),numeric_value)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),numeric_value)" + ], + "transformOperation": "COPY: \"SQLPLUS_PRODUCT_PROFILE\".\"NUMERIC_VALUE\" AS \"NUMERIC_VALUE\"", + "confidenceScore": 0.2, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),char_value)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),char_value)" + ], + "transformOperation": "COPY: \"SQLPLUS_PRODUCT_PROFILE\".\"CHAR_VALUE\" AS \"CHAR_VALUE\"", + "confidenceScore": 0.2, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),date_value)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),date_value)" + ], + "transformOperation": "COPY: \"SQLPLUS_PRODUCT_PROFILE\".\"DATE_VALUE\" AS \"DATE_VALUE\"", + "confidenceScore": 0.2, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),long_value)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),long_value)" + ], + "transformOperation": "COPY: \"SQLPLUS_PRODUCT_PROFILE\".\"LONG_VALUE\" AS \"LONG_VALUE\"", + "confidenceScore": 0.2, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "queryProperties", + "aspect": { + "json": { + "customProperties": {}, + "statement": { + "value": "SELECT\n PRODUCT,\n USERID,\n ATTRIBUTE,\n SCOPE,\n NUMERIC_VALUE,\n CHAR_VALUE,\n DATE_VALUE,\n LONG_VALUE\nFROM SQLPLUS_PRODUCT_PROFILE\nWHERE\n USERID = 'PUBLIC' OR USERID LIKE SYS_CONTEXT('USERENV', 'CURRENT_USER')", + "language": "SQL" + }, + "source": "SYSTEM", + "created": { + "time": 0, + "actor": "urn:li:corpuser:_ingestion" + }, + "lastModified": { + "time": 1761584190824, + "actor": "urn:li:corpuser:_ingestion" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "querySubjects", + "aspect": { + "json": { + "subjects": [ + { + "entity": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD)" + }, + { + "entity": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),attribute)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),char_value)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),date_value)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),long_value)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),numeric_value)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),product)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),scope)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),userid)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),product)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),userid)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),attribute)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),scope)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),numeric_value)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),char_value)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),date_value)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),long_value)" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "dataPlatformInstance", + "aspect": { + "json": { + "platform": "urn:li:dataPlatform:oracle" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.test_mview,PROD)", + "changeType": "UPSERT", + "aspectName": "upstreamLineage", + "aspect": { + "json": { + "upstreams": [ + { + "auditStamp": { + "time": 1615443388097, + "actor": "urn:li:corpuser:_ingestion" + }, + "created": { + "time": 0, + "actor": "urn:li:corpuser:_ingestion" + }, + "dataset": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.all_users,PROD)", + "type": "VIEW", + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.test_mview%2CPROD%29" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.test_mview%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "queryProperties", + "aspect": { + "json": { + "customProperties": {}, + "statement": { + "value": "SELECT\n COUNT(*) AS total_schemas,\n 'Test Materialized View' AS description\nFROM all_users\nWHERE\n username LIKE '%SCHEMA%'", + "language": "SQL" + }, + "source": "SYSTEM", + "created": { + "time": 0, + "actor": "urn:li:corpuser:_ingestion" + }, + "lastModified": { + "time": 1761584190829, + "actor": "urn:li:corpuser:_ingestion" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.test_mview%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "querySubjects", + "aspect": { + "json": { + "subjects": [ + { + "entity": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.all_users,PROD)" + }, + { + "entity": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.test_mview,PROD)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.test_mview,PROD),total_schemas)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.test_mview,PROD),description)" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.test_mview%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "dataPlatformInstance", + "aspect": { + "json": { + "platform": "urn:li:dataPlatform:oracle" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.analytics_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.hr_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.sales_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.system.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.analytics_schema.stored_procedures,PROD),ANALYTICS_PKG)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.analytics_schema.stored_procedures,PROD),REFRESH_ANALYTICS_DATA)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.hr_schema.stored_procedures,PROD),CALCULATE_ANNUAL_SALARY_80fcded156e41b6f562fc1438f132bbb)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.hr_schema.stored_procedures,PROD),GET_EMPLOYEE_INFO_ae548124ee515a556f8cee0139839057)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.sales_schema.stored_procedures,PROD),GET_ORDER_TOTAL_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.sales_schema.stored_procedures,PROD),PROCESS_ORDER_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$COL_GG_TABF_PUBLIC_ef2341af0dcac8651a66e2477d17845f)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$GSBA_GG_TABF_PUBLIC_5d2d46c2c96d70c5e0c9ceee5faa26d1)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$KEY_GG_TABF_PUBLIC_77a58b36bdddafb91baa24311fe59af7)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$SEQ_GG_TABF_PUBLIC_9ae1b2cd87934dcb4bda65f8828fab9f)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$TAB_GG_TABF_PUBLIC_ef2341af0dcac8651a66e2477d17845f)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$USER_GG_TABF_PUBLIC_2296f4485fd114c2708254214ed8e953)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.test_mview,PROD)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Canalytics_schema.simple_analytics%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Chr_schema.employee_summary%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csales_schema.order_summary%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.test_mview%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastRunId": "no-run-id-provided" + } +} +] \ No newline at end of file diff --git a/metadata-ingestion/tests/integration/oracle/golden_files/golden_mces_oracle_to_file_with_dba_tables.json b/metadata-ingestion/tests/integration/oracle/golden_files/golden_mces_oracle_to_file_with_dba_tables.json new file mode 100644 index 00000000000000..20b4f043ed6f5a --- /dev/null +++ b/metadata-ingestion/tests/integration/oracle/golden_files/golden_mces_oracle_to_file_with_dba_tables.json @@ -0,0 +1,21912 @@ +[ +{ + "entityType": "container", + "entityUrn": "urn:li:container:01aab0d30e558697f8ead372760de946", + "changeType": "UPSERT", + "aspectName": "containerProperties", + "aspect": { + "json": { + "customProperties": { + "platform": "oracle", + "env": "PROD", + "database": "XEPDB1" + }, + "name": "XEPDB1", + "env": "PROD" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:01aab0d30e558697f8ead372760de946", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:01aab0d30e558697f8ead372760de946", + "changeType": "UPSERT", + "aspectName": "dataPlatformInstance", + "aspect": { + "json": { + "platform": "urn:li:dataPlatform:oracle" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:01aab0d30e558697f8ead372760de946", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Database" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:01aab0d30e558697f8ead372760de946", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:03b3e141e8f929cf3d550a96f5ce846a", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:01aab0d30e558697f8ead372760de946" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:03b3e141e8f929cf3d550a96f5ce846a", + "changeType": "UPSERT", + "aspectName": "containerProperties", + "aspect": { + "json": { + "customProperties": { + "platform": "oracle", + "env": "PROD", + "database": "XEPDB1", + "schema": "analytics_schema" + }, + "name": "analytics_schema", + "env": "PROD" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:03b3e141e8f929cf3d550a96f5ce846a", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:03b3e141e8f929cf3d550a96f5ce846a", + "changeType": "UPSERT", + "aspectName": "dataPlatformInstance", + "aspect": { + "json": { + "platform": "urn:li:dataPlatform:oracle" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:03b3e141e8f929cf3d550a96f5ce846a", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Schema" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:03b3e141e8f929cf3d550a96f5ce846a", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,analytics_schema.simple_analytics,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:03b3e141e8f929cf3d550a96f5ce846a" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,analytics_schema.simple_analytics,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "SELECT\n SYSDATE AS refresh_date,\n 'Analytics Data' AS description,\n 1 AS record_count\nFROM DUAL" + }, + "name": "simple_analytics", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "analytics_schema.simple_analytics", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "refresh_date", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "description", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "CHAR(14)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "record_count", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,analytics_schema.simple_analytics,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,analytics_schema.simple_analytics,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "SELECT\n SYSDATE AS refresh_date,\n 'Analytics Data' AS description,\n 1 AS record_count\nFROM DUAL", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,analytics_schema.simple_analytics,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:03b3e141e8f929cf3d550a96f5ce846a", + "urn": "urn:li:container:03b3e141e8f929cf3d550a96f5ce846a" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,XEPDB1.analytics_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "dataFlowInfo", + "aspect": { + "json": { + "customProperties": {}, + "name": "XEPDB1.analytics_schema.stored_procedures" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,XEPDB1.analytics_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Procedures Container" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,XEPDB1.analytics_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:01aab0d30e558697f8ead372760de946" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,XEPDB1.analytics_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.analytics_schema.stored_procedures,PROD),ANALYTICS_PKG)", + "changeType": "UPSERT", + "aspectName": "dataJobInfo", + "aspect": { + "json": { + "customProperties": { + "object_type": "PACKAGE", + "status": "VALID", + "upstream_dependencies": "SYS.STANDARD (PACKAGE)" + }, + "name": "ANALYTICS_PKG", + "type": { + "string": "Stored Procedure" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.analytics_schema.stored_procedures,PROD),ANALYTICS_PKG)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Stored Procedure" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.analytics_schema.stored_procedures,PROD),ANALYTICS_PKG)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:03b3e141e8f929cf3d550a96f5ce846a" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.analytics_schema.stored_procedures,PROD),ANALYTICS_PKG)", + "changeType": "UPSERT", + "aspectName": "dataTransformLogic", + "aspect": { + "json": { + "transforms": [ + { + "queryStatement": { + "value": "PACKAGE analytics_pkg AS\n PROCEDURE generate_sales_report(p_month IN VARCHAR2);\n FUNCTION calculate_commission(p_emp_id IN NUMBER, p_rate IN NUMBER) RETURN NUMBER;\nEND analytics_pkg;", + "language": "SQL" + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.analytics_schema.stored_procedures,PROD),ANALYTICS_PKG)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:03b3e141e8f929cf3d550a96f5ce846a", + "urn": "urn:li:container:03b3e141e8f929cf3d550a96f5ce846a" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.analytics_schema.stored_procedures,PROD),REFRESH_ANALYTICS_DATA)", + "changeType": "UPSERT", + "aspectName": "dataJobInfo", + "aspect": { + "json": { + "customProperties": { + "object_type": "PROCEDURE", + "status": "VALID", + "upstream_dependencies": "SYS.STANDARD (PACKAGE), SYS.SYS_STUB_FOR_PURITY_ANALYSIS (PACKAGE), PUBLIC.DBMS_MVIEW (SYNONYM)" + }, + "name": "REFRESH_ANALYTICS_DATA", + "type": { + "string": "Stored Procedure" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.analytics_schema.stored_procedures,PROD),REFRESH_ANALYTICS_DATA)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Stored Procedure" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.analytics_schema.stored_procedures,PROD),REFRESH_ANALYTICS_DATA)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:03b3e141e8f929cf3d550a96f5ce846a" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.analytics_schema.stored_procedures,PROD),REFRESH_ANALYTICS_DATA)", + "changeType": "UPSERT", + "aspectName": "dataTransformLogic", + "aspect": { + "json": { + "transforms": [ + { + "queryStatement": { + "value": "PROCEDURE refresh_analytics_data AS\nBEGIN\n -- Refresh materialized views (creates dependencies)\n DBMS_MVIEW.REFRESH('employee_sales_summary');\n DBMS_MVIEW.REFRESH('monthly_order_summary');\nEND;", + "language": "SQL" + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.analytics_schema.stored_procedures,PROD),REFRESH_ANALYTICS_DATA)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:03b3e141e8f929cf3d550a96f5ce846a", + "urn": "urn:li:container:03b3e141e8f929cf3d550a96f5ce846a" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:8bb9622920f2715fbef29e6492f9ce17", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:01aab0d30e558697f8ead372760de946" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:8bb9622920f2715fbef29e6492f9ce17", + "changeType": "UPSERT", + "aspectName": "containerProperties", + "aspect": { + "json": { + "customProperties": { + "platform": "oracle", + "env": "PROD", + "database": "XEPDB1", + "schema": "hr_schema" + }, + "name": "hr_schema", + "env": "PROD" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:8bb9622920f2715fbef29e6492f9ce17", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:8bb9622920f2715fbef29e6492f9ce17", + "changeType": "UPSERT", + "aspectName": "dataPlatformInstance", + "aspect": { + "json": { + "platform": "urn:li:dataPlatform:oracle" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:8bb9622920f2715fbef29e6492f9ce17", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Schema" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:8bb9622920f2715fbef29e6492f9ce17", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.departments,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:8bb9622920f2715fbef29e6492f9ce17" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.departments,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "departments", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "hr_schema.departments", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "department_id", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(4, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "department_name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(30 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "manager_id", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(6, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "location_id", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(4, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.departments,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.departments,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:8bb9622920f2715fbef29e6492f9ce17", + "urn": "urn:li:container:8bb9622920f2715fbef29e6492f9ce17" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:8bb9622920f2715fbef29e6492f9ce17" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "employees", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "hr_schema.employees", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "employee_id", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(6, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "first_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(20 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "last_name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(25 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "email", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(25 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "phone_number", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(20 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "hire_date", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "job_id", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(10 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "salary", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(8, 2)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "commission_pct", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(2, 2)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "manager_id", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(6, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "department_id", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(4, 0)", + "recursive": false, + "isPartOfKey": false + } + ], + "foreignKeys": [ + { + "name": "emp_dept_fk", + "foreignFields": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD),department_id)" + ], + "sourceFields": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD),department_id)" + ], + "foreignDataset": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD)" + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:8bb9622920f2715fbef29e6492f9ce17", + "urn": "urn:li:container:8bb9622920f2715fbef29e6492f9ce17" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:8bb9622920f2715fbef29e6492f9ce17" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "SELECT\n department_id,\n COUNT(*) AS employee_count,\n AVG(salary) AS avg_salary,\n MAX(salary) AS max_salary,\n MIN(salary) AS min_salary\nFROM employees\nGROUP BY department_id" + }, + "name": "employee_summary", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "hr_schema.employee_summary", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "department_id", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(4, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "employee_count", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "avg_salary", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "max_salary", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "min_salary", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "SELECT\n department_id,\n COUNT(*) AS employee_count,\n AVG(salary) AS avg_salary,\n MAX(salary) AS max_salary,\n MIN(salary) AS min_salary\nFROM employees\nGROUP BY department_id", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:8bb9622920f2715fbef29e6492f9ce17", + "urn": "urn:li:container:8bb9622920f2715fbef29e6492f9ce17" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,XEPDB1.hr_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "dataFlowInfo", + "aspect": { + "json": { + "customProperties": {}, + "name": "XEPDB1.hr_schema.stored_procedures" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,XEPDB1.hr_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Procedures Container" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,XEPDB1.hr_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:01aab0d30e558697f8ead372760de946" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,XEPDB1.hr_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.hr_schema.stored_procedures,PROD),CALCULATE_ANNUAL_SALARY_80fcded156e41b6f562fc1438f132bbb)", + "changeType": "UPSERT", + "aspectName": "dataJobInfo", + "aspect": { + "json": { + "customProperties": { + "object_type": "FUNCTION", + "status": "VALID", + "upstream_dependencies": "SYS.STANDARD (PACKAGE), SYS.SYS_STUB_FOR_PURITY_ANALYSIS (PACKAGE), HR_SCHEMA.EMPLOYEES (TABLE)" + }, + "name": "CALCULATE_ANNUAL_SALARY", + "type": { + "string": "Stored Procedure" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.hr_schema.stored_procedures,PROD),CALCULATE_ANNUAL_SALARY_80fcded156e41b6f562fc1438f132bbb)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Stored Procedure" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.hr_schema.stored_procedures,PROD),CALCULATE_ANNUAL_SALARY_80fcded156e41b6f562fc1438f132bbb)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:8bb9622920f2715fbef29e6492f9ce17" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.hr_schema.stored_procedures,PROD),CALCULATE_ANNUAL_SALARY_80fcded156e41b6f562fc1438f132bbb)", + "changeType": "UPSERT", + "aspectName": "dataTransformLogic", + "aspect": { + "json": { + "transforms": [ + { + "queryStatement": { + "value": "FUNCTION calculate_annual_salary(p_emp_id IN NUMBER) RETURN NUMBER AS\n v_salary NUMBER;\n v_commission NUMBER;\nBEGIN\n SELECT salary, NVL(commission_pct, 0) INTO v_salary, v_commission\n FROM employees\n WHERE employee_id = p_emp_id;\n\n RETURN v_salary * 12 * (1 + v_commission);\nEND;", + "language": "SQL" + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.hr_schema.stored_procedures,PROD),CALCULATE_ANNUAL_SALARY_80fcded156e41b6f562fc1438f132bbb)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:8bb9622920f2715fbef29e6492f9ce17", + "urn": "urn:li:container:8bb9622920f2715fbef29e6492f9ce17" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.hr_schema.stored_procedures,PROD),GET_EMPLOYEE_INFO_ae548124ee515a556f8cee0139839057)", + "changeType": "UPSERT", + "aspectName": "dataJobInfo", + "aspect": { + "json": { + "customProperties": { + "object_type": "PROCEDURE", + "status": "VALID", + "upstream_dependencies": "SYS.STANDARD (PACKAGE), SYS.SYS_STUB_FOR_PURITY_ANALYSIS (PACKAGE), HR_SCHEMA.DEPARTMENTS (TABLE), HR_SCHEMA.EMPLOYEES (TABLE)" + }, + "name": "GET_EMPLOYEE_INFO", + "type": { + "string": "Stored Procedure" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.hr_schema.stored_procedures,PROD),GET_EMPLOYEE_INFO_ae548124ee515a556f8cee0139839057)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Stored Procedure" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.hr_schema.stored_procedures,PROD),GET_EMPLOYEE_INFO_ae548124ee515a556f8cee0139839057)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:8bb9622920f2715fbef29e6492f9ce17" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.hr_schema.stored_procedures,PROD),GET_EMPLOYEE_INFO_ae548124ee515a556f8cee0139839057)", + "changeType": "UPSERT", + "aspectName": "dataTransformLogic", + "aspect": { + "json": { + "transforms": [ + { + "queryStatement": { + "value": "PROCEDURE get_employee_info(p_emp_id IN NUMBER, p_cursor OUT SYS_REFCURSOR) AS\nBEGIN\n OPEN p_cursor FOR\n SELECT e.employee_id, e.first_name, e.last_name, e.salary, d.department_name\n FROM employees e\n JOIN departments d ON e.department_id = d.department_id\n WHERE e.employee_id = p_emp_id;\nEND;", + "language": "SQL" + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.hr_schema.stored_procedures,PROD),GET_EMPLOYEE_INFO_ae548124ee515a556f8cee0139839057)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:8bb9622920f2715fbef29e6492f9ce17", + "urn": "urn:li:container:8bb9622920f2715fbef29e6492f9ce17" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:24a24bd29d23ce749a542691f596215e", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:01aab0d30e558697f8ead372760de946" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:24a24bd29d23ce749a542691f596215e", + "changeType": "UPSERT", + "aspectName": "containerProperties", + "aspect": { + "json": { + "customProperties": { + "platform": "oracle", + "env": "PROD", + "database": "XEPDB1", + "schema": "sales_schema" + }, + "name": "sales_schema", + "env": "PROD" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:24a24bd29d23ce749a542691f596215e", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:24a24bd29d23ce749a542691f596215e", + "changeType": "UPSERT", + "aspectName": "dataPlatformInstance", + "aspect": { + "json": { + "platform": "urn:li:dataPlatform:oracle" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:24a24bd29d23ce749a542691f596215e", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Schema" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:24a24bd29d23ce749a542691f596215e", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:24a24bd29d23ce749a542691f596215e" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "orders", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "sales_schema.orders", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "order_id", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(12, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "order_date", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "customer_id", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(6, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "order_status", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(8 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "order_total", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(8, 2)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "sales_rep_id", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(6, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:24a24bd29d23ce749a542691f596215e", + "urn": "urn:li:container:24a24bd29d23ce749a542691f596215e" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_items,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:24a24bd29d23ce749a542691f596215e" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_items,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "order_items", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "sales_schema.order_items", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "order_id", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(12, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "line_item_id", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(3, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "product_id", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(6, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "unit_price", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(8, 2)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "quantity", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(8, 0)", + "recursive": false, + "isPartOfKey": false + } + ], + "foreignKeys": [ + { + "name": "order_items_order_fk", + "foreignFields": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_items,PROD),order_id)" + ], + "sourceFields": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_items,PROD),order_id)" + ], + "foreignDataset": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_items,PROD)" + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_items,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_items,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:24a24bd29d23ce749a542691f596215e", + "urn": "urn:li:container:24a24bd29d23ce749a542691f596215e" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:24a24bd29d23ce749a542691f596215e" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "SELECT\n TO_CHAR(order_date, 'YYYY-MM') AS order_month,\n COUNT(*) AS order_count,\n SUM(order_total) AS total_revenue,\n AVG(order_total) AS avg_order_value\nFROM orders\nGROUP BY TO_CHAR(order_date, 'YYYY-MM')" + }, + "name": "order_summary", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "sales_schema.order_summary", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "order_month", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(7 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "order_count", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "total_revenue", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "avg_order_value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "SELECT\n TO_CHAR(order_date, 'YYYY-MM') AS order_month,\n COUNT(*) AS order_count,\n SUM(order_total) AS total_revenue,\n AVG(order_total) AS avg_order_value\nFROM orders\nGROUP BY TO_CHAR(order_date, 'YYYY-MM')", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:24a24bd29d23ce749a542691f596215e", + "urn": "urn:li:container:24a24bd29d23ce749a542691f596215e" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,XEPDB1.sales_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "dataFlowInfo", + "aspect": { + "json": { + "customProperties": {}, + "name": "XEPDB1.sales_schema.stored_procedures" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,XEPDB1.sales_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Procedures Container" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,XEPDB1.sales_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:01aab0d30e558697f8ead372760de946" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,XEPDB1.sales_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.sales_schema.stored_procedures,PROD),GET_ORDER_TOTAL_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "dataJobInfo", + "aspect": { + "json": { + "customProperties": { + "object_type": "FUNCTION", + "status": "VALID", + "upstream_dependencies": "SYS.STANDARD (PACKAGE), SYS.SYS_STUB_FOR_PURITY_ANALYSIS (PACKAGE), SALES_SCHEMA.ORDER_ITEMS (TABLE)" + }, + "name": "GET_ORDER_TOTAL", + "type": { + "string": "Stored Procedure" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.sales_schema.stored_procedures,PROD),GET_ORDER_TOTAL_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Stored Procedure" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.sales_schema.stored_procedures,PROD),GET_ORDER_TOTAL_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:24a24bd29d23ce749a542691f596215e" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.sales_schema.stored_procedures,PROD),GET_ORDER_TOTAL_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "dataTransformLogic", + "aspect": { + "json": { + "transforms": [ + { + "queryStatement": { + "value": "FUNCTION get_order_total(p_order_id IN NUMBER) RETURN NUMBER AS\n v_total NUMBER := 0;\nBEGIN\n SELECT SUM(unit_price * quantity) INTO v_total\n FROM order_items\n WHERE order_id = p_order_id;\n\n RETURN NVL(v_total, 0);\nEND;", + "language": "SQL" + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.sales_schema.stored_procedures,PROD),GET_ORDER_TOTAL_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "dataJobInputOutput", + "aspect": { + "json": { + "inputDatasets": [ + "urn:li:dataset:(urn:li:dataPlatform:oracle,xepdb1.sales_schema.order_items,PROD)" + ], + "outputDatasets": [ + "urn:li:dataset:(urn:li:dataPlatform:oracle,xepdb1.sales_schema.v_total,PROD)" + ], + "fineGrainedLineages": [ + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,xepdb1.sales_schema.order_items,PROD),quantity)", + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,xepdb1.sales_schema.order_items,PROD),unit_price)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,xepdb1.sales_schema.v_total,PROD),sum%28\"order_items\".\"unit_price\" * \"order_items\".\"quantity\"%29)" + ], + "transformOperation": "SQL: SUM(\"ORDER_ITEMS\".\"UNIT_PRICE\" * \"ORDER_ITEMS\".\"QUANTITY\") AS \"_col_0\"", + "confidenceScore": 0.2 + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.sales_schema.stored_procedures,PROD),GET_ORDER_TOTAL_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:24a24bd29d23ce749a542691f596215e", + "urn": "urn:li:container:24a24bd29d23ce749a542691f596215e" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.sales_schema.stored_procedures,PROD),PROCESS_ORDER_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "dataJobInfo", + "aspect": { + "json": { + "customProperties": { + "object_type": "PROCEDURE", + "status": "VALID", + "upstream_dependencies": "SYS.STANDARD (PACKAGE), SYS.SYS_STUB_FOR_PURITY_ANALYSIS (PACKAGE), HR_SCHEMA.EMPLOYEES (TABLE), SALES_SCHEMA.ORDERS (TABLE)" + }, + "name": "PROCESS_ORDER", + "type": { + "string": "Stored Procedure" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.sales_schema.stored_procedures,PROD),PROCESS_ORDER_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Stored Procedure" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.sales_schema.stored_procedures,PROD),PROCESS_ORDER_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:24a24bd29d23ce749a542691f596215e" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.sales_schema.stored_procedures,PROD),PROCESS_ORDER_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "dataTransformLogic", + "aspect": { + "json": { + "transforms": [ + { + "queryStatement": { + "value": "PROCEDURE process_order(p_order_id IN NUMBER) AS\n v_sales_rep_id NUMBER;\n v_emp_name VARCHAR2(50);\nBEGIN\n -- Get sales rep info from HR schema\n SELECT o.sales_rep_id INTO v_sales_rep_id\n FROM orders o\n WHERE o.order_id = p_order_id;\n\n -- Get employee name from HR schema (creates dependency)\n SELECT first_name || ' ' || last_name INTO v_emp_name\n FROM hr_schema.employees\n WHERE employee_id = v_sales_rep_id;\n\n -- Update order status\n UPDATE orders\n SET order_status = 'PROCESSED'\n WHERE order_id = p_order_id;\n\n -- Log processing (this would create dependency on a log table if it existed)\n NULL; -- Placeholder for logging logic\nEND;", + "language": "SQL" + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.sales_schema.stored_procedures,PROD),PROCESS_ORDER_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "dataJobInputOutput", + "aspect": { + "json": { + "inputDatasets": [ + "urn:li:dataset:(urn:li:dataPlatform:oracle,xepdb1.sales_schema.orders,PROD)", + "urn:li:dataset:(urn:li:dataPlatform:oracle,xepdb1.hr_schema.employees,PROD)" + ], + "outputDatasets": [ + "urn:li:dataset:(urn:li:dataPlatform:oracle,xepdb1.sales_schema.orders,PROD)", + "urn:li:dataset:(urn:li:dataPlatform:oracle,xepdb1.sales_schema.v_emp_name,PROD)", + "urn:li:dataset:(urn:li:dataPlatform:oracle,xepdb1.sales_schema.v_sales_rep_id,PROD)" + ], + "fineGrainedLineages": [ + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,xepdb1.hr_schema.employees,PROD),first_name)", + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,xepdb1.hr_schema.employees,PROD),last_name)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,xepdb1.sales_schema.v_emp_name,PROD),\"employees\".\"first_name\" || ' ' || \"employees\".\"last_name\")" + ], + "transformOperation": "SQL: \"EMPLOYEES\".\"FIRST_NAME\" || ' ' || \"EMPLOYEES\".\"LAST_NAME\" AS \"_col_0\"", + "confidenceScore": 0.2 + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,xepdb1.sales_schema.orders,PROD),sales_rep_id)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,xepdb1.sales_schema.v_sales_rep_id,PROD),sales_rep_id)" + ], + "transformOperation": "COPY: \"O\".\"SALES_REP_ID\" AS \"SALES_REP_ID\"", + "confidenceScore": 0.2 + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.sales_schema.stored_procedures,PROD),PROCESS_ORDER_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:24a24bd29d23ce749a542691f596215e", + "urn": "urn:li:container:24a24bd29d23ce749a542691f596215e" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:01aab0d30e558697f8ead372760de946" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "changeType": "UPSERT", + "aspectName": "containerProperties", + "aspect": { + "json": { + "customProperties": { + "platform": "oracle", + "env": "PROD", + "database": "XEPDB1", + "schema": "system" + }, + "name": "system", + "env": "PROD" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "changeType": "UPSERT", + "aspectName": "dataPlatformInstance", + "aspect": { + "json": { + "platform": "urn:li:dataPlatform:oracle" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Schema" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_gt_tab_include$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_gt_tab_include$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_gt_tab_include$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_gt_tab_include$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "schema_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(390 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "table_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(390 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "pdb_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(390 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_gt_tab_include$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_gt_tab_include$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_gt_user_include$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_gt_user_include$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_gt_user_include$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_gt_user_include$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "user_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(390 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "user_type", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "pdb_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(390 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_gt_user_include$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_gt_user_include$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_gt_xid_include$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_gt_xid_include$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_gt_xid_include$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_gt_xid_include$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "xidusn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xidslt", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xidsqn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "pdbid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "pdb_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(390 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_gt_xid_include$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_gt_xid_include$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrt_mddl$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrt_mddl$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrt_mddl$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrt_mddl$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "SOURCE_OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "source_rowid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NullType": {} + } + }, + "nativeDataType": "null", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "dest_rowid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NullType": {} + } + }, + "nativeDataType": "null", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrt_mddl$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrt_mddl$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.ol$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.ol$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "ol$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.ol$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "ol_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "sql_text", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "LONG", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "textlen", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "signature", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "hash_value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "hash_value2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "category", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "version", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(64 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "creator", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "timestamp", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "hintcount", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(1000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.ol$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.ol$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.ol$hints,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.ol$hints,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "ol$hints", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.ol$hints", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "ol_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "HINT#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "category", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "hint_type", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "hint_text", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(512 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "STAGE#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "NODE#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "table_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "table_tin", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "table_pos", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ref_id", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "user_table_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(260 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "cost", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "FLOAT", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "cardinality", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "FLOAT", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "bytes", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "FLOAT", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "hint_textoff", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "hint_textlen", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "join_pred", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(2000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "hint_string", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "CLOB", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.ol$hints,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.ol$hints,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.ol$nodes,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.ol$nodes,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "ol$nodes", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.ol$nodes", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "ol_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "category", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "node_id", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "parent_id", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "node_type", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "node_textlen", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "node_textoff", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "node_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(64 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.ol$nodes,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.ol$nodes,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_dictstate$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_dictstate$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_dictstate$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_dictstate$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scnbas", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scnwrp", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "end_scnbas", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "end_scnwrp", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "redo_thread", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "rbasqn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "rbablk", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "rbabyte", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_dictstate$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_dictstate$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gtlo,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gtlo,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_gtlo", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_gtlo", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "KEYOBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "lvlcnt", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "BASEOBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "BASEOBJV#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "LVL1OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "LVL2OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "LVL0TYPE#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "LVL1TYPE#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "LVL2TYPE#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OWNER#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ownername", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "lvl0name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "lvl1name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "lvl2name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "intcols", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "cols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "kernelcols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "tab_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "trigflag", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ASSOC#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "obj_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TS#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "tsname", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(90 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "property", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scn", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "drop_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xidusn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xidslt", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xidsqn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(1000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare4", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare5", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare6", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare7", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare8", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare9", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "parttype", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "subparttype", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "unsupportedcols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "complextypecols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ntparentobjnum", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ntparentobjversion", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ntparentintcolnum", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnrtloflags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnrmcv", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(30 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "acdrflags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ACDRTSOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ACDRROWTSINTCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gtlo,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gtlo,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gtcs,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gtcs,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_gtcs", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_gtcs", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJV#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "SEGCOL#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INTCOL#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "colname", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TYPE#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "length", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "precision", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "scale", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "interval_leading_precision", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "interval_trailing_precision", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "property", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "toid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "charsetid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "charsetform", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "typename", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "fqcolname", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "numintcols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "numattrs", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "adtorder", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(1000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare4", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare5", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare6", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare7", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare8", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare9", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "COL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xtypeschemaname", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xtypename", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xfqcolname", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xtopintcol", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xreffedtableobjn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xreffedtableobjv", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xcoltypeflags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xopqtypetype", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xopqtypeflags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xopqlobintcol", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xopqobjintcol", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xxmlintcol", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "EAOWNER#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "eamkeyid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(192 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "eaencalg", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "eaintalg", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "eacolklc", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "eaklclen", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "eaflags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnrderivedflags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "collid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "COLLINTCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ACDRRESCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gtcs,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gtcs,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_seq_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_seq_gg,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_seq_gg", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_seq_gg", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "commit_scn", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "drop_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "seq_flags", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OWNER#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ownername", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "objname", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "seqcache", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "seqinc", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare4", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_seq_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_seq_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_con_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_con_gg,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_con_gg", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_con_gg", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "CON#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "commit_scn", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "drop_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "BASEOBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "BASEOBJV#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "flags", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INDEXOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare4", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare5", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare6", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_con_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_con_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_concol_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_concol_gg,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_concol_gg", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_concol_gg", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "CON#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "commit_scn", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INTCOL#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "POS#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_concol_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_concol_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_ind_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_ind_gg,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_ind_gg", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_ind_gg", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "commit_scn", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "drop_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "BASEOBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "BASEOBJV#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "flags", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OWNER#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ownername", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare4", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare5", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare6", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_ind_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_ind_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_indcol_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_indcol_gg,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_indcol_gg", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_indcol_gg", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "commit_scn", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INTCOL#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "POS#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_indcol_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_indcol_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_shard_ts,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_shard_ts,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_shard_ts", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_shard_ts", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "tablespace_name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(90 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "chunk_number", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scn", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "drop_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_shard_ts,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_shard_ts,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_tspart,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_tspart,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_tspart", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_tspart", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TS#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scn", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "drop_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_tspart,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_tspart,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_ts,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_ts,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_ts", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_ts", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TS#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(90 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scn", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "drop_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_ts,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_ts,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gsii,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gsii,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_gsii", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_gsii", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "BO#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INDTYPE#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "drop_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(1000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare4", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gsii,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gsii,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gsba,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gsba,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_gsba", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_gsba", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "as_of_scn", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "fdo_length", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "fdo_value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "charsetid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ncharsetid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "dbtimezone_len", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "dbtimezone_value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(192 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(1000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare4", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_global_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gsba,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gsba,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_user,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_user,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_user", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_user", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "USER#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scn", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "drop_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1_c", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2_c", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3_c", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_user,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_user,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_seed$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_seed$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_seed$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_seed$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "seed_version", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "gather_version", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "schemaname", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJV#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "table_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "col_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "COL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INTCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "SEGCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TYPE#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "length", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "PRECISION#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "scale", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "null$", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_seed$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_seed$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_dictionary$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_dictionary$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_dictionary$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_dictionary$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "db_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(27 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_id", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(20, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_created", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(20 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_dict_created", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(20 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_dict_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_thread_map", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_txn_scnbas", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_txn_scnwrp", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "DB_RESETLOGS_CHANGE#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_resetlogs_time", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(20 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_version_time", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(20 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_redo_type_id", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(8 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_redo_release", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(60 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_character_set", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(192 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_version", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(240 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_status", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(240 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_global_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_dict_maxobjects", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_dict_objectcount", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "pdb_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "pdb_id", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "pdb_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "pdb_dbid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "pdb_guid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "pdb_create_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "pdb_count", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "pdb_global_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "FED_ROOT_CON_ID#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_dictionary$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_dictionary$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_obj$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_obj$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_obj$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_obj$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OBJV#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OWNER#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "namespace", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "subname", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TYPE#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "oid$", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "remoteowner", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "linkname", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "stime", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scnbas", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scnwrp", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_obj$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_obj$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tab$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tab$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_tab$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_tab$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "TS#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "cols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "property", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "intcols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "kernelcols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "BOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "trigflag", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "acdrflags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ACDRTSOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ACDRROWTSINTCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tab$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tab$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_col$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_col$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_col$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_col$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "COL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "SEGCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TYPE#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "length", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "PRECISION#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "scale", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "null$", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INTCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "property", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "charsetid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "charsetform", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "collid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "COLLINTCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ACDRRESCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_col$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_col$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_attrcol$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_attrcol$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_attrcol$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_attrcol$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "INTCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_attrcol$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_attrcol$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ts$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ts$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_ts$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_ts$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "TS#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(90 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OWNER#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "blocksize", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scnbas", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scnwrp", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ts$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ts$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ind$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ind$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_ind$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_ind$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "BO#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "cols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TYPE#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "property", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ind$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ind$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_user$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_user$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_user$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_user$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "USER#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_user$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_user$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tabpart$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tabpart$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_tabpart$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_tabpart$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TS#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "PART#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "BO#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tabpart$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tabpart$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tabsubpart$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tabsubpart$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_tabsubpart$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_tabsubpart$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "DATAOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "POBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "SUBPART#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TS#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tabsubpart$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tabsubpart$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tabcompart$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tabcompart$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_tabcompart$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_tabcompart$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "BO#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "PART#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tabcompart$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tabcompart$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_type$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_type$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_type$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_type$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "VERSION#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "version", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "tvoid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "typecode", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "properties", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "attributes", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "methods", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "hiddenmethods", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "supertypes", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "subtypes", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "externtype", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "externname", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "helperclassname", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "local_attrs", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "local_methods", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "typeid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "roottoid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "supertoid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "hashcode", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "toid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_type$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_type$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_coltype$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_coltype$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_coltype$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_coltype$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "COL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INTCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "toid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "VERSION#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "packed", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "intcols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INTCOL#S", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TYPIDCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "SYNOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_coltype$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_coltype$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_attribute$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_attribute$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_attribute$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_attribute$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "VERSION#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ATTRIBUTE#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "attr_toid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ATTR_VERSION#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "SYNOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "properties", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "charsetid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "charsetform", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "length", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "PRECISION#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "scale", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "externname", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xflags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare4", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare5", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "setter", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "getter", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "toid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_attribute$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_attribute$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_lob$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_lob$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_lob$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_lob$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INTCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "COL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "LOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "chunk", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_lob$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_lob$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_con$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_con$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_con$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_con$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OWNER#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "CON#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scnbas", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scnwrp", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_con$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_con$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_container$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_container$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_container$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_container$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "CON_ID#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "dbid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "con_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "create_scnwrp", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "create_scnbas", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "status", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "vsn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "FED_ROOT_CON_ID#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_container$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_container$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_cdef$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_cdef$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_cdef$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_cdef$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "CON#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "cols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TYPE#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ROBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "RCON#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "enabled", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "defer", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_cdef$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_cdef$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ccol$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ccol$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_ccol$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_ccol$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "CON#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "COL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "POS#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INTCOL#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ccol$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ccol$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_icol$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_icol$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_icol$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_icol$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "BO#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "COL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "POS#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "SEGCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INTCOL#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_icol$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_icol$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_lobfrag$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_lobfrag$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_lobfrag$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_lobfrag$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "FRAGOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "PARENTOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TABFRAGOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INDFRAGOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "FRAG#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_lobfrag$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_lobfrag$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_indpart$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_indpart$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_indpart$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_indpart$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "BO#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "PART#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TS#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_indpart$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_indpart$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_indsubpart$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_indsubpart$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_indsubpart$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_indsubpart$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "DATAOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "POBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "SUBPART#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TS#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_indsubpart$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_indsubpart$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_indcompart$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_indcompart$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_indcompart$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_indcompart$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "DATAOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "BO#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "PART#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_indcompart$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_indcompart$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_logmnr_buildlog,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_logmnr_buildlog,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_logmnr_buildlog", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_logmnr_buildlog", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "build_date", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(20 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_txn_scnbas", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_txn_scnwrp", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "current_build_state", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "completion_status", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "marked_log_file_low_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "initial_xid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(22 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "cdb_xid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(22 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_logmnr_buildlog,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_logmnr_buildlog,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ntab$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ntab$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_ntab$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_ntab$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "COL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INTCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "NTAB#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ntab$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ntab$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_opqtype$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_opqtype$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_opqtype$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_opqtype$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "INTCOL#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "type", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "lobcol", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "objcol", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "extracol", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "schemaoid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "elemnum", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "schemaurl", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_opqtype$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_opqtype$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_subcoltype$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_subcoltype$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_subcoltype$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_subcoltype$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "INTCOL#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "toid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "VERSION#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "intcols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INTCOL#S", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "SYNOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_subcoltype$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_subcoltype$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_kopm$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_kopm$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_kopm$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_kopm$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "length", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "metadata", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_kopm$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_kopm$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_props$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_props$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_props$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_props$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "value$", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "comment$", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_props$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_props$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_enc$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_enc$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_enc$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_enc$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OWNER#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "encalg", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "intalg", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "colklc", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "klclen", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "flag", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "mkeyid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(192 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_enc$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_enc$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_refcon$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_refcon$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_refcon$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_refcon$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "COL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INTCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "reftyp", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "stabid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "expctoid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_refcon$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_refcon$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_idnseq$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_idnseq$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_idnseq$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_idnseq$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INTCOL#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "SEQOBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "startwith", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_idnseq$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_idnseq$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_partobj$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_partobj$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_partobj$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_partobj$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "parttype", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "partcnt", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "partkeycols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "DEFTS#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "defpctfree", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "defpctused", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "defpctthres", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "definitrans", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "defmaxtrans", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "deftiniexts", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "defextsize", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "defminexts", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "defmaxexts", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "defextpct", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "deflists", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "defgroups", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "deflogging", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "definclcol", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "parameters", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(3000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_partobj$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_partobj$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrp_ctas_part_map,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrp_ctas_part_map,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrp_ctas_part_map", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrp_ctas_part_map", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "BASEOBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "BASEOBJV#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "KEYOBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "PART#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(1000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrp_ctas_part_map,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrp_ctas_part_map,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_shard_ts,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_shard_ts,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_shard_ts", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_shard_ts", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "tablespace_name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(90 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "chunk_number", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scnbas", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scnwrp", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_shard_ts,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_shard_ts,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logstdby$apply_progress,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logstdby$apply_progress,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logstdby$apply_progress", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logstdby$apply_progress", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "xidusn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xidslt", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xidsqn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "commit_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "commit_time", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(2000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logstdby$apply_progress,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logstdby$apply_progress,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_workload,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_workload,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "" + }, + "name": "mview_workload", + "description": "This view gives DBA access to shared workload", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.mview_workload", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "workloadid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "import_time", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "queryid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "application", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "cardinality", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "resultsize", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "lastuse", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "frequency", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "owner", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "priority", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "query", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "LONG", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "responsetime", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_workload,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_workload,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_workload,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_filter,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_filter,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "" + }, + "name": "mview_filter", + "description": "Workload filter records", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.mview_filter", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "filterid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "subfilternum", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "subfiltertype", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(12 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "str_value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(1028 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "num_value1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "num_value2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "date_value1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "date_value2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_filter,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_filter,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_filter,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_log,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_log,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "" + }, + "name": "mview_log", + "description": "Advisor session log", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.mview_log", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "id", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "filterid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "run_begin", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "run_end", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "type", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(11 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "status", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(11 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "message", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(2000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "completed", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "total", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "error_code", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(20 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_log,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_log,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_log,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_filterinstance,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_filterinstance,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "" + }, + "name": "mview_filterinstance", + "description": "Workload filter instance records", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.mview_filterinstance", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "runid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "filterid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "subfilternum", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "subfiltertype", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(12 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "str_value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(1028 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "num_value1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "num_value2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "date_value1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "date_value2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_filterinstance,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_filterinstance,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_filterinstance,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_recommendations,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_recommendations,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "" + }, + "name": "mview_recommendations", + "description": "This view gives DBA access to summary recommendations", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.mview_recommendations", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "runid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "all_tables", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(2000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "fact_tables", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(1000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "grouping_levels", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(2000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "query_text", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "LONG", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "recommendation_number", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "recommended_action", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(6 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "mview_owner", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "mview_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "storage_in_bytes", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "pct_performance_gain", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "benefit_to_cost_ratio", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_recommendations,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_recommendations,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_recommendations,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_evaluations,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_evaluations,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "" + }, + "name": "mview_evaluations", + "description": "This view gives DBA access to summary evaluation output", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.mview_evaluations", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "runid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "mview_owner", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "mview_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "rank", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "storage_in_bytes", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "frequency", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "cumulative_benefit", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "benefit_to_cost_ratio", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_evaluations,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_evaluations,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_evaluations,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_exceptions,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_exceptions,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "" + }, + "name": "mview_exceptions", + "description": "This view gives DBA access to dimension validation results", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.mview_exceptions", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "runid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "owner", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "table_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "dimension_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "relationship", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(11 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "bad_rowid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NullType": {} + } + }, + "nativeDataType": "null", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_exceptions,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_exceptions,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_exceptions,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.scheduler_program_args,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.scheduler_program_args,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "" + }, + "name": "scheduler_program_args", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.scheduler_program_args", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "owner", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "program_name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "argument_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "argument_position", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "argument_type", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(257 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "metadata_attribute", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(19 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "default_value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "default_anydata_value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NullType": {} + } + }, + "nativeDataType": "null", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "out_argument", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(5 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.scheduler_program_args,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.scheduler_program_args,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.scheduler_program_args,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.scheduler_job_args,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.scheduler_job_args,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "" + }, + "name": "scheduler_job_args", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.scheduler_job_args", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "owner", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "job_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "argument_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "argument_position", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "argument_type", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(257 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "anydata_value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NullType": {} + } + }, + "nativeDataType": "null", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "out_argument", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(5 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.scheduler_job_args,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.scheduler_job_args,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.scheduler_job_args,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "SELECT PRODUCT, USERID, ATTRIBUTE, SCOPE,\n NUMERIC_VALUE, CHAR_VALUE, DATE_VALUE, LONG_VALUE\n FROM SQLPLUS_PRODUCT_PROFILE\n WHERE USERID = 'PUBLIC' OR\n USERID LIKE SYS_CONTEXT('USERENV','CURRENT_USER')" + }, + "name": "product_privs", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.product_privs", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "product", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(30 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "userid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "attribute", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(240 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "scope", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(240 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "numeric_value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(15, 2)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "char_value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(240 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "date_value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "long_value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "LONG", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "SELECT PRODUCT, USERID, ATTRIBUTE, SCOPE,\n NUMERIC_VALUE, CHAR_VALUE, DATE_VALUE, LONG_VALUE\n FROM SQLPLUS_PRODUCT_PROFILE\n WHERE USERID = 'PUBLIC' OR\n USERID LIKE SYS_CONTEXT('USERENV','CURRENT_USER')", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "dataFlowInfo", + "aspect": { + "json": { + "customProperties": {}, + "name": "XEPDB1.system.stored_procedures" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Procedures Container" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:01aab0d30e558697f8ead372760de946" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD),LOGMNR$COL_GG_TABF_PUBLIC_ef2341af0dcac8651a66e2477d17845f)", + "changeType": "UPSERT", + "aspectName": "dataJobInfo", + "aspect": { + "json": { + "customProperties": { + "object_type": "FUNCTION", + "status": "VALID", + "upstream_dependencies": "SYS.LOGMNR_DICT_CACHE (PACKAGE), SYS.STANDARD (PACKAGE), SYS.SYS_STUB_FOR_PURITY_ANALYSIS (PACKAGE), PUBLIC.PLITBLM (SYNONYM)" + }, + "name": "LOGMNR$COL_GG_TABF_PUBLIC", + "type": { + "string": "Stored Procedure" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD),LOGMNR$COL_GG_TABF_PUBLIC_ef2341af0dcac8651a66e2477d17845f)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Stored Procedure" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD),LOGMNR$COL_GG_TABF_PUBLIC_ef2341af0dcac8651a66e2477d17845f)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD),LOGMNR$COL_GG_TABF_PUBLIC_ef2341af0dcac8651a66e2477d17845f)", + "changeType": "UPSERT", + "aspectName": "dataTransformLogic", + "aspect": { + "json": { + "transforms": [ + { + "queryStatement": { + "value": "FUNCTION LOGMNR$COL_GG_TABF_PUBLIC wrapped\na000000\n1\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\n8\n237 185\nnkvJV1w6wH1y7mRApzf9mGuebNUwgxDILkhGfHQCmP8+Vi4fyqh3SG1Fyq+pCts1OlgnK761\nYuzKBA4JE5DNwZzBIF/Y4ZM5eUlquVyTkOg+AodK3vQJt9NLvPITXbP42O37gO+zKr4BQEJk\nypwrP1U/Pf6MLZONN8LUaVqHCN87T14HqHs5taX7LhLXQ2lCVBE1Ll8dyB9CDOlbyvQS/lrb\n+0n1pQi9IJAWySL85ChAqnTaqFJm0YeToD4lZ8UUPQqIZNoX0x73WK9OzsmdBrvEC97iduxe\nPEXVkxF6xklPod6yOGBvW7DAFMBgf+LajDLVKOAwB2EAiKCXYMuTUTtMYYkCFFf4sj1rCpsj\nTLth6TSru530aM2HP6bEbm3m\n", + "language": "SQL" + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD),LOGMNR$COL_GG_TABF_PUBLIC_ef2341af0dcac8651a66e2477d17845f)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD),LOGMNR$GSBA_GG_TABF_PUBLIC_5d2d46c2c96d70c5e0c9ceee5faa26d1)", + "changeType": "UPSERT", + "aspectName": "dataJobInfo", + "aspect": { + "json": { + "customProperties": { + "object_type": "FUNCTION", + "status": "VALID", + "upstream_dependencies": "SYS.LOGMNR_DICT_CACHE (PACKAGE), SYS.STANDARD (PACKAGE), SYS.SYS_STUB_FOR_PURITY_ANALYSIS (PACKAGE), PUBLIC.PLITBLM (SYNONYM)" + }, + "name": "LOGMNR$GSBA_GG_TABF_PUBLIC", + "type": { + "string": "Stored Procedure" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD),LOGMNR$GSBA_GG_TABF_PUBLIC_5d2d46c2c96d70c5e0c9ceee5faa26d1)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Stored Procedure" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD),LOGMNR$GSBA_GG_TABF_PUBLIC_5d2d46c2c96d70c5e0c9ceee5faa26d1)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD),LOGMNR$GSBA_GG_TABF_PUBLIC_5d2d46c2c96d70c5e0c9ceee5faa26d1)", + "changeType": "UPSERT", + "aspectName": "dataTransformLogic", + "aspect": { + "json": { + "transforms": [ + { + "queryStatement": { + "value": "FUNCTION LOGMNR$GSBA_GG_TABF_PUBLIC wrapped\na000000\n1\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\n8\n206 171\n6gxi/CQwK1I5Rfwuw/SXrOGpVRYwgwLI1yfbfHRGEjNe54OE4QwRZCoA20oG536tzgcBrj+1\nxE3tE8jIhAoTlUdUmkdYMmZycO1SdiJZwwt/6BrM1wHXl/E5+3Ip2NXzC9j8v4+KjkD9d5AT\np05eEsEWjU1CBTMSpjZZrXzbgFl9QNnQ+zJGjSug21f76ajs78m6anxz7vFcTcem6XpAgKjc\nEXzd/ijP8qiOqwblTfnXcRslJn3MljD02u+5fh9NBctOmnaw/tOjRCFPUhY8I9gCoMptjG7U\nrHEIFzHOFyxBEdulRGq4ngSgcm7l2yOdSHgNM8rO2vUH4gozvJoLE1S8GBBzG/wrvHPhACQ/\n2w==\n", + "language": "SQL" + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD),LOGMNR$GSBA_GG_TABF_PUBLIC_5d2d46c2c96d70c5e0c9ceee5faa26d1)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD),LOGMNR$KEY_GG_TABF_PUBLIC_77a58b36bdddafb91baa24311fe59af7)", + "changeType": "UPSERT", + "aspectName": "dataJobInfo", + "aspect": { + "json": { + "customProperties": { + "object_type": "FUNCTION", + "status": "VALID", + "upstream_dependencies": "SYS.LOGMNR_DICT_CACHE (PACKAGE), SYS.STANDARD (PACKAGE), SYS.SYS_STUB_FOR_PURITY_ANALYSIS (PACKAGE), PUBLIC.PLITBLM (SYNONYM)" + }, + "name": "LOGMNR$KEY_GG_TABF_PUBLIC", + "type": { + "string": "Stored Procedure" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD),LOGMNR$KEY_GG_TABF_PUBLIC_77a58b36bdddafb91baa24311fe59af7)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Stored Procedure" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD),LOGMNR$KEY_GG_TABF_PUBLIC_77a58b36bdddafb91baa24311fe59af7)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD),LOGMNR$KEY_GG_TABF_PUBLIC_77a58b36bdddafb91baa24311fe59af7)", + "changeType": "UPSERT", + "aspectName": "dataTransformLogic", + "aspect": { + "json": { + "transforms": [ + { + "queryStatement": { + "value": "FUNCTION LOGMNR$KEY_GG_TABF_PUBLIC wrapped\na000000\n1\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\n8\n2a0 1a1\n3O4I5hDO715d8A2tqbxMCflFW0owg/D319xqfC9Grfg+K6yE71zMvtNS45AyRXBk77WpI5v4\nnUSfE2lbvUYgk3JHySIe28XxC3xIYYpPGQjxwa3GzPw0FN5aN6kerQQTHUBp29Dd+vLSgBaC\n2pAFrq059ZvN0ZPN11XG/2RuDY7HaTQu/QffhnY8rVlNxpFmbkVidwtZQahx5qIFu9Uww/tv\no1AvhjaORi898/KiPtOqv7LpsPFbyNuMnZEG48cxtZuesMBJFP/bKtgU2DN69xiT8Pxf+N2n\ng0D2ximYzZqwY/4dBQj9dyQDuXRFo40hdqtWw0L96zV6723aQ8Xp0cqBaZj2wWTI4+6Ikry9\nzY0Mdm3bV8TYqsOa+zT4fnikGO0eYbTFHEiW9QUbl/UwzuERwk8p\n", + "language": "SQL" + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD),LOGMNR$KEY_GG_TABF_PUBLIC_77a58b36bdddafb91baa24311fe59af7)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD),LOGMNR$SEQ_GG_TABF_PUBLIC_9ae1b2cd87934dcb4bda65f8828fab9f)", + "changeType": "UPSERT", + "aspectName": "dataJobInfo", + "aspect": { + "json": { + "customProperties": { + "object_type": "FUNCTION", + "status": "VALID", + "upstream_dependencies": "SYS.LOGMNR_DICT_CACHE (PACKAGE), SYS.STANDARD (PACKAGE), SYS.SYS_STUB_FOR_PURITY_ANALYSIS (PACKAGE), PUBLIC.PLITBLM (SYNONYM)" + }, + "name": "LOGMNR$SEQ_GG_TABF_PUBLIC", + "type": { + "string": "Stored Procedure" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD),LOGMNR$SEQ_GG_TABF_PUBLIC_9ae1b2cd87934dcb4bda65f8828fab9f)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Stored Procedure" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD),LOGMNR$SEQ_GG_TABF_PUBLIC_9ae1b2cd87934dcb4bda65f8828fab9f)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD),LOGMNR$SEQ_GG_TABF_PUBLIC_9ae1b2cd87934dcb4bda65f8828fab9f)", + "changeType": "UPSERT", + "aspectName": "dataTransformLogic", + "aspect": { + "json": { + "transforms": [ + { + "queryStatement": { + "value": "FUNCTION LOGMNR$SEQ_GG_TABF_PUBLIC wrapped\na000000\n1\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\n8\n249 181\n++dDv/cHZatK7/vHG9lvR8DQCpYwg/D3AEhqfHQC2h6ONoOvOeHvTNX1S5GDyajM4j8vkSVz\nIMw+LbYS3goujprvmrB/LUpdBF8TVvjEqZpC7MCKPXWcGnTeL7ja8C2tcOdjOpRXkwL5NmPJ\nB0KqMvwepdiQDY7HUDQrBddQC1lBqHGEogWkwRJ3+2+jUC+Gpo5GTazIWS0V551NkSl3+h0W\nBhkPglLbvQDPzxWTnmu4ZuJIlTiNwTf1R0WxghyyKFjES9CJsCrGT8Fn7prlF4Mr5kx1YBGf\n5xaODtRnmVJgb65RlKbAN9+Xxf2QnQjKQL99RZAgsEwGVKNfx9lFKwHLGUwzjOxmIAXXYd/Z\n+L9osPQJjZYkNrD0pQ==\n", + "language": "SQL" + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD),LOGMNR$SEQ_GG_TABF_PUBLIC_9ae1b2cd87934dcb4bda65f8828fab9f)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD),LOGMNR$TAB_GG_TABF_PUBLIC_ef2341af0dcac8651a66e2477d17845f)", + "changeType": "UPSERT", + "aspectName": "dataJobInfo", + "aspect": { + "json": { + "customProperties": { + "object_type": "FUNCTION", + "status": "VALID", + "upstream_dependencies": "SYS.LOGMNR_DICT_CACHE (PACKAGE), SYS.STANDARD (PACKAGE), SYS.SYS_STUB_FOR_PURITY_ANALYSIS (PACKAGE), PUBLIC.PLITBLM (SYNONYM)" + }, + "name": "LOGMNR$TAB_GG_TABF_PUBLIC", + "type": { + "string": "Stored Procedure" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD),LOGMNR$TAB_GG_TABF_PUBLIC_ef2341af0dcac8651a66e2477d17845f)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Stored Procedure" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD),LOGMNR$TAB_GG_TABF_PUBLIC_ef2341af0dcac8651a66e2477d17845f)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD),LOGMNR$TAB_GG_TABF_PUBLIC_ef2341af0dcac8651a66e2477d17845f)", + "changeType": "UPSERT", + "aspectName": "dataTransformLogic", + "aspect": { + "json": { + "transforms": [ + { + "queryStatement": { + "value": "FUNCTION LOGMNR$TAB_GG_TABF_PUBLIC wrapped\na000000\n1\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\n8\n22e 181\nPRVt0FiLRPgjIhZlCZcQhnOHXQ4wgzJp2UhGfHSKrQ843hKm3gKD9swoFAS4jVcW0CsSl7W1\n6banVWdjktOVM18XyRjY4ZM5eRdquSp0ZdfHl3KJPBYqPi9LXIwum30Qh7ymgO+zTKj+R1N2\nnSs/TPnknfYLwcUdAfBryDQGEIMisMuE9XT5ix3sudhHa5tLJRjsBIDKlqL7zk2CH0C1NRAZ\nXrP7WgavVdNS3Yikz88VupZG21hTuAGspJBgCagmNWIwi9pgCIWP3rxF4p+uMps/ABEg+MBP\n6Iykm62kO6hWhVHJXkfKF/jrQFjYBTTzatr1VTcOXt/AFuagDR7isNtb//lnXh8TXyAFWyCT\nubv6GXL0aM0PP/t+DfSl\n", + "language": "SQL" + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD),LOGMNR$TAB_GG_TABF_PUBLIC_ef2341af0dcac8651a66e2477d17845f)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD),LOGMNR$USER_GG_TABF_PUBLIC_2296f4485fd114c2708254214ed8e953)", + "changeType": "UPSERT", + "aspectName": "dataJobInfo", + "aspect": { + "json": { + "customProperties": { + "object_type": "FUNCTION", + "status": "VALID", + "upstream_dependencies": "SYS.LOGMNR_DICT_CACHE (PACKAGE), SYS.STANDARD (PACKAGE), SYS.SYS_STUB_FOR_PURITY_ANALYSIS (PACKAGE), PUBLIC.PLITBLM (SYNONYM)" + }, + "name": "LOGMNR$USER_GG_TABF_PUBLIC", + "type": { + "string": "Stored Procedure" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD),LOGMNR$USER_GG_TABF_PUBLIC_2296f4485fd114c2708254214ed8e953)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Stored Procedure" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD),LOGMNR$USER_GG_TABF_PUBLIC_2296f4485fd114c2708254214ed8e953)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD),LOGMNR$USER_GG_TABF_PUBLIC_2296f4485fd114c2708254214ed8e953)", + "changeType": "UPSERT", + "aspectName": "dataTransformLogic", + "aspect": { + "json": { + "transforms": [ + { + "queryStatement": { + "value": "FUNCTION LOGMNR$USER_GG_TABF_PUBLIC wrapped\na000000\n1\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\n8\n272 191\nVc+i+Mga8m7/BSlvXl0J+GmParYwg/D319wCfC8CTE6Ot30G8QRR0WzR8ohw8Z/y6DuL4pL5\nIDjZApnCaZgeKa1OTjLj2B2tOYZg2ZuOAPKrxo7DeBqtn0Ahw0tubS36jP4xc+d2eQebdJMD\nc/U0JxdiAl0qIPzsltBjeoGAEsxUk0aubCMJmysgc2d8ojil6ixQ37D7RA0HWMkh27QdOuXF\nvSwuufDunMMT8Hue9dvy4vRXj+PhuyylJSukStsxyIb234EahCXyrjDlnzbC91eoU7v5sb4D\nOvtDmggQCEViyhFXwspP9P0dOObin8JENsDJeFZYr/oVAgSHa97LRKvNZgd+f//XHlpEAOP4\nrNm5mF0wTCABbb7tc5c7uo09M+79i7en8g==\n", + "language": "SQL" + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD),LOGMNR$USER_GG_TABF_PUBLIC_2296f4485fd114c2708254214ed8e953)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.test_mview,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.test_mview,PROD)", + "changeType": "UPSERT", + "aspectName": "datasetProperties", + "aspect": { + "json": { + "customProperties": { + "materialized_view_definition": "SELECT\n COUNT(*) AS total_schemas,\n 'Test Materialized View' AS description\nFROM all_users\nWHERE username LIKE '%SCHEMA%'" + }, + "name": "test_mview", + "tags": [] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.test_mview,PROD)", + "changeType": "UPSERT", + "aspectName": "schemaMetadata", + "aspect": { + "json": { + "schemaName": "system.test_mview", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.test_mview,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.test_mview,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": true, + "viewLogic": "SELECT\n COUNT(*) AS total_schemas,\n 'Test Materialized View' AS description\nFROM all_users\nWHERE username LIKE '%SCHEMA%'", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.test_mview,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:01aab0d30e558697f8ead372760de946", + "urn": "urn:li:container:01aab0d30e558697f8ead372760de946" + }, + { + "id": "urn:li:container:cbe0494db6edee176a296e001a934bd1", + "urn": "urn:li:container:cbe0494db6edee176a296e001a934bd1" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,analytics_schema.simple_analytics,PROD)", + "changeType": "UPSERT", + "aspectName": "upstreamLineage", + "aspect": { + "json": { + "upstreams": [ + { + "auditStamp": { + "time": 1615443388097, + "actor": "urn:li:corpuser:_ingestion" + }, + "created": { + "time": 0, + "actor": "urn:li:corpuser:_ingestion" + }, + "dataset": "urn:li:dataset:(urn:li:dataPlatform:oracle,analytics_schema.dual,PROD)", + "type": "VIEW", + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Canalytics_schema.simple_analytics%2CPROD%29" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Canalytics_schema.simple_analytics%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "queryProperties", + "aspect": { + "json": { + "customProperties": {}, + "statement": { + "value": "SELECT\n SYSDATE AS refresh_date,\n 'Analytics Data' AS description,\n 1 AS record_count\nFROM DUAL", + "language": "SQL" + }, + "source": "SYSTEM", + "created": { + "time": 0, + "actor": "urn:li:corpuser:_ingestion" + }, + "lastModified": { + "time": 1761584199645, + "actor": "urn:li:corpuser:_ingestion" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Canalytics_schema.simple_analytics%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "querySubjects", + "aspect": { + "json": { + "subjects": [ + { + "entity": "urn:li:dataset:(urn:li:dataPlatform:oracle,analytics_schema.dual,PROD)" + }, + { + "entity": "urn:li:dataset:(urn:li:dataPlatform:oracle,analytics_schema.simple_analytics,PROD)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,analytics_schema.simple_analytics,PROD),refresh_date)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,analytics_schema.simple_analytics,PROD),description)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,analytics_schema.simple_analytics,PROD),record_count)" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Canalytics_schema.simple_analytics%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "dataPlatformInstance", + "aspect": { + "json": { + "platform": "urn:li:dataPlatform:oracle" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD)", + "changeType": "UPSERT", + "aspectName": "upstreamLineage", + "aspect": { + "json": { + "upstreams": [ + { + "auditStamp": { + "time": 1615443388097, + "actor": "urn:li:corpuser:_ingestion" + }, + "created": { + "time": 0, + "actor": "urn:li:corpuser:_ingestion" + }, + "dataset": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD)", + "type": "VIEW", + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Chr_schema.employee_summary%2CPROD%29" + } + ], + "fineGrainedLineages": [ + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD),department_id)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD),department_id)" + ], + "transformOperation": "COPY: \"EMPLOYEES\".\"DEPARTMENT_ID\" AS \"DEPARTMENT_ID\"", + "confidenceScore": 0.9, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Chr_schema.employee_summary%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD),salary)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD),avg_salary)" + ], + "transformOperation": "SQL: AVG(\"EMPLOYEES\".\"SALARY\") AS \"AVG_SALARY\"", + "confidenceScore": 0.9, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Chr_schema.employee_summary%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD),salary)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD),max_salary)" + ], + "transformOperation": "SQL: MAX(\"EMPLOYEES\".\"SALARY\") AS \"MAX_SALARY\"", + "confidenceScore": 0.9, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Chr_schema.employee_summary%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD),salary)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD),min_salary)" + ], + "transformOperation": "SQL: MIN(\"EMPLOYEES\".\"SALARY\") AS \"MIN_SALARY\"", + "confidenceScore": 0.9, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Chr_schema.employee_summary%2CPROD%29" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Chr_schema.employee_summary%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "queryProperties", + "aspect": { + "json": { + "customProperties": {}, + "statement": { + "value": "SELECT\n department_id,\n COUNT(*) AS employee_count,\n AVG(salary) AS avg_salary,\n MAX(salary) AS max_salary,\n MIN(salary) AS min_salary\nFROM employees\nGROUP BY\n department_id", + "language": "SQL" + }, + "source": "SYSTEM", + "created": { + "time": 0, + "actor": "urn:li:corpuser:_ingestion" + }, + "lastModified": { + "time": 1761584199649, + "actor": "urn:li:corpuser:_ingestion" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Chr_schema.employee_summary%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "querySubjects", + "aspect": { + "json": { + "subjects": [ + { + "entity": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD)" + }, + { + "entity": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD),department_id)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD),salary)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD),department_id)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD),employee_count)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD),avg_salary)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD),max_salary)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD),min_salary)" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Chr_schema.employee_summary%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "dataPlatformInstance", + "aspect": { + "json": { + "platform": "urn:li:dataPlatform:oracle" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD)", + "changeType": "UPSERT", + "aspectName": "upstreamLineage", + "aspect": { + "json": { + "upstreams": [ + { + "auditStamp": { + "time": 1615443388097, + "actor": "urn:li:corpuser:_ingestion" + }, + "created": { + "time": 0, + "actor": "urn:li:corpuser:_ingestion" + }, + "dataset": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD)", + "type": "VIEW", + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csales_schema.order_summary%2CPROD%29" + } + ], + "fineGrainedLineages": [ + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD),order_date)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD),order_month)" + ], + "transformOperation": "SQL: TO_CHAR(\"ORDERS\".\"ORDER_DATE\", 'YYYY-MM') AS \"ORDER_MONTH\"", + "confidenceScore": 0.9, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csales_schema.order_summary%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD),order_total)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD),total_revenue)" + ], + "transformOperation": "SQL: SUM(\"ORDERS\".\"ORDER_TOTAL\") AS \"TOTAL_REVENUE\"", + "confidenceScore": 0.9, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csales_schema.order_summary%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD),order_total)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD),avg_order_value)" + ], + "transformOperation": "SQL: AVG(\"ORDERS\".\"ORDER_TOTAL\") AS \"AVG_ORDER_VALUE\"", + "confidenceScore": 0.9, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csales_schema.order_summary%2CPROD%29" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csales_schema.order_summary%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "queryProperties", + "aspect": { + "json": { + "customProperties": {}, + "statement": { + "value": "SELECT\n TO_CHAR(order_date, 'YYYY-MM') AS order_month,\n COUNT(*) AS order_count,\n SUM(order_total) AS total_revenue,\n AVG(order_total) AS avg_order_value\nFROM orders\nGROUP BY\n TO_CHAR(order_date, 'YYYY-MM')", + "language": "SQL" + }, + "source": "SYSTEM", + "created": { + "time": 0, + "actor": "urn:li:corpuser:_ingestion" + }, + "lastModified": { + "time": 1761584199654, + "actor": "urn:li:corpuser:_ingestion" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csales_schema.order_summary%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "querySubjects", + "aspect": { + "json": { + "subjects": [ + { + "entity": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD)" + }, + { + "entity": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD),order_date)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD),order_total)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD),order_month)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD),order_count)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD),total_revenue)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD),avg_order_value)" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csales_schema.order_summary%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "dataPlatformInstance", + "aspect": { + "json": { + "platform": "urn:li:dataPlatform:oracle" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD)", + "changeType": "UPSERT", + "aspectName": "upstreamLineage", + "aspect": { + "json": { + "upstreams": [ + { + "auditStamp": { + "time": 1615443388097, + "actor": "urn:li:corpuser:_ingestion" + }, + "created": { + "time": 0, + "actor": "urn:li:corpuser:_ingestion" + }, + "dataset": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD)", + "type": "VIEW", + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29" + } + ], + "fineGrainedLineages": [ + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),product)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),product)" + ], + "transformOperation": "COPY: \"SQLPLUS_PRODUCT_PROFILE\".\"PRODUCT\" AS \"PRODUCT\"", + "confidenceScore": 0.2, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),userid)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),userid)" + ], + "transformOperation": "COPY: \"SQLPLUS_PRODUCT_PROFILE\".\"USERID\" AS \"USERID\"", + "confidenceScore": 0.2, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),attribute)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),attribute)" + ], + "transformOperation": "COPY: \"SQLPLUS_PRODUCT_PROFILE\".\"ATTRIBUTE\" AS \"ATTRIBUTE\"", + "confidenceScore": 0.2, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),scope)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),scope)" + ], + "transformOperation": "COPY: \"SQLPLUS_PRODUCT_PROFILE\".\"SCOPE\" AS \"SCOPE\"", + "confidenceScore": 0.2, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),numeric_value)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),numeric_value)" + ], + "transformOperation": "COPY: \"SQLPLUS_PRODUCT_PROFILE\".\"NUMERIC_VALUE\" AS \"NUMERIC_VALUE\"", + "confidenceScore": 0.2, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),char_value)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),char_value)" + ], + "transformOperation": "COPY: \"SQLPLUS_PRODUCT_PROFILE\".\"CHAR_VALUE\" AS \"CHAR_VALUE\"", + "confidenceScore": 0.2, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),date_value)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),date_value)" + ], + "transformOperation": "COPY: \"SQLPLUS_PRODUCT_PROFILE\".\"DATE_VALUE\" AS \"DATE_VALUE\"", + "confidenceScore": 0.2, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),long_value)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),long_value)" + ], + "transformOperation": "COPY: \"SQLPLUS_PRODUCT_PROFILE\".\"LONG_VALUE\" AS \"LONG_VALUE\"", + "confidenceScore": 0.2, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "queryProperties", + "aspect": { + "json": { + "customProperties": {}, + "statement": { + "value": "SELECT\n PRODUCT,\n USERID,\n ATTRIBUTE,\n SCOPE,\n NUMERIC_VALUE,\n CHAR_VALUE,\n DATE_VALUE,\n LONG_VALUE\nFROM SQLPLUS_PRODUCT_PROFILE\nWHERE\n USERID = 'PUBLIC' OR USERID LIKE SYS_CONTEXT('USERENV', 'CURRENT_USER')", + "language": "SQL" + }, + "source": "SYSTEM", + "created": { + "time": 0, + "actor": "urn:li:corpuser:_ingestion" + }, + "lastModified": { + "time": 1761584199658, + "actor": "urn:li:corpuser:_ingestion" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "querySubjects", + "aspect": { + "json": { + "subjects": [ + { + "entity": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD)" + }, + { + "entity": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),attribute)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),char_value)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),date_value)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),long_value)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),numeric_value)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),product)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),scope)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),userid)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),product)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),userid)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),attribute)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),scope)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),numeric_value)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),char_value)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),date_value)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),long_value)" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "dataPlatformInstance", + "aspect": { + "json": { + "platform": "urn:li:dataPlatform:oracle" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.test_mview,PROD)", + "changeType": "UPSERT", + "aspectName": "upstreamLineage", + "aspect": { + "json": { + "upstreams": [ + { + "auditStamp": { + "time": 1615443388097, + "actor": "urn:li:corpuser:_ingestion" + }, + "created": { + "time": 0, + "actor": "urn:li:corpuser:_ingestion" + }, + "dataset": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.all_users,PROD)", + "type": "VIEW", + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.test_mview%2CPROD%29" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.test_mview%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "queryProperties", + "aspect": { + "json": { + "customProperties": {}, + "statement": { + "value": "SELECT\n COUNT(*) AS total_schemas,\n 'Test Materialized View' AS description\nFROM all_users\nWHERE\n username LIKE '%SCHEMA%'", + "language": "SQL" + }, + "source": "SYSTEM", + "created": { + "time": 0, + "actor": "urn:li:corpuser:_ingestion" + }, + "lastModified": { + "time": 1761584199665, + "actor": "urn:li:corpuser:_ingestion" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.test_mview%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "querySubjects", + "aspect": { + "json": { + "subjects": [ + { + "entity": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.all_users,PROD)" + }, + { + "entity": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.test_mview,PROD)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.test_mview,PROD),total_schemas)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.test_mview,PROD),description)" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.test_mview%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "dataPlatformInstance", + "aspect": { + "json": { + "platform": "urn:li:dataPlatform:oracle" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,XEPDB1.analytics_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,XEPDB1.hr_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,XEPDB1.sales_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.analytics_schema.stored_procedures,PROD),ANALYTICS_PKG)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.analytics_schema.stored_procedures,PROD),REFRESH_ANALYTICS_DATA)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.hr_schema.stored_procedures,PROD),CALCULATE_ANNUAL_SALARY_80fcded156e41b6f562fc1438f132bbb)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.hr_schema.stored_procedures,PROD),GET_EMPLOYEE_INFO_ae548124ee515a556f8cee0139839057)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.sales_schema.stored_procedures,PROD),GET_ORDER_TOTAL_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.sales_schema.stored_procedures,PROD),PROCESS_ORDER_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD),LOGMNR$COL_GG_TABF_PUBLIC_ef2341af0dcac8651a66e2477d17845f)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD),LOGMNR$GSBA_GG_TABF_PUBLIC_5d2d46c2c96d70c5e0c9ceee5faa26d1)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD),LOGMNR$KEY_GG_TABF_PUBLIC_77a58b36bdddafb91baa24311fe59af7)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD),LOGMNR$SEQ_GG_TABF_PUBLIC_9ae1b2cd87934dcb4bda65f8828fab9f)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD),LOGMNR$TAB_GG_TABF_PUBLIC_ef2341af0dcac8651a66e2477d17845f)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,XEPDB1.system.stored_procedures,PROD),LOGMNR$USER_GG_TABF_PUBLIC_2296f4485fd114c2708254214ed8e953)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.test_mview,PROD)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Canalytics_schema.simple_analytics%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Chr_schema.employee_summary%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csales_schema.order_summary%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.test_mview%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastRunId": "no-run-id-provided" + } +} +] \ No newline at end of file diff --git a/metadata-ingestion/tests/integration/oracle/golden_files/golden_mces_oracle_to_file_with_stored_procedures.json b/metadata-ingestion/tests/integration/oracle/golden_files/golden_mces_oracle_to_file_with_stored_procedures.json new file mode 100644 index 00000000000000..a38b339f9186a0 --- /dev/null +++ b/metadata-ingestion/tests/integration/oracle/golden_files/golden_mces_oracle_to_file_with_stored_procedures.json @@ -0,0 +1,20364 @@ +[ +{ + "entityType": "container", + "entityUrn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "changeType": "UPSERT", + "aspectName": "containerProperties", + "aspect": { + "json": { + "customProperties": { + "platform": "oracle", + "env": "PROD", + "database": "" + }, + "name": "", + "env": "PROD" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "changeType": "UPSERT", + "aspectName": "dataPlatformInstance", + "aspect": { + "json": { + "platform": "urn:li:dataPlatform:oracle" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Database" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:46760f7f2b2d60ee82729b190423a8ec", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:46760f7f2b2d60ee82729b190423a8ec", + "changeType": "UPSERT", + "aspectName": "containerProperties", + "aspect": { + "json": { + "customProperties": { + "platform": "oracle", + "env": "PROD", + "database": "", + "schema": "analytics_schema" + }, + "name": "analytics_schema", + "env": "PROD" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:46760f7f2b2d60ee82729b190423a8ec", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:46760f7f2b2d60ee82729b190423a8ec", + "changeType": "UPSERT", + "aspectName": "dataPlatformInstance", + "aspect": { + "json": { + "platform": "urn:li:dataPlatform:oracle" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:46760f7f2b2d60ee82729b190423a8ec", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Schema" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:46760f7f2b2d60ee82729b190423a8ec", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,analytics_schema.simple_analytics,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:46760f7f2b2d60ee82729b190423a8ec" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,analytics_schema.simple_analytics,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "SELECT\n SYSDATE AS refresh_date,\n 'Analytics Data' AS description,\n 1 AS record_count\nFROM DUAL" + }, + "name": "simple_analytics", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "analytics_schema.simple_analytics", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "refresh_date", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "description", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "CHAR(14)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "record_count", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,analytics_schema.simple_analytics,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,analytics_schema.simple_analytics,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "SELECT\n SYSDATE AS refresh_date,\n 'Analytics Data' AS description,\n 1 AS record_count\nFROM DUAL", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,analytics_schema.simple_analytics,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:46760f7f2b2d60ee82729b190423a8ec", + "urn": "urn:li:container:46760f7f2b2d60ee82729b190423a8ec" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.analytics_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "dataFlowInfo", + "aspect": { + "json": { + "customProperties": {}, + "name": ".analytics_schema.stored_procedures" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.analytics_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Procedures Container" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.analytics_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.analytics_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.analytics_schema.stored_procedures,PROD),ANALYTICS_PKG)", + "changeType": "UPSERT", + "aspectName": "dataJobInfo", + "aspect": { + "json": { + "customProperties": { + "object_type": "PACKAGE", + "status": "VALID", + "upstream_dependencies": "SYS.STANDARD (PACKAGE)" + }, + "name": "ANALYTICS_PKG", + "type": { + "string": "Stored Procedure" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.analytics_schema.stored_procedures,PROD),ANALYTICS_PKG)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Stored Procedure" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.analytics_schema.stored_procedures,PROD),ANALYTICS_PKG)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:46760f7f2b2d60ee82729b190423a8ec" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.analytics_schema.stored_procedures,PROD),ANALYTICS_PKG)", + "changeType": "UPSERT", + "aspectName": "dataTransformLogic", + "aspect": { + "json": { + "transforms": [ + { + "queryStatement": { + "value": "PACKAGE analytics_pkg AS\n PROCEDURE generate_sales_report(p_month IN VARCHAR2);\n FUNCTION calculate_commission(p_emp_id IN NUMBER, p_rate IN NUMBER) RETURN NUMBER;\nEND analytics_pkg;", + "language": "SQL" + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.analytics_schema.stored_procedures,PROD),ANALYTICS_PKG)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:46760f7f2b2d60ee82729b190423a8ec", + "urn": "urn:li:container:46760f7f2b2d60ee82729b190423a8ec" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.analytics_schema.stored_procedures,PROD),REFRESH_ANALYTICS_DATA)", + "changeType": "UPSERT", + "aspectName": "dataJobInfo", + "aspect": { + "json": { + "customProperties": { + "object_type": "PROCEDURE", + "status": "VALID", + "upstream_dependencies": "SYS.STANDARD (PACKAGE), SYS.SYS_STUB_FOR_PURITY_ANALYSIS (PACKAGE), PUBLIC.DBMS_MVIEW (SYNONYM)" + }, + "name": "REFRESH_ANALYTICS_DATA", + "type": { + "string": "Stored Procedure" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.analytics_schema.stored_procedures,PROD),REFRESH_ANALYTICS_DATA)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Stored Procedure" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.analytics_schema.stored_procedures,PROD),REFRESH_ANALYTICS_DATA)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:46760f7f2b2d60ee82729b190423a8ec" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.analytics_schema.stored_procedures,PROD),REFRESH_ANALYTICS_DATA)", + "changeType": "UPSERT", + "aspectName": "dataTransformLogic", + "aspect": { + "json": { + "transforms": [ + { + "queryStatement": { + "value": "PROCEDURE refresh_analytics_data AS\nBEGIN\n -- Refresh materialized views (creates dependencies)\n DBMS_MVIEW.REFRESH('employee_sales_summary');\n DBMS_MVIEW.REFRESH('monthly_order_summary');\nEND;", + "language": "SQL" + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.analytics_schema.stored_procedures,PROD),REFRESH_ANALYTICS_DATA)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:46760f7f2b2d60ee82729b190423a8ec", + "urn": "urn:li:container:46760f7f2b2d60ee82729b190423a8ec" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e", + "changeType": "UPSERT", + "aspectName": "containerProperties", + "aspect": { + "json": { + "customProperties": { + "platform": "oracle", + "env": "PROD", + "database": "", + "schema": "hr_schema" + }, + "name": "hr_schema", + "env": "PROD" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e", + "changeType": "UPSERT", + "aspectName": "dataPlatformInstance", + "aspect": { + "json": { + "platform": "urn:li:dataPlatform:oracle" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Schema" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.departments,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.departments,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "departments", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "hr_schema.departments", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "department_id", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(4, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "department_name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(30 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "manager_id", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(6, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "location_id", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(4, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.departments,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.departments,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e", + "urn": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "employees", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "hr_schema.employees", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "employee_id", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(6, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "first_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(20 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "last_name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(25 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "email", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(25 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "phone_number", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(20 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "hire_date", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "job_id", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(10 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "salary", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(8, 2)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "commission_pct", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(2, 2)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "manager_id", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(6, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "department_id", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(4, 0)", + "recursive": false, + "isPartOfKey": false + } + ], + "foreignKeys": [ + { + "name": "emp_dept_fk", + "foreignFields": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.departments,PROD),department_id)" + ], + "sourceFields": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD),department_id)" + ], + "foreignDataset": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.departments,PROD)" + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e", + "urn": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "SELECT\n department_id,\n COUNT(*) AS employee_count,\n AVG(salary) AS avg_salary,\n MAX(salary) AS max_salary,\n MIN(salary) AS min_salary\nFROM employees\nGROUP BY department_id" + }, + "name": "employee_summary", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "hr_schema.employee_summary", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "department_id", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(4, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "employee_count", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "avg_salary", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "max_salary", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "min_salary", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "SELECT\n department_id,\n COUNT(*) AS employee_count,\n AVG(salary) AS avg_salary,\n MAX(salary) AS max_salary,\n MIN(salary) AS min_salary\nFROM employees\nGROUP BY department_id", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e", + "urn": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.hr_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "dataFlowInfo", + "aspect": { + "json": { + "customProperties": {}, + "name": ".hr_schema.stored_procedures" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.hr_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Procedures Container" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.hr_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.hr_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.hr_schema.stored_procedures,PROD),CALCULATE_ANNUAL_SALARY_80fcded156e41b6f562fc1438f132bbb)", + "changeType": "UPSERT", + "aspectName": "dataJobInfo", + "aspect": { + "json": { + "customProperties": { + "object_type": "FUNCTION", + "status": "VALID", + "upstream_dependencies": "SYS.STANDARD (PACKAGE), SYS.SYS_STUB_FOR_PURITY_ANALYSIS (PACKAGE), HR_SCHEMA.EMPLOYEES (TABLE)" + }, + "name": "CALCULATE_ANNUAL_SALARY", + "type": { + "string": "Stored Procedure" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.hr_schema.stored_procedures,PROD),CALCULATE_ANNUAL_SALARY_80fcded156e41b6f562fc1438f132bbb)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Stored Procedure" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.hr_schema.stored_procedures,PROD),CALCULATE_ANNUAL_SALARY_80fcded156e41b6f562fc1438f132bbb)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.hr_schema.stored_procedures,PROD),CALCULATE_ANNUAL_SALARY_80fcded156e41b6f562fc1438f132bbb)", + "changeType": "UPSERT", + "aspectName": "dataTransformLogic", + "aspect": { + "json": { + "transforms": [ + { + "queryStatement": { + "value": "FUNCTION calculate_annual_salary(p_emp_id IN NUMBER) RETURN NUMBER AS\n v_salary NUMBER;\n v_commission NUMBER;\nBEGIN\n SELECT salary, NVL(commission_pct, 0) INTO v_salary, v_commission\n FROM employees\n WHERE employee_id = p_emp_id;\n\n RETURN v_salary * 12 * (1 + v_commission);\nEND;", + "language": "SQL" + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.hr_schema.stored_procedures,PROD),CALCULATE_ANNUAL_SALARY_80fcded156e41b6f562fc1438f132bbb)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e", + "urn": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.hr_schema.stored_procedures,PROD),GET_EMPLOYEE_INFO_ae548124ee515a556f8cee0139839057)", + "changeType": "UPSERT", + "aspectName": "dataJobInfo", + "aspect": { + "json": { + "customProperties": { + "object_type": "PROCEDURE", + "status": "VALID", + "upstream_dependencies": "SYS.STANDARD (PACKAGE), SYS.SYS_STUB_FOR_PURITY_ANALYSIS (PACKAGE), HR_SCHEMA.DEPARTMENTS (TABLE), HR_SCHEMA.EMPLOYEES (TABLE)" + }, + "name": "GET_EMPLOYEE_INFO", + "type": { + "string": "Stored Procedure" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.hr_schema.stored_procedures,PROD),GET_EMPLOYEE_INFO_ae548124ee515a556f8cee0139839057)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Stored Procedure" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.hr_schema.stored_procedures,PROD),GET_EMPLOYEE_INFO_ae548124ee515a556f8cee0139839057)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.hr_schema.stored_procedures,PROD),GET_EMPLOYEE_INFO_ae548124ee515a556f8cee0139839057)", + "changeType": "UPSERT", + "aspectName": "dataTransformLogic", + "aspect": { + "json": { + "transforms": [ + { + "queryStatement": { + "value": "PROCEDURE get_employee_info(p_emp_id IN NUMBER, p_cursor OUT SYS_REFCURSOR) AS\nBEGIN\n OPEN p_cursor FOR\n SELECT e.employee_id, e.first_name, e.last_name, e.salary, d.department_name\n FROM employees e\n JOIN departments d ON e.department_id = d.department_id\n WHERE e.employee_id = p_emp_id;\nEND;", + "language": "SQL" + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.hr_schema.stored_procedures,PROD),GET_EMPLOYEE_INFO_ae548124ee515a556f8cee0139839057)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e", + "urn": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:85df9745bc7f810e0552bf34641e36b7", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:85df9745bc7f810e0552bf34641e36b7", + "changeType": "UPSERT", + "aspectName": "containerProperties", + "aspect": { + "json": { + "customProperties": { + "platform": "oracle", + "env": "PROD", + "database": "", + "schema": "sales_schema" + }, + "name": "sales_schema", + "env": "PROD" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:85df9745bc7f810e0552bf34641e36b7", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:85df9745bc7f810e0552bf34641e36b7", + "changeType": "UPSERT", + "aspectName": "dataPlatformInstance", + "aspect": { + "json": { + "platform": "urn:li:dataPlatform:oracle" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:85df9745bc7f810e0552bf34641e36b7", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Schema" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:85df9745bc7f810e0552bf34641e36b7", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:85df9745bc7f810e0552bf34641e36b7" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "orders", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "sales_schema.orders", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "order_id", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(12, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "order_date", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "customer_id", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(6, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "order_status", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(8 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "order_total", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(8, 2)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "sales_rep_id", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(6, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:85df9745bc7f810e0552bf34641e36b7", + "urn": "urn:li:container:85df9745bc7f810e0552bf34641e36b7" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_items,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:85df9745bc7f810e0552bf34641e36b7" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_items,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "order_items", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "sales_schema.order_items", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "order_id", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(12, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "line_item_id", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(3, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "product_id", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(6, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "unit_price", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(8, 2)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "quantity", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(8, 0)", + "recursive": false, + "isPartOfKey": false + } + ], + "foreignKeys": [ + { + "name": "order_items_order_fk", + "foreignFields": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD),order_id)" + ], + "sourceFields": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_items,PROD),order_id)" + ], + "foreignDataset": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD)" + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_items,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_items,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:85df9745bc7f810e0552bf34641e36b7", + "urn": "urn:li:container:85df9745bc7f810e0552bf34641e36b7" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:85df9745bc7f810e0552bf34641e36b7" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "SELECT\n TO_CHAR(order_date, 'YYYY-MM') AS order_month,\n COUNT(*) AS order_count,\n SUM(order_total) AS total_revenue,\n AVG(order_total) AS avg_order_value\nFROM orders\nGROUP BY TO_CHAR(order_date, 'YYYY-MM')" + }, + "name": "order_summary", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "sales_schema.order_summary", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "order_month", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(7 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "order_count", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "total_revenue", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "avg_order_value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "SELECT\n TO_CHAR(order_date, 'YYYY-MM') AS order_month,\n COUNT(*) AS order_count,\n SUM(order_total) AS total_revenue,\n AVG(order_total) AS avg_order_value\nFROM orders\nGROUP BY TO_CHAR(order_date, 'YYYY-MM')", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:85df9745bc7f810e0552bf34641e36b7", + "urn": "urn:li:container:85df9745bc7f810e0552bf34641e36b7" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.sales_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "dataFlowInfo", + "aspect": { + "json": { + "customProperties": {}, + "name": ".sales_schema.stored_procedures" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.sales_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Procedures Container" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.sales_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.sales_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.sales_schema.stored_procedures,PROD),GET_ORDER_TOTAL_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "dataJobInfo", + "aspect": { + "json": { + "customProperties": { + "object_type": "FUNCTION", + "status": "VALID", + "upstream_dependencies": "SYS.STANDARD (PACKAGE), SYS.SYS_STUB_FOR_PURITY_ANALYSIS (PACKAGE), SALES_SCHEMA.ORDER_ITEMS (TABLE)" + }, + "name": "GET_ORDER_TOTAL", + "type": { + "string": "Stored Procedure" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.sales_schema.stored_procedures,PROD),GET_ORDER_TOTAL_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Stored Procedure" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.sales_schema.stored_procedures,PROD),GET_ORDER_TOTAL_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:85df9745bc7f810e0552bf34641e36b7" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.sales_schema.stored_procedures,PROD),GET_ORDER_TOTAL_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "dataTransformLogic", + "aspect": { + "json": { + "transforms": [ + { + "queryStatement": { + "value": "FUNCTION get_order_total(p_order_id IN NUMBER) RETURN NUMBER AS\n v_total NUMBER := 0;\nBEGIN\n SELECT SUM(unit_price * quantity) INTO v_total\n FROM order_items\n WHERE order_id = p_order_id;\n\n RETURN NVL(v_total, 0);\nEND;", + "language": "SQL" + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.sales_schema.stored_procedures,PROD),GET_ORDER_TOTAL_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "dataJobInputOutput", + "aspect": { + "json": { + "inputDatasets": [ + "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_items,PROD)" + ], + "outputDatasets": [ + "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.v_total,PROD)" + ], + "fineGrainedLineages": [ + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_items,PROD),quantity)", + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_items,PROD),unit_price)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.v_total,PROD),sum%28\"order_items\".\"unit_price\" * \"order_items\".\"quantity\"%29)" + ], + "transformOperation": "SQL: SUM(\"ORDER_ITEMS\".\"UNIT_PRICE\" * \"ORDER_ITEMS\".\"QUANTITY\") AS \"_col_0\"", + "confidenceScore": 0.35 + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.sales_schema.stored_procedures,PROD),GET_ORDER_TOTAL_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:85df9745bc7f810e0552bf34641e36b7", + "urn": "urn:li:container:85df9745bc7f810e0552bf34641e36b7" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.sales_schema.stored_procedures,PROD),PROCESS_ORDER_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "dataJobInfo", + "aspect": { + "json": { + "customProperties": { + "object_type": "PROCEDURE", + "status": "VALID", + "upstream_dependencies": "SYS.STANDARD (PACKAGE), SYS.SYS_STUB_FOR_PURITY_ANALYSIS (PACKAGE), HR_SCHEMA.EMPLOYEES (TABLE), SALES_SCHEMA.ORDERS (TABLE)" + }, + "name": "PROCESS_ORDER", + "type": { + "string": "Stored Procedure" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.sales_schema.stored_procedures,PROD),PROCESS_ORDER_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Stored Procedure" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.sales_schema.stored_procedures,PROD),PROCESS_ORDER_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:85df9745bc7f810e0552bf34641e36b7" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.sales_schema.stored_procedures,PROD),PROCESS_ORDER_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "dataTransformLogic", + "aspect": { + "json": { + "transforms": [ + { + "queryStatement": { + "value": "PROCEDURE process_order(p_order_id IN NUMBER) AS\n v_sales_rep_id NUMBER;\n v_emp_name VARCHAR2(50);\nBEGIN\n -- Get sales rep info from HR schema\n SELECT o.sales_rep_id INTO v_sales_rep_id\n FROM orders o\n WHERE o.order_id = p_order_id;\n\n -- Get employee name from HR schema (creates dependency)\n SELECT first_name || ' ' || last_name INTO v_emp_name\n FROM hr_schema.employees\n WHERE employee_id = v_sales_rep_id;\n\n -- Update order status\n UPDATE orders\n SET order_status = 'PROCESSED'\n WHERE order_id = p_order_id;\n\n -- Log processing (this would create dependency on a log table if it existed)\n NULL; -- Placeholder for logging logic\nEND;", + "language": "SQL" + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.sales_schema.stored_procedures,PROD),PROCESS_ORDER_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "dataJobInputOutput", + "aspect": { + "json": { + "inputDatasets": [ + "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD)", + "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD)" + ], + "outputDatasets": [ + "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD)", + "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.v_emp_name,PROD)", + "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.v_sales_rep_id,PROD)" + ], + "fineGrainedLineages": [ + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD),first_name)", + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD),last_name)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.v_emp_name,PROD),\"employees\".\"first_name\" || ' ' || \"employees\".\"last_name\")" + ], + "transformOperation": "SQL: \"EMPLOYEES\".\"FIRST_NAME\" || ' ' || \"EMPLOYEES\".\"LAST_NAME\" AS \"_col_0\"", + "confidenceScore": 0.35 + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD),sales_rep_id)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.v_sales_rep_id,PROD),sales_rep_id)" + ], + "transformOperation": "COPY: \"O\".\"SALES_REP_ID\" AS \"SALES_REP_ID\"", + "confidenceScore": 0.35 + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.sales_schema.stored_procedures,PROD),PROCESS_ORDER_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:85df9745bc7f810e0552bf34641e36b7", + "urn": "urn:li:container:85df9745bc7f810e0552bf34641e36b7" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "changeType": "UPSERT", + "aspectName": "containerProperties", + "aspect": { + "json": { + "customProperties": { + "platform": "oracle", + "env": "PROD", + "database": "", + "schema": "system" + }, + "name": "system", + "env": "PROD" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "changeType": "UPSERT", + "aspectName": "dataPlatformInstance", + "aspect": { + "json": { + "platform": "urn:li:dataPlatform:oracle" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Schema" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_dictstate$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_dictstate$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_dictstate$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_dictstate$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "start_scnbas", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scnwrp", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "end_scnbas", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "end_scnwrp", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "redo_thread", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "rbasqn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "rbablk", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "rbabyte", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_dictstate$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_dictstate$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gtlo,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gtlo,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_gtlo", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_gtlo", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "KEYOBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "lvlcnt", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "BASEOBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "BASEOBJV#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "LVL1OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "LVL2OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "LVL0TYPE#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "LVL1TYPE#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "LVL2TYPE#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OWNER#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ownername", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "lvl0name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "lvl1name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "lvl2name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "intcols", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "cols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "kernelcols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "tab_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "trigflag", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ASSOC#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "obj_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TS#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "tsname", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(90 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "property", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scn", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "drop_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xidusn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xidslt", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xidsqn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(1000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare4", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare5", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare6", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare7", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare8", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare9", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "parttype", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "subparttype", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "unsupportedcols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "complextypecols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ntparentobjnum", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ntparentobjversion", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ntparentintcolnum", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnrtloflags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnrmcv", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(30 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "acdrflags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ACDRTSOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ACDRROWTSINTCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gtlo,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gtlo,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gtcs,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gtcs,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_gtcs", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_gtcs", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "OBJV#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "SEGCOL#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INTCOL#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "colname", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TYPE#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "length", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "precision", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "scale", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "interval_leading_precision", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "interval_trailing_precision", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "property", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "toid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "charsetid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "charsetform", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "typename", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "fqcolname", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "numintcols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "numattrs", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "adtorder", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(1000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare4", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare5", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare6", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare7", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare8", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare9", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "COL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xtypeschemaname", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xtypename", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xfqcolname", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xtopintcol", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xreffedtableobjn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xreffedtableobjv", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xcoltypeflags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xopqtypetype", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xopqtypeflags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xopqlobintcol", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xopqobjintcol", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xxmlintcol", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "EAOWNER#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "eamkeyid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(192 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "eaencalg", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "eaintalg", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "eacolklc", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "eaklclen", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "eaflags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnrderivedflags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "collid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "COLLINTCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ACDRRESCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gtcs,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gtcs,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_seq_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_seq_gg,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_seq_gg", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_seq_gg", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "commit_scn", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "drop_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "seq_flags", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OWNER#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ownername", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "objname", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "seqcache", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "seqinc", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare4", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_seq_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_seq_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_con_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_con_gg,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_con_gg", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_con_gg", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "CON#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "commit_scn", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "drop_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "BASEOBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "BASEOBJV#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "flags", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INDEXOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare4", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare5", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare6", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_con_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_con_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_concol_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_concol_gg,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_concol_gg", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_concol_gg", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "CON#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "commit_scn", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "INTCOL#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "POS#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_concol_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_concol_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_ind_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_ind_gg,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_ind_gg", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_ind_gg", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "commit_scn", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "drop_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "BASEOBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "BASEOBJV#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "flags", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OWNER#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ownername", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare4", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare5", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare6", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_ind_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_ind_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_indcol_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_indcol_gg,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_indcol_gg", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_indcol_gg", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "commit_scn", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "INTCOL#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "POS#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_indcol_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_indcol_gg,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_shard_ts,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_shard_ts,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_shard_ts", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_shard_ts", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "tablespace_name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(90 CHAR)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "chunk_number", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scn", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "drop_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_shard_ts,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_shard_ts,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_tspart,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_tspart,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_tspart", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_tspart", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "TS#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scn", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "drop_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_tspart,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_tspart,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_ts,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_ts,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_ts", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_ts", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "TS#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(90 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scn", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "drop_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_ts,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_ts,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gsii,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gsii,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_gsii", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_gsii", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "BO#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INDTYPE#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "drop_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(1000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare4", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gsii,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gsii,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gsba,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gsba,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_gsba", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_gsba", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "as_of_scn", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "fdo_length", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "fdo_value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "charsetid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ncharsetid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "dbtimezone_len", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "dbtimezone_value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(192 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(1000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_spare4", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_global_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gsba,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_gsba,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_user,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_user,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrc_user", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrc_user", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "USER#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scn", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "drop_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1_c", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2_c", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3_c", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_user,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrc_user,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_seed$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_seed$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_seed$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_seed$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "seed_version", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "gather_version", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "schemaname", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "OBJV#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "table_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "col_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "COL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INTCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "SEGCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TYPE#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "length", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "PRECISION#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "scale", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "null$", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_seed$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_seed$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_dictionary$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_dictionary$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_dictionary$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_dictionary$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "db_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(27 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_id", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(20, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_created", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(20 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_dict_created", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(20 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_dict_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_thread_map", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_txn_scnbas", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_txn_scnwrp", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "DB_RESETLOGS_CHANGE#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_resetlogs_time", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(20 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_version_time", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(20 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_redo_type_id", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(8 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_redo_release", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(60 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_character_set", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(192 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_version", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(240 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_status", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(240 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_global_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_dict_maxobjects", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_dict_objectcount", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "pdb_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "pdb_id", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "pdb_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "pdb_dbid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "pdb_guid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "pdb_create_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "pdb_count", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "pdb_global_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "FED_ROOT_CON_ID#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_dictionary$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_dictionary$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_obj$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_obj$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_obj$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_obj$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OBJV#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OWNER#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "namespace", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "subname", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TYPE#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "oid$", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "remoteowner", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "linkname", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "stime", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scnbas", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scnwrp", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_obj$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_obj$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tab$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tab$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_tab$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_tab$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "TS#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "cols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "property", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "intcols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "kernelcols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "BOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "trigflag", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "acdrflags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ACDRTSOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ACDRROWTSINTCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tab$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tab$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_col$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_col$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_col$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_col$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "COL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "SEGCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TYPE#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "length", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "PRECISION#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "scale", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "null$", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INTCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "property", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "charsetid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "charsetform", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "collid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "COLLINTCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ACDRRESCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_col$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_col$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_attrcol$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_attrcol$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_attrcol$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_attrcol$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "INTCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_attrcol$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_attrcol$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ts$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ts$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_ts$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_ts$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "TS#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(90 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OWNER#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "blocksize", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scnbas", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scnwrp", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ts$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ts$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ind$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ind$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_ind$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_ind$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "BO#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "cols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TYPE#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "property", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ind$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ind$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_user$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_user$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_user$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_user$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "USER#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_user$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_user$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tabpart$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tabpart$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_tabpart$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_tabpart$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "TS#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "PART#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "BO#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tabpart$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tabpart$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tabsubpart$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tabsubpart$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_tabsubpart$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_tabsubpart$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "DATAOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "POBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "SUBPART#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TS#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tabsubpart$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tabsubpart$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tabcompart$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tabcompart$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_tabcompart$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_tabcompart$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "BO#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "PART#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tabcompart$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_tabcompart$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_type$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_type$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_type$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_type$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "VERSION#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "version", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "tvoid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "typecode", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "properties", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "attributes", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "methods", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "hiddenmethods", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "supertypes", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "subtypes", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "externtype", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "externname", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "helperclassname", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "local_attrs", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "local_methods", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "typeid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "roottoid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "supertoid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "hashcode", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "toid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_type$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_type$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_coltype$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_coltype$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_coltype$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_coltype$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "COL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INTCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "toid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "VERSION#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "packed", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "intcols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INTCOL#S", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TYPIDCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "SYNOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_coltype$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_coltype$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_attribute$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_attribute$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_attribute$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_attribute$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "VERSION#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ATTRIBUTE#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "attr_toid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ATTR_VERSION#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "SYNOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "properties", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "charsetid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "charsetform", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "length", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "PRECISION#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "scale", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "externname", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xflags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare4", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare5", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "setter", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "getter", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "toid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_attribute$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_attribute$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_lob$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_lob$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_lob$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_lob$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "INTCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "COL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "LOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "chunk", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_lob$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_lob$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_con$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_con$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_con$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_con$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OWNER#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "CON#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scnbas", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scnwrp", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_con$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_con$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_container$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_container$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_container$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_container$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "CON_ID#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "dbid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "con_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "create_scnwrp", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "create_scnbas", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "status", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "vsn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "FED_ROOT_CON_ID#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_container$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_container$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_cdef$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_cdef$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_cdef$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_cdef$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "CON#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "cols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TYPE#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "ROBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "RCON#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "enabled", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "defer", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_cdef$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_cdef$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ccol$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ccol$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_ccol$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_ccol$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "CON#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "COL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "POS#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INTCOL#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ccol$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ccol$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_icol$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_icol$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_icol$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_icol$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "BO#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "COL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "POS#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "SEGCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INTCOL#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_icol$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_icol$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_lobfrag$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_lobfrag$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_lobfrag$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_lobfrag$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "FRAGOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "PARENTOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TABFRAGOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INDFRAGOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "FRAG#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_lobfrag$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_lobfrag$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_indpart$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_indpart$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_indpart$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_indpart$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "BO#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "PART#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TS#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_indpart$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_indpart$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_indsubpart$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_indsubpart$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_indsubpart$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_indsubpart$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "DATAOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "POBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "SUBPART#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "TS#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_indsubpart$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_indsubpart$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_indcompart$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_indcompart$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_indcompart$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_indcompart$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "DATAOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "BO#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "PART#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_indcompart$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_indcompart$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_logmnr_buildlog,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_logmnr_buildlog,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_logmnr_buildlog", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_logmnr_buildlog", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "build_date", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(20 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_txn_scnbas", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "db_txn_scnwrp", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "current_build_state", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "completion_status", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "marked_log_file_low_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "initial_xid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(22 CHAR)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "cdb_xid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(22 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_logmnr_buildlog,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_logmnr_buildlog,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ntab$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ntab$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_ntab$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_ntab$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "COL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INTCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "NTAB#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ntab$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_ntab$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_opqtype$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_opqtype$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_opqtype$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_opqtype$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "INTCOL#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "type", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "lobcol", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "objcol", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "extracol", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "schemaoid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "elemnum", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "schemaurl", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_opqtype$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_opqtype$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_subcoltype$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_subcoltype$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_subcoltype$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_subcoltype$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "INTCOL#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "toid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "VERSION#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "intcols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INTCOL#S", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "SYNOBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_subcoltype$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_subcoltype$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_kopm$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_kopm$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_kopm$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_kopm$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "length", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "metadata", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_kopm$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_kopm$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_props$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_props$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_props$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_props$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "value$", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "comment$", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(384 CHAR)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_props$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_props$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_enc$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_enc$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_enc$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_enc$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OBJ#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "OWNER#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "encalg", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "intalg", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "colklc", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "klclen", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "flag", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "mkeyid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(192 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_enc$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_enc$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_refcon$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_refcon$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_refcon$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_refcon$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "COL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "INTCOL#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "reftyp", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "stabid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "expctoid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BytesType": {} + } + }, + "nativeDataType": "RAW", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_refcon$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_refcon$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_idnseq$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_idnseq$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_idnseq$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_idnseq$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "INTCOL#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "SEQOBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "startwith", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_idnseq$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_idnseq$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_partobj$,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_partobj$,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_partobj$", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_partobj$", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "parttype", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "partcnt", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "partkeycols", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "DEFTS#", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "defpctfree", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "defpctused", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "defpctthres", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "definitrans", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "defmaxtrans", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "deftiniexts", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "defextsize", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "defminexts", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "defmaxexts", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "defextpct", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "deflists", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "defgroups", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "deflogging", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "definclcol", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "parameters", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(3000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "OBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_uid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "logmnr_flags", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(22, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_partobj$,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_partobj$,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrp_ctas_part_map,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrp_ctas_part_map,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnrp_ctas_part_map", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnrp_ctas_part_map", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "BASEOBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "BASEOBJV#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "KEYOBJ#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "PART#", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(1000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrp_ctas_part_map,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnrp_ctas_part_map,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_shard_ts,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_shard_ts,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logmnr_shard_ts", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logmnr_shard_ts", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "logmnr_uid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "tablespace_name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(90 CHAR)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "chunk_number", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scnbas", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "start_scnwrp", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_shard_ts,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logmnr_shard_ts,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logstdby$apply_progress,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logstdby$apply_progress,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "logstdby$apply_progress", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.logstdby$apply_progress", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "xidusn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xidslt", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "xidsqn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "commit_scn", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "commit_time", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "spare3", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(2000 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logstdby$apply_progress,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.logstdby$apply_progress,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_workload,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_workload,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "" + }, + "name": "mview_workload", + "description": "This view gives DBA access to shared workload", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.mview_workload", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "workloadid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "import_time", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "queryid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "application", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "cardinality", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "resultsize", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "lastuse", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "frequency", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "owner", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "priority", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "query", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "LONG", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "responsetime", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_workload,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_workload,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_workload,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_filter,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_filter,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "" + }, + "name": "mview_filter", + "description": "Workload filter records", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.mview_filter", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "filterid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "subfilternum", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "subfiltertype", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(12 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "str_value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(1028 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "num_value1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "num_value2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "date_value1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "date_value2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_filter,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_filter,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_filter,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_log,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_log,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "" + }, + "name": "mview_log", + "description": "Advisor session log", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.mview_log", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "id", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "filterid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "run_begin", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "run_end", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "type", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(11 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "status", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(11 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "message", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(2000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "completed", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "total", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "error_code", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(20 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_log,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_log,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_log,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_filterinstance,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_filterinstance,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "" + }, + "name": "mview_filterinstance", + "description": "Workload filter instance records", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.mview_filterinstance", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "runid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "filterid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "subfilternum", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "subfiltertype", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(12 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "str_value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(1028 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "num_value1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "num_value2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "date_value1", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "date_value2", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_filterinstance,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_filterinstance,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_filterinstance,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_recommendations,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_recommendations,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "" + }, + "name": "mview_recommendations", + "description": "This view gives DBA access to summary recommendations", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.mview_recommendations", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "runid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "all_tables", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(2000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "fact_tables", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(1000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "grouping_levels", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(2000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "query_text", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "LONG", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "recommendation_number", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "recommended_action", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(6 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "mview_owner", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "mview_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "storage_in_bytes", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "pct_performance_gain", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "benefit_to_cost_ratio", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_recommendations,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_recommendations,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_recommendations,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_evaluations,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_evaluations,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "" + }, + "name": "mview_evaluations", + "description": "This view gives DBA access to summary evaluation output", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.mview_evaluations", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "runid", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "mview_owner", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "mview_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "rank", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "storage_in_bytes", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "frequency", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "cumulative_benefit", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "benefit_to_cost_ratio", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_evaluations,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_evaluations,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_evaluations,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_exceptions,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_exceptions,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "" + }, + "name": "mview_exceptions", + "description": "This view gives DBA access to dimension validation results", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.mview_exceptions", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "runid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "owner", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "table_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "dimension_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "relationship", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(11 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "bad_rowid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NullType": {} + } + }, + "nativeDataType": "null", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_exceptions,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_exceptions,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.mview_exceptions,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.scheduler_program_args,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.scheduler_program_args,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "" + }, + "name": "scheduler_program_args", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.scheduler_program_args", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "owner", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "program_name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "argument_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "argument_position", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "argument_type", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(257 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "metadata_attribute", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(19 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "default_value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "default_anydata_value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NullType": {} + } + }, + "nativeDataType": "null", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "out_argument", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(5 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.scheduler_program_args,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.scheduler_program_args,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.scheduler_program_args,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.scheduler_job_args,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.scheduler_job_args,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "" + }, + "name": "scheduler_job_args", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.scheduler_job_args", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "owner", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "job_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "argument_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "argument_position", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "argument_type", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(257 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(4000 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "anydata_value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NullType": {} + } + }, + "nativeDataType": "null", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "out_argument", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(5 CHAR)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.scheduler_job_args,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.scheduler_job_args,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.scheduler_job_args,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "SELECT PRODUCT, USERID, ATTRIBUTE, SCOPE,\n NUMERIC_VALUE, CHAR_VALUE, DATE_VALUE, LONG_VALUE\n FROM SQLPLUS_PRODUCT_PROFILE\n WHERE USERID = 'PUBLIC' OR\n USERID LIKE SYS_CONTEXT('USERENV','CURRENT_USER')" + }, + "name": "product_privs", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "system.product_privs", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "product", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(30 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "userid", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(128 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "attribute", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(240 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "scope", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(240 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "numeric_value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(15, 2)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "char_value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(240 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "date_value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "long_value", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "LONG", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "SELECT PRODUCT, USERID, ATTRIBUTE, SCOPE,\n NUMERIC_VALUE, CHAR_VALUE, DATE_VALUE, LONG_VALUE\n FROM SQLPLUS_PRODUCT_PROFILE\n WHERE USERID = 'PUBLIC' OR\n USERID LIKE SYS_CONTEXT('USERENV','CURRENT_USER')", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.system.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "dataFlowInfo", + "aspect": { + "json": { + "customProperties": {}, + "name": ".system.stored_procedures" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.system.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Procedures Container" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.system.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.system.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$COL_GG_TABF_PUBLIC_ef2341af0dcac8651a66e2477d17845f)", + "changeType": "UPSERT", + "aspectName": "dataJobInfo", + "aspect": { + "json": { + "customProperties": { + "object_type": "FUNCTION", + "status": "VALID", + "upstream_dependencies": "SYS.LOGMNR_DICT_CACHE (PACKAGE), SYS.STANDARD (PACKAGE), SYS.SYS_STUB_FOR_PURITY_ANALYSIS (PACKAGE), PUBLIC.PLITBLM (SYNONYM)" + }, + "name": "LOGMNR$COL_GG_TABF_PUBLIC", + "type": { + "string": "Stored Procedure" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$COL_GG_TABF_PUBLIC_ef2341af0dcac8651a66e2477d17845f)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Stored Procedure" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$COL_GG_TABF_PUBLIC_ef2341af0dcac8651a66e2477d17845f)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$COL_GG_TABF_PUBLIC_ef2341af0dcac8651a66e2477d17845f)", + "changeType": "UPSERT", + "aspectName": "dataTransformLogic", + "aspect": { + "json": { + "transforms": [ + { + "queryStatement": { + "value": "FUNCTION LOGMNR$COL_GG_TABF_PUBLIC wrapped\na000000\n1\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\n8\n237 185\nnkvJV1w6wH1y7mRApzf9mGuebNUwgxDILkhGfHQCmP8+Vi4fyqh3SG1Fyq+pCts1OlgnK761\nYuzKBA4JE5DNwZzBIF/Y4ZM5eUlquVyTkOg+AodK3vQJt9NLvPITXbP42O37gO+zKr4BQEJk\nypwrP1U/Pf6MLZONN8LUaVqHCN87T14HqHs5taX7LhLXQ2lCVBE1Ll8dyB9CDOlbyvQS/lrb\n+0n1pQi9IJAWySL85ChAqnTaqFJm0YeToD4lZ8UUPQqIZNoX0x73WK9OzsmdBrvEC97iduxe\nPEXVkxF6xklPod6yOGBvW7DAFMBgf+LajDLVKOAwB2EAiKCXYMuTUTtMYYkCFFf4sj1rCpsj\nTLth6TSru530aM2HP6bEbm3m\n", + "language": "SQL" + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$COL_GG_TABF_PUBLIC_ef2341af0dcac8651a66e2477d17845f)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$GSBA_GG_TABF_PUBLIC_5d2d46c2c96d70c5e0c9ceee5faa26d1)", + "changeType": "UPSERT", + "aspectName": "dataJobInfo", + "aspect": { + "json": { + "customProperties": { + "object_type": "FUNCTION", + "status": "VALID", + "upstream_dependencies": "SYS.LOGMNR_DICT_CACHE (PACKAGE), SYS.STANDARD (PACKAGE), SYS.SYS_STUB_FOR_PURITY_ANALYSIS (PACKAGE), PUBLIC.PLITBLM (SYNONYM)" + }, + "name": "LOGMNR$GSBA_GG_TABF_PUBLIC", + "type": { + "string": "Stored Procedure" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$GSBA_GG_TABF_PUBLIC_5d2d46c2c96d70c5e0c9ceee5faa26d1)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Stored Procedure" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$GSBA_GG_TABF_PUBLIC_5d2d46c2c96d70c5e0c9ceee5faa26d1)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$GSBA_GG_TABF_PUBLIC_5d2d46c2c96d70c5e0c9ceee5faa26d1)", + "changeType": "UPSERT", + "aspectName": "dataTransformLogic", + "aspect": { + "json": { + "transforms": [ + { + "queryStatement": { + "value": "FUNCTION LOGMNR$GSBA_GG_TABF_PUBLIC wrapped\na000000\n1\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\n8\n206 171\n6gxi/CQwK1I5Rfwuw/SXrOGpVRYwgwLI1yfbfHRGEjNe54OE4QwRZCoA20oG536tzgcBrj+1\nxE3tE8jIhAoTlUdUmkdYMmZycO1SdiJZwwt/6BrM1wHXl/E5+3Ip2NXzC9j8v4+KjkD9d5AT\np05eEsEWjU1CBTMSpjZZrXzbgFl9QNnQ+zJGjSug21f76ajs78m6anxz7vFcTcem6XpAgKjc\nEXzd/ijP8qiOqwblTfnXcRslJn3MljD02u+5fh9NBctOmnaw/tOjRCFPUhY8I9gCoMptjG7U\nrHEIFzHOFyxBEdulRGq4ngSgcm7l2yOdSHgNM8rO2vUH4gozvJoLE1S8GBBzG/wrvHPhACQ/\n2w==\n", + "language": "SQL" + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$GSBA_GG_TABF_PUBLIC_5d2d46c2c96d70c5e0c9ceee5faa26d1)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$KEY_GG_TABF_PUBLIC_77a58b36bdddafb91baa24311fe59af7)", + "changeType": "UPSERT", + "aspectName": "dataJobInfo", + "aspect": { + "json": { + "customProperties": { + "object_type": "FUNCTION", + "status": "VALID", + "upstream_dependencies": "SYS.LOGMNR_DICT_CACHE (PACKAGE), SYS.STANDARD (PACKAGE), SYS.SYS_STUB_FOR_PURITY_ANALYSIS (PACKAGE), PUBLIC.PLITBLM (SYNONYM)" + }, + "name": "LOGMNR$KEY_GG_TABF_PUBLIC", + "type": { + "string": "Stored Procedure" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$KEY_GG_TABF_PUBLIC_77a58b36bdddafb91baa24311fe59af7)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Stored Procedure" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$KEY_GG_TABF_PUBLIC_77a58b36bdddafb91baa24311fe59af7)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$KEY_GG_TABF_PUBLIC_77a58b36bdddafb91baa24311fe59af7)", + "changeType": "UPSERT", + "aspectName": "dataTransformLogic", + "aspect": { + "json": { + "transforms": [ + { + "queryStatement": { + "value": "FUNCTION LOGMNR$KEY_GG_TABF_PUBLIC wrapped\na000000\n1\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\n8\n2a0 1a1\n3O4I5hDO715d8A2tqbxMCflFW0owg/D319xqfC9Grfg+K6yE71zMvtNS45AyRXBk77WpI5v4\nnUSfE2lbvUYgk3JHySIe28XxC3xIYYpPGQjxwa3GzPw0FN5aN6kerQQTHUBp29Dd+vLSgBaC\n2pAFrq059ZvN0ZPN11XG/2RuDY7HaTQu/QffhnY8rVlNxpFmbkVidwtZQahx5qIFu9Uww/tv\no1AvhjaORi898/KiPtOqv7LpsPFbyNuMnZEG48cxtZuesMBJFP/bKtgU2DN69xiT8Pxf+N2n\ng0D2ximYzZqwY/4dBQj9dyQDuXRFo40hdqtWw0L96zV6723aQ8Xp0cqBaZj2wWTI4+6Ikry9\nzY0Mdm3bV8TYqsOa+zT4fnikGO0eYbTFHEiW9QUbl/UwzuERwk8p\n", + "language": "SQL" + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$KEY_GG_TABF_PUBLIC_77a58b36bdddafb91baa24311fe59af7)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$SEQ_GG_TABF_PUBLIC_9ae1b2cd87934dcb4bda65f8828fab9f)", + "changeType": "UPSERT", + "aspectName": "dataJobInfo", + "aspect": { + "json": { + "customProperties": { + "object_type": "FUNCTION", + "status": "VALID", + "upstream_dependencies": "SYS.LOGMNR_DICT_CACHE (PACKAGE), SYS.STANDARD (PACKAGE), SYS.SYS_STUB_FOR_PURITY_ANALYSIS (PACKAGE), PUBLIC.PLITBLM (SYNONYM)" + }, + "name": "LOGMNR$SEQ_GG_TABF_PUBLIC", + "type": { + "string": "Stored Procedure" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$SEQ_GG_TABF_PUBLIC_9ae1b2cd87934dcb4bda65f8828fab9f)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Stored Procedure" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$SEQ_GG_TABF_PUBLIC_9ae1b2cd87934dcb4bda65f8828fab9f)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$SEQ_GG_TABF_PUBLIC_9ae1b2cd87934dcb4bda65f8828fab9f)", + "changeType": "UPSERT", + "aspectName": "dataTransformLogic", + "aspect": { + "json": { + "transforms": [ + { + "queryStatement": { + "value": "FUNCTION LOGMNR$SEQ_GG_TABF_PUBLIC wrapped\na000000\n1\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\n8\n249 181\n++dDv/cHZatK7/vHG9lvR8DQCpYwg/D3AEhqfHQC2h6ONoOvOeHvTNX1S5GDyajM4j8vkSVz\nIMw+LbYS3goujprvmrB/LUpdBF8TVvjEqZpC7MCKPXWcGnTeL7ja8C2tcOdjOpRXkwL5NmPJ\nB0KqMvwepdiQDY7HUDQrBddQC1lBqHGEogWkwRJ3+2+jUC+Gpo5GTazIWS0V551NkSl3+h0W\nBhkPglLbvQDPzxWTnmu4ZuJIlTiNwTf1R0WxghyyKFjES9CJsCrGT8Fn7prlF4Mr5kx1YBGf\n5xaODtRnmVJgb65RlKbAN9+Xxf2QnQjKQL99RZAgsEwGVKNfx9lFKwHLGUwzjOxmIAXXYd/Z\n+L9osPQJjZYkNrD0pQ==\n", + "language": "SQL" + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$SEQ_GG_TABF_PUBLIC_9ae1b2cd87934dcb4bda65f8828fab9f)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$TAB_GG_TABF_PUBLIC_ef2341af0dcac8651a66e2477d17845f)", + "changeType": "UPSERT", + "aspectName": "dataJobInfo", + "aspect": { + "json": { + "customProperties": { + "object_type": "FUNCTION", + "status": "VALID", + "upstream_dependencies": "SYS.LOGMNR_DICT_CACHE (PACKAGE), SYS.STANDARD (PACKAGE), SYS.SYS_STUB_FOR_PURITY_ANALYSIS (PACKAGE), PUBLIC.PLITBLM (SYNONYM)" + }, + "name": "LOGMNR$TAB_GG_TABF_PUBLIC", + "type": { + "string": "Stored Procedure" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$TAB_GG_TABF_PUBLIC_ef2341af0dcac8651a66e2477d17845f)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Stored Procedure" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$TAB_GG_TABF_PUBLIC_ef2341af0dcac8651a66e2477d17845f)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$TAB_GG_TABF_PUBLIC_ef2341af0dcac8651a66e2477d17845f)", + "changeType": "UPSERT", + "aspectName": "dataTransformLogic", + "aspect": { + "json": { + "transforms": [ + { + "queryStatement": { + "value": "FUNCTION LOGMNR$TAB_GG_TABF_PUBLIC wrapped\na000000\n1\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\n8\n22e 181\nPRVt0FiLRPgjIhZlCZcQhnOHXQ4wgzJp2UhGfHSKrQ843hKm3gKD9swoFAS4jVcW0CsSl7W1\n6banVWdjktOVM18XyRjY4ZM5eRdquSp0ZdfHl3KJPBYqPi9LXIwum30Qh7ymgO+zTKj+R1N2\nnSs/TPnknfYLwcUdAfBryDQGEIMisMuE9XT5ix3sudhHa5tLJRjsBIDKlqL7zk2CH0C1NRAZ\nXrP7WgavVdNS3Yikz88VupZG21hTuAGspJBgCagmNWIwi9pgCIWP3rxF4p+uMps/ABEg+MBP\n6Iykm62kO6hWhVHJXkfKF/jrQFjYBTTzatr1VTcOXt/AFuagDR7isNtb//lnXh8TXyAFWyCT\nubv6GXL0aM0PP/t+DfSl\n", + "language": "SQL" + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$TAB_GG_TABF_PUBLIC_ef2341af0dcac8651a66e2477d17845f)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$USER_GG_TABF_PUBLIC_2296f4485fd114c2708254214ed8e953)", + "changeType": "UPSERT", + "aspectName": "dataJobInfo", + "aspect": { + "json": { + "customProperties": { + "object_type": "FUNCTION", + "status": "VALID", + "upstream_dependencies": "SYS.LOGMNR_DICT_CACHE (PACKAGE), SYS.STANDARD (PACKAGE), SYS.SYS_STUB_FOR_PURITY_ANALYSIS (PACKAGE), PUBLIC.PLITBLM (SYNONYM)" + }, + "name": "LOGMNR$USER_GG_TABF_PUBLIC", + "type": { + "string": "Stored Procedure" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$USER_GG_TABF_PUBLIC_2296f4485fd114c2708254214ed8e953)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Stored Procedure" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$USER_GG_TABF_PUBLIC_2296f4485fd114c2708254214ed8e953)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$USER_GG_TABF_PUBLIC_2296f4485fd114c2708254214ed8e953)", + "changeType": "UPSERT", + "aspectName": "dataTransformLogic", + "aspect": { + "json": { + "transforms": [ + { + "queryStatement": { + "value": "FUNCTION LOGMNR$USER_GG_TABF_PUBLIC wrapped\na000000\n1\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\nabcd\n8\n272 191\nVc+i+Mga8m7/BSlvXl0J+GmParYwg/D319wCfC8CTE6Ot30G8QRR0WzR8ohw8Z/y6DuL4pL5\nIDjZApnCaZgeKa1OTjLj2B2tOYZg2ZuOAPKrxo7DeBqtn0Ahw0tubS36jP4xc+d2eQebdJMD\nc/U0JxdiAl0qIPzsltBjeoGAEsxUk0aubCMJmysgc2d8ojil6ixQ37D7RA0HWMkh27QdOuXF\nvSwuufDunMMT8Hue9dvy4vRXj+PhuyylJSukStsxyIb234EahCXyrjDlnzbC91eoU7v5sb4D\nOvtDmggQCEViyhFXwspP9P0dOObin8JENsDJeFZYr/oVAgSHa97LRKvNZgd+f//XHlpEAOP4\nrNm5mF0wTCABbb7tc5c7uo09M+79i7en8g==\n", + "language": "SQL" + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$USER_GG_TABF_PUBLIC_2296f4485fd114c2708254214ed8e953)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.test_mview,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.test_mview,PROD)", + "changeType": "UPSERT", + "aspectName": "datasetProperties", + "aspect": { + "json": { + "customProperties": { + "materialized_view_definition": "SELECT\n COUNT(*) AS total_schemas,\n 'Test Materialized View' AS description\nFROM all_users\nWHERE username LIKE '%SCHEMA%'" + }, + "name": "test_mview", + "tags": [] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.test_mview,PROD)", + "changeType": "UPSERT", + "aspectName": "schemaMetadata", + "aspect": { + "json": { + "schemaName": "system.test_mview", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.test_mview,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.test_mview,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": true, + "viewLogic": "SELECT\n COUNT(*) AS total_schemas,\n 'Test Materialized View' AS description\nFROM all_users\nWHERE username LIKE '%SCHEMA%'", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.test_mview,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:f168a130824e2bed58c76e305bf4631c", + "urn": "urn:li:container:f168a130824e2bed58c76e305bf4631c" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,analytics_schema.simple_analytics,PROD)", + "changeType": "UPSERT", + "aspectName": "upstreamLineage", + "aspect": { + "json": { + "upstreams": [ + { + "auditStamp": { + "time": 1615443388097, + "actor": "urn:li:corpuser:_ingestion" + }, + "created": { + "time": 0, + "actor": "urn:li:corpuser:_ingestion" + }, + "dataset": "urn:li:dataset:(urn:li:dataPlatform:oracle,analytics_schema.dual,PROD)", + "type": "VIEW", + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Canalytics_schema.simple_analytics%2CPROD%29" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Canalytics_schema.simple_analytics%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "queryProperties", + "aspect": { + "json": { + "customProperties": {}, + "statement": { + "value": "SELECT\n SYSDATE AS refresh_date,\n 'Analytics Data' AS description,\n 1 AS record_count\nFROM DUAL", + "language": "SQL" + }, + "source": "SYSTEM", + "created": { + "time": 0, + "actor": "urn:li:corpuser:_ingestion" + }, + "lastModified": { + "time": 1761583531923, + "actor": "urn:li:corpuser:_ingestion" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Canalytics_schema.simple_analytics%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "querySubjects", + "aspect": { + "json": { + "subjects": [ + { + "entity": "urn:li:dataset:(urn:li:dataPlatform:oracle,analytics_schema.dual,PROD)" + }, + { + "entity": "urn:li:dataset:(urn:li:dataPlatform:oracle,analytics_schema.simple_analytics,PROD)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,analytics_schema.simple_analytics,PROD),refresh_date)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,analytics_schema.simple_analytics,PROD),description)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,analytics_schema.simple_analytics,PROD),record_count)" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Canalytics_schema.simple_analytics%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "dataPlatformInstance", + "aspect": { + "json": { + "platform": "urn:li:dataPlatform:oracle" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD)", + "changeType": "UPSERT", + "aspectName": "upstreamLineage", + "aspect": { + "json": { + "upstreams": [ + { + "auditStamp": { + "time": 1615443388097, + "actor": "urn:li:corpuser:_ingestion" + }, + "created": { + "time": 0, + "actor": "urn:li:corpuser:_ingestion" + }, + "dataset": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD)", + "type": "VIEW", + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Chr_schema.employee_summary%2CPROD%29" + } + ], + "fineGrainedLineages": [ + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD),department_id)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD),department_id)" + ], + "transformOperation": "COPY: \"EMPLOYEES\".\"DEPARTMENT_ID\" AS \"DEPARTMENT_ID\"", + "confidenceScore": 0.9, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Chr_schema.employee_summary%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD),salary)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD),avg_salary)" + ], + "transformOperation": "SQL: AVG(\"EMPLOYEES\".\"SALARY\") AS \"AVG_SALARY\"", + "confidenceScore": 0.9, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Chr_schema.employee_summary%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD),salary)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD),max_salary)" + ], + "transformOperation": "SQL: MAX(\"EMPLOYEES\".\"SALARY\") AS \"MAX_SALARY\"", + "confidenceScore": 0.9, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Chr_schema.employee_summary%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD),salary)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD),min_salary)" + ], + "transformOperation": "SQL: MIN(\"EMPLOYEES\".\"SALARY\") AS \"MIN_SALARY\"", + "confidenceScore": 0.9, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Chr_schema.employee_summary%2CPROD%29" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Chr_schema.employee_summary%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "queryProperties", + "aspect": { + "json": { + "customProperties": {}, + "statement": { + "value": "SELECT\n department_id,\n COUNT(*) AS employee_count,\n AVG(salary) AS avg_salary,\n MAX(salary) AS max_salary,\n MIN(salary) AS min_salary\nFROM employees\nGROUP BY\n department_id", + "language": "SQL" + }, + "source": "SYSTEM", + "created": { + "time": 0, + "actor": "urn:li:corpuser:_ingestion" + }, + "lastModified": { + "time": 1761583531926, + "actor": "urn:li:corpuser:_ingestion" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Chr_schema.employee_summary%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "querySubjects", + "aspect": { + "json": { + "subjects": [ + { + "entity": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD)" + }, + { + "entity": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD),department_id)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD),salary)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD),department_id)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD),employee_count)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD),avg_salary)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD),max_salary)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD),min_salary)" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Chr_schema.employee_summary%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "dataPlatformInstance", + "aspect": { + "json": { + "platform": "urn:li:dataPlatform:oracle" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD)", + "changeType": "UPSERT", + "aspectName": "upstreamLineage", + "aspect": { + "json": { + "upstreams": [ + { + "auditStamp": { + "time": 1615443388097, + "actor": "urn:li:corpuser:_ingestion" + }, + "created": { + "time": 0, + "actor": "urn:li:corpuser:_ingestion" + }, + "dataset": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD)", + "type": "VIEW", + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csales_schema.order_summary%2CPROD%29" + } + ], + "fineGrainedLineages": [ + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD),order_date)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD),order_month)" + ], + "transformOperation": "SQL: TO_CHAR(\"ORDERS\".\"ORDER_DATE\", 'YYYY-MM') AS \"ORDER_MONTH\"", + "confidenceScore": 0.9, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csales_schema.order_summary%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD),order_total)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD),total_revenue)" + ], + "transformOperation": "SQL: SUM(\"ORDERS\".\"ORDER_TOTAL\") AS \"TOTAL_REVENUE\"", + "confidenceScore": 0.9, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csales_schema.order_summary%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD),order_total)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD),avg_order_value)" + ], + "transformOperation": "SQL: AVG(\"ORDERS\".\"ORDER_TOTAL\") AS \"AVG_ORDER_VALUE\"", + "confidenceScore": 0.9, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csales_schema.order_summary%2CPROD%29" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csales_schema.order_summary%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "queryProperties", + "aspect": { + "json": { + "customProperties": {}, + "statement": { + "value": "SELECT\n TO_CHAR(order_date, 'YYYY-MM') AS order_month,\n COUNT(*) AS order_count,\n SUM(order_total) AS total_revenue,\n AVG(order_total) AS avg_order_value\nFROM orders\nGROUP BY\n TO_CHAR(order_date, 'YYYY-MM')", + "language": "SQL" + }, + "source": "SYSTEM", + "created": { + "time": 0, + "actor": "urn:li:corpuser:_ingestion" + }, + "lastModified": { + "time": 1761583531930, + "actor": "urn:li:corpuser:_ingestion" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csales_schema.order_summary%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "querySubjects", + "aspect": { + "json": { + "subjects": [ + { + "entity": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD)" + }, + { + "entity": "urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD),order_date)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.orders,PROD),order_total)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD),order_month)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD),order_count)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD),total_revenue)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,sales_schema.order_summary,PROD),avg_order_value)" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csales_schema.order_summary%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "dataPlatformInstance", + "aspect": { + "json": { + "platform": "urn:li:dataPlatform:oracle" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD)", + "changeType": "UPSERT", + "aspectName": "upstreamLineage", + "aspect": { + "json": { + "upstreams": [ + { + "auditStamp": { + "time": 1615443388097, + "actor": "urn:li:corpuser:_ingestion" + }, + "created": { + "time": 0, + "actor": "urn:li:corpuser:_ingestion" + }, + "dataset": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD)", + "type": "VIEW", + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29" + } + ], + "fineGrainedLineages": [ + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),product)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),product)" + ], + "transformOperation": "COPY: \"SQLPLUS_PRODUCT_PROFILE\".\"PRODUCT\" AS \"PRODUCT\"", + "confidenceScore": 0.2, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),userid)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),userid)" + ], + "transformOperation": "COPY: \"SQLPLUS_PRODUCT_PROFILE\".\"USERID\" AS \"USERID\"", + "confidenceScore": 0.2, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),attribute)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),attribute)" + ], + "transformOperation": "COPY: \"SQLPLUS_PRODUCT_PROFILE\".\"ATTRIBUTE\" AS \"ATTRIBUTE\"", + "confidenceScore": 0.2, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),scope)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),scope)" + ], + "transformOperation": "COPY: \"SQLPLUS_PRODUCT_PROFILE\".\"SCOPE\" AS \"SCOPE\"", + "confidenceScore": 0.2, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),numeric_value)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),numeric_value)" + ], + "transformOperation": "COPY: \"SQLPLUS_PRODUCT_PROFILE\".\"NUMERIC_VALUE\" AS \"NUMERIC_VALUE\"", + "confidenceScore": 0.2, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),char_value)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),char_value)" + ], + "transformOperation": "COPY: \"SQLPLUS_PRODUCT_PROFILE\".\"CHAR_VALUE\" AS \"CHAR_VALUE\"", + "confidenceScore": 0.2, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),date_value)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),date_value)" + ], + "transformOperation": "COPY: \"SQLPLUS_PRODUCT_PROFILE\".\"DATE_VALUE\" AS \"DATE_VALUE\"", + "confidenceScore": 0.2, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),long_value)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),long_value)" + ], + "transformOperation": "COPY: \"SQLPLUS_PRODUCT_PROFILE\".\"LONG_VALUE\" AS \"LONG_VALUE\"", + "confidenceScore": 0.2, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "queryProperties", + "aspect": { + "json": { + "customProperties": {}, + "statement": { + "value": "SELECT\n PRODUCT,\n USERID,\n ATTRIBUTE,\n SCOPE,\n NUMERIC_VALUE,\n CHAR_VALUE,\n DATE_VALUE,\n LONG_VALUE\nFROM SQLPLUS_PRODUCT_PROFILE\nWHERE\n USERID = 'PUBLIC' OR USERID LIKE SYS_CONTEXT('USERENV', 'CURRENT_USER')", + "language": "SQL" + }, + "source": "SYSTEM", + "created": { + "time": 0, + "actor": "urn:li:corpuser:_ingestion" + }, + "lastModified": { + "time": 1761583531935, + "actor": "urn:li:corpuser:_ingestion" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "querySubjects", + "aspect": { + "json": { + "subjects": [ + { + "entity": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD)" + }, + { + "entity": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),attribute)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),char_value)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),date_value)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),long_value)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),numeric_value)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),product)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),scope)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.sqlplus_product_profile,PROD),userid)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),product)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),userid)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),attribute)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),scope)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),numeric_value)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),char_value)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),date_value)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.product_privs,PROD),long_value)" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "dataPlatformInstance", + "aspect": { + "json": { + "platform": "urn:li:dataPlatform:oracle" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.test_mview,PROD)", + "changeType": "UPSERT", + "aspectName": "upstreamLineage", + "aspect": { + "json": { + "upstreams": [ + { + "auditStamp": { + "time": 1615443388097, + "actor": "urn:li:corpuser:_ingestion" + }, + "created": { + "time": 0, + "actor": "urn:li:corpuser:_ingestion" + }, + "dataset": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.all_users,PROD)", + "type": "VIEW", + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.test_mview%2CPROD%29" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.test_mview%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "queryProperties", + "aspect": { + "json": { + "customProperties": {}, + "statement": { + "value": "SELECT\n COUNT(*) AS total_schemas,\n 'Test Materialized View' AS description\nFROM all_users\nWHERE\n username LIKE '%SCHEMA%'", + "language": "SQL" + }, + "source": "SYSTEM", + "created": { + "time": 0, + "actor": "urn:li:corpuser:_ingestion" + }, + "lastModified": { + "time": 1761583531941, + "actor": "urn:li:corpuser:_ingestion" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.test_mview%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "querySubjects", + "aspect": { + "json": { + "subjects": [ + { + "entity": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.all_users,PROD)" + }, + { + "entity": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.test_mview,PROD)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.test_mview,PROD),total_schemas)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,system.test_mview,PROD),description)" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.test_mview%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "dataPlatformInstance", + "aspect": { + "json": { + "platform": "urn:li:dataPlatform:oracle" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.analytics_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.hr_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.sales_schema.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataFlow", + "entityUrn": "urn:li:dataFlow:(oracle,.system.stored_procedures,PROD)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.analytics_schema.stored_procedures,PROD),ANALYTICS_PKG)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.analytics_schema.stored_procedures,PROD),REFRESH_ANALYTICS_DATA)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.hr_schema.stored_procedures,PROD),CALCULATE_ANNUAL_SALARY_80fcded156e41b6f562fc1438f132bbb)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.hr_schema.stored_procedures,PROD),GET_EMPLOYEE_INFO_ae548124ee515a556f8cee0139839057)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.sales_schema.stored_procedures,PROD),GET_ORDER_TOTAL_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.sales_schema.stored_procedures,PROD),PROCESS_ORDER_261b636f7a5da1ca0277dc8c8299d392)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$COL_GG_TABF_PUBLIC_ef2341af0dcac8651a66e2477d17845f)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$GSBA_GG_TABF_PUBLIC_5d2d46c2c96d70c5e0c9ceee5faa26d1)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$KEY_GG_TABF_PUBLIC_77a58b36bdddafb91baa24311fe59af7)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$SEQ_GG_TABF_PUBLIC_9ae1b2cd87934dcb4bda65f8828fab9f)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$TAB_GG_TABF_PUBLIC_ef2341af0dcac8651a66e2477d17845f)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataJob", + "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(oracle,.system.stored_procedures,PROD),LOGMNR$USER_GG_TABF_PUBLIC_2296f4485fd114c2708254214ed8e953)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,system.test_mview,PROD)", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Canalytics_schema.simple_analytics%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Chr_schema.employee_summary%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csales_schema.order_summary%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.product_privs%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Csystem.test_mview%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-stored-procedures-test", + "lastRunId": "no-run-id-provided" + } +} +] \ No newline at end of file diff --git a/metadata-ingestion/tests/integration/oracle/golden_files/golden_mces_oracle_to_file_without_stored_procedures.json b/metadata-ingestion/tests/integration/oracle/golden_files/golden_mces_oracle_to_file_without_stored_procedures.json new file mode 100644 index 00000000000000..f0665a6d2c123f --- /dev/null +++ b/metadata-ingestion/tests/integration/oracle/golden_files/golden_mces_oracle_to_file_without_stored_procedures.json @@ -0,0 +1,986 @@ +[ +{ + "entityType": "container", + "entityUrn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "changeType": "UPSERT", + "aspectName": "containerProperties", + "aspect": { + "json": { + "customProperties": { + "platform": "oracle", + "env": "PROD", + "database": "" + }, + "name": "", + "env": "PROD" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-no-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-no-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "changeType": "UPSERT", + "aspectName": "dataPlatformInstance", + "aspect": { + "json": { + "platform": "urn:li:dataPlatform:oracle" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-no-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Database" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-no-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-no-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-no-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e", + "changeType": "UPSERT", + "aspectName": "containerProperties", + "aspect": { + "json": { + "customProperties": { + "platform": "oracle", + "env": "PROD", + "database": "", + "schema": "hr_schema" + }, + "name": "hr_schema", + "env": "PROD" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-no-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-no-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e", + "changeType": "UPSERT", + "aspectName": "dataPlatformInstance", + "aspect": { + "json": { + "platform": "urn:li:dataPlatform:oracle" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-no-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Schema" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-no-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "container", + "entityUrn": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-no-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.departments,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-no-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.departments,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "departments", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "hr_schema.departments", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "department_id", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(4, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "department_name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(30 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "manager_id", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(6, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "location_id", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(4, 0)", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-no-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.departments,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-no-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.departments,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e", + "urn": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-no-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-no-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": {}, + "name": "employees", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "hr_schema.employees", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "employee_id", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(6, 0)", + "recursive": false, + "isPartOfKey": true + }, + { + "fieldPath": "first_name", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(20 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "last_name", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(25 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "email", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(25 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "phone_number", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(20 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "hire_date", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "DATE", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "job_id", + "nullable": false, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "VARCHAR(10 CHAR)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "salary", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(8, 2)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "commission_pct", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(2, 2)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "manager_id", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(6, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "department_id", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(4, 0)", + "recursive": false, + "isPartOfKey": false + } + ], + "foreignKeys": [ + { + "name": "emp_dept_fk", + "foreignFields": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.departments,PROD),department_id)" + ], + "sourceFields": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD),department_id)" + ], + "foreignDataset": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.departments,PROD)" + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-no-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "Table" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-no-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e", + "urn": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-no-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "json": { + "container": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-no-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.Status": { + "removed": false + } + }, + { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { + "customProperties": { + "is_view": "True", + "view_definition": "SELECT\n department_id,\n COUNT(*) AS employee_count,\n AVG(salary) AS avg_salary,\n MAX(salary) AS max_salary,\n MIN(salary) AS min_salary\nFROM employees\nGROUP BY department_id" + }, + "name": "employee_summary", + "tags": [] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "hr_schema.employee_summary", + "platform": "urn:li:dataPlatform:oracle", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.MySqlDDL": { + "tableSchema": "" + } + }, + "fields": [ + { + "fieldPath": "department_id", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER(4, 0)", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "employee_count", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "avg_salary", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "max_salary", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "min_salary", + "nullable": true, + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "NUMBER", + "recursive": false, + "isPartOfKey": false + } + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-no-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "json": { + "typeNames": [ + "View" + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-no-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD)", + "changeType": "UPSERT", + "aspectName": "viewProperties", + "aspect": { + "json": { + "materialized": false, + "viewLogic": "SELECT\n department_id,\n COUNT(*) AS employee_count,\n AVG(salary) AS avg_salary,\n MAX(salary) AS max_salary,\n MIN(salary) AS min_salary\nFROM employees\nGROUP BY department_id", + "viewLanguage": "SQL" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-no-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD)", + "changeType": "UPSERT", + "aspectName": "upstreamLineage", + "aspect": { + "json": { + "upstreams": [ + { + "auditStamp": { + "time": 1615443388097, + "actor": "urn:li:corpuser:_ingestion" + }, + "created": { + "time": 0, + "actor": "urn:li:corpuser:_ingestion" + }, + "dataset": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD)", + "type": "VIEW", + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Chr_schema.employee_summary%2CPROD%29" + } + ], + "fineGrainedLineages": [ + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD),department_id)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD),department_id)" + ], + "transformOperation": "COPY: \"EMPLOYEES\".\"DEPARTMENT_ID\" AS \"DEPARTMENT_ID\"", + "confidenceScore": 0.9, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Chr_schema.employee_summary%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD),salary)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD),avg_salary)" + ], + "transformOperation": "SQL: AVG(\"EMPLOYEES\".\"SALARY\") AS \"AVG_SALARY\"", + "confidenceScore": 0.9, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Chr_schema.employee_summary%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD),salary)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD),max_salary)" + ], + "transformOperation": "SQL: MAX(\"EMPLOYEES\".\"SALARY\") AS \"MAX_SALARY\"", + "confidenceScore": 0.9, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Chr_schema.employee_summary%2CPROD%29" + }, + { + "upstreamType": "FIELD_SET", + "upstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD),salary)" + ], + "downstreamType": "FIELD", + "downstreams": [ + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD),min_salary)" + ], + "transformOperation": "SQL: MIN(\"EMPLOYEES\".\"SALARY\") AS \"MIN_SALARY\"", + "confidenceScore": 0.9, + "query": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Chr_schema.employee_summary%2CPROD%29" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-no-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD)", + "changeType": "UPSERT", + "aspectName": "browsePathsV2", + "aspect": { + "json": { + "path": [ + { + "id": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0", + "urn": "urn:li:container:3a4688ecc84119d5c1b3004e4a9a63b0" + }, + { + "id": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e", + "urn": "urn:li:container:afc89a9f6529cfeae28f6d91b84f159e" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-no-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Chr_schema.employee_summary%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "queryProperties", + "aspect": { + "json": { + "customProperties": {}, + "statement": { + "value": "SELECT\n department_id,\n COUNT(*) AS employee_count,\n AVG(salary) AS avg_salary,\n MAX(salary) AS max_salary,\n MIN(salary) AS min_salary\nFROM employees\nGROUP BY\n department_id", + "language": "SQL" + }, + "source": "SYSTEM", + "created": { + "time": 0, + "actor": "urn:li:corpuser:_ingestion" + }, + "lastModified": { + "time": 1761581995835, + "actor": "urn:li:corpuser:_ingestion" + } + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-no-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Chr_schema.employee_summary%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "querySubjects", + "aspect": { + "json": { + "subjects": [ + { + "entity": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD)" + }, + { + "entity": "urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD),department_id)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employees,PROD),salary)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD),department_id)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD),employee_count)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD),avg_salary)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD),max_salary)" + }, + { + "entity": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:oracle,hr_schema.employee_summary,PROD),min_salary)" + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-no-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Chr_schema.employee_summary%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "dataPlatformInstance", + "aspect": { + "json": { + "platform": "urn:li:dataPlatform:oracle" + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-no-procedures-test", + "lastRunId": "no-run-id-provided" + } +}, +{ + "entityType": "query", + "entityUrn": "urn:li:query:view_urn%3Ali%3Adataset%3A%28urn%3Ali%3AdataPlatform%3Aoracle%2Chr_schema.employee_summary%2CPROD%29", + "changeType": "UPSERT", + "aspectName": "status", + "aspect": { + "json": { + "removed": false + } + }, + "systemMetadata": { + "lastObserved": 1615443388097, + "runId": "oracle-no-procedures-test", + "lastRunId": "no-run-id-provided" + } +} +] \ No newline at end of file diff --git a/metadata-ingestion/tests/integration/oracle/golden_test_error_handling.json b/metadata-ingestion/tests/integration/oracle/golden_files/golden_test_error_handling.json similarity index 100% rename from metadata-ingestion/tests/integration/oracle/golden_test_error_handling.json rename to metadata-ingestion/tests/integration/oracle/golden_files/golden_test_error_handling.json diff --git a/metadata-ingestion/tests/integration/oracle/golden_test_ingest_with_database.json b/metadata-ingestion/tests/integration/oracle/golden_files/golden_test_ingest_with_database.json similarity index 100% rename from metadata-ingestion/tests/integration/oracle/golden_test_ingest_with_database.json rename to metadata-ingestion/tests/integration/oracle/golden_files/golden_test_ingest_with_database.json diff --git a/metadata-ingestion/tests/integration/oracle/golden_test_ingest_with_out_database.json b/metadata-ingestion/tests/integration/oracle/golden_files/golden_test_ingest_with_out_database.json similarity index 100% rename from metadata-ingestion/tests/integration/oracle/golden_test_ingest_with_out_database.json rename to metadata-ingestion/tests/integration/oracle/golden_files/golden_test_ingest_with_out_database.json diff --git a/metadata-ingestion/tests/integration/oracle/source_files/oracle_to_file_with_all_tables.yml b/metadata-ingestion/tests/integration/oracle/source_files/oracle_to_file_with_all_tables.yml new file mode 100644 index 00000000000000..315259f3275254 --- /dev/null +++ b/metadata-ingestion/tests/integration/oracle/source_files/oracle_to_file_with_all_tables.yml @@ -0,0 +1,26 @@ +source: + type: oracle + config: + username: system + password: example + host_port: localhost:51521 + service_name: XEPDB1 + include_stored_procedures: true + include_materialized_views: true + data_dictionary_mode: "ALL" # Test ALL_* system tables + schema_pattern: + allow: + - "^HR_SCHEMA$" + - "^SALES_SCHEMA$" + - "^ANALYTICS_SCHEMA$" + - "^SYSTEM$" + procedure_pattern: + allow: + - ".*" + profiling: + enabled: false + +sink: + type: file + config: + filename: "oracle_mces.json" diff --git a/metadata-ingestion/tests/integration/oracle/source_files/oracle_to_file_with_dba_tables.yml b/metadata-ingestion/tests/integration/oracle/source_files/oracle_to_file_with_dba_tables.yml new file mode 100644 index 00000000000000..d1200911f4244f --- /dev/null +++ b/metadata-ingestion/tests/integration/oracle/source_files/oracle_to_file_with_dba_tables.yml @@ -0,0 +1,26 @@ +source: + type: oracle + config: + username: system + password: example + host_port: localhost:51521 + service_name: XEPDB1 + include_stored_procedures: true + include_materialized_views: true + data_dictionary_mode: "DBA" # Test DBA_* system tables + schema_pattern: + allow: + - "^HR_SCHEMA$" + - "^SALES_SCHEMA$" + - "^ANALYTICS_SCHEMA$" + - "^SYSTEM$" + procedure_pattern: + allow: + - ".*" + profiling: + enabled: false + +sink: + type: file + config: + filename: "oracle_mces.json" diff --git a/metadata-ingestion/tests/integration/oracle/source_files/oracle_to_file_with_stored_procedures.yml b/metadata-ingestion/tests/integration/oracle/source_files/oracle_to_file_with_stored_procedures.yml new file mode 100644 index 00000000000000..6bdd49ebf66a27 --- /dev/null +++ b/metadata-ingestion/tests/integration/oracle/source_files/oracle_to_file_with_stored_procedures.yml @@ -0,0 +1,27 @@ +run_id: oracle-stored-procedures-test + +source: + type: oracle + config: + username: system + password: example + host_port: localhost:51521 + service_name: XEPDB1 + include_stored_procedures: true + include_materialized_views: true + data_dictionary_mode: "ALL" # Use ALL views (SYSTEM user doesn't have DBA access in PDB) + schema_pattern: + allow: + - "^HR_SCHEMA$" + - "^SALES_SCHEMA$" + - "^ANALYTICS_SCHEMA$" + - "^SYSTEM$" + procedure_pattern: + allow: + - ".*" + profiling: + enabled: false +sink: + type: file + config: + filename: "oracle_mces.json" diff --git a/metadata-ingestion/tests/integration/oracle/source_files/oracle_to_file_without_stored_procedures.yml b/metadata-ingestion/tests/integration/oracle/source_files/oracle_to_file_without_stored_procedures.yml new file mode 100644 index 00000000000000..1e20af957457e9 --- /dev/null +++ b/metadata-ingestion/tests/integration/oracle/source_files/oracle_to_file_without_stored_procedures.yml @@ -0,0 +1,20 @@ +run_id: oracle-no-procedures-test + +source: + type: oracle + config: + username: system + password: example + host_port: localhost:51521 + service_name: XEPDB1 + include_stored_procedures: false + include_materialized_views: true + schema_pattern: + allow: + - "^HR_SCHEMA" + profiling: + enabled: false +sink: + type: file + config: + filename: "oracle_mces.json" diff --git a/metadata-ingestion/tests/integration/oracle/startup/01_setup.sql b/metadata-ingestion/tests/integration/oracle/startup/01_setup.sql new file mode 100644 index 00000000000000..ceb542051551ba --- /dev/null +++ b/metadata-ingestion/tests/integration/oracle/startup/01_setup.sql @@ -0,0 +1,457 @@ +-- Oracle Integration Test Setup Script +-- This script creates comprehensive test data including stored procedures, +-- materialized views, and dependencies for testing DataHub Oracle ingestion + +-- Note: This script runs automatically during Oracle Docker container initialization +-- with SYSDBA privileges in the XEPDB1 pluggable database + +-- Connect to the PDB first +ALTER SESSION SET CONTAINER = XEPDB1; + +-- Create test schemas (local users in PDB) +CREATE USER hr_schema IDENTIFIED BY hr123; +CREATE USER sales_schema IDENTIFIED BY sales123; +CREATE USER analytics_schema IDENTIFIED BY analytics123; + +-- Grant necessary privileges including tablespace quota +GRANT CONNECT, RESOURCE, CREATE VIEW, CREATE MATERIALIZED VIEW, QUERY REWRITE TO hr_schema; +GRANT CONNECT, RESOURCE, CREATE VIEW, CREATE MATERIALIZED VIEW, QUERY REWRITE TO sales_schema; +GRANT CONNECT, RESOURCE, CREATE VIEW, CREATE MATERIALIZED VIEW, QUERY REWRITE TO analytics_schema; + +-- Grant additional system privileges needed for materialized views to all schemas +GRANT CREATE ANY MATERIALIZED VIEW TO hr_schema; +GRANT ALTER ANY MATERIALIZED VIEW TO hr_schema; +GRANT CREATE ANY MATERIALIZED VIEW TO sales_schema; +GRANT ALTER ANY MATERIALIZED VIEW TO sales_schema; +GRANT CREATE ANY MATERIALIZED VIEW TO analytics_schema; +GRANT ALTER ANY MATERIALIZED VIEW TO analytics_schema; + +-- Grant SYSTEM user privileges to create materialized views in other schemas +-- (SYSTEM already has these privileges, but let's be explicit) +-- Note: SYSTEM user should already have these privileges by default + +-- Grant tablespace quota (needed for inserting data) +ALTER USER hr_schema QUOTA UNLIMITED ON USERS; +ALTER USER sales_schema QUOTA UNLIMITED ON USERS; +ALTER USER analytics_schema QUOTA UNLIMITED ON USERS; + +-- Grant additional privileges for procedures and packages +GRANT CREATE PROCEDURE TO hr_schema; +GRANT CREATE PROCEDURE TO sales_schema; +GRANT CREATE PROCEDURE TO analytics_schema; + +-- Create HR_SCHEMA objects +ALTER SESSION SET CURRENT_SCHEMA = hr_schema; + +-- Create base tables +CREATE TABLE departments ( + department_id NUMBER(4) PRIMARY KEY, + department_name VARCHAR2(30) NOT NULL, + manager_id NUMBER(6), + location_id NUMBER(4) +); + +CREATE TABLE employees ( + employee_id NUMBER(6) PRIMARY KEY, + first_name VARCHAR2(20), + last_name VARCHAR2(25) NOT NULL, + email VARCHAR2(25) NOT NULL, + phone_number VARCHAR2(20), + hire_date DATE NOT NULL, + job_id VARCHAR2(10) NOT NULL, + salary NUMBER(8,2), + commission_pct NUMBER(2,2), + manager_id NUMBER(6), + department_id NUMBER(4), + CONSTRAINT emp_dept_fk FOREIGN KEY (department_id) REFERENCES departments(department_id) +); + +-- Insert sample data +INSERT INTO departments VALUES (10, 'Administration', 200, 1700); +INSERT INTO departments VALUES (20, 'Marketing', 201, 1800); +INSERT INTO departments VALUES (50, 'Shipping', 121, 1500); +INSERT INTO departments VALUES (60, 'IT', 103, 1400); + +INSERT INTO employees VALUES (100, 'Steven', 'King', 'SKING', '515.123.4567', DATE '2003-06-17', 'AD_PRES', 24000, NULL, NULL, 10); +INSERT INTO employees VALUES (101, 'Neena', 'Kochhar', 'NKOCHHAR', '515.123.4568', DATE '2005-09-21', 'AD_VP', 17000, NULL, 100, 10); +INSERT INTO employees VALUES (102, 'Lex', 'De Haan', 'LDEHAAN', '515.123.4569', DATE '2001-01-13', 'AD_VP', 17000, NULL, 100, 10); +INSERT INTO employees VALUES (103, 'Alexander', 'Hunold', 'AHUNOLD', '590.423.4567', DATE '2006-01-03', 'IT_PROG', 9000, NULL, 102, 60); + +-- Create HR stored procedures with dependencies +CREATE OR REPLACE PROCEDURE get_employee_info(p_emp_id IN NUMBER, p_cursor OUT SYS_REFCURSOR) AS +BEGIN + OPEN p_cursor FOR + SELECT e.employee_id, e.first_name, e.last_name, e.salary, d.department_name + FROM employees e + JOIN departments d ON e.department_id = d.department_id + WHERE e.employee_id = p_emp_id; +END; +/ + +CREATE OR REPLACE FUNCTION calculate_annual_salary(p_emp_id IN NUMBER) RETURN NUMBER AS + v_salary NUMBER; + v_commission NUMBER; +BEGIN + SELECT salary, NVL(commission_pct, 0) INTO v_salary, v_commission + FROM employees + WHERE employee_id = p_emp_id; + + RETURN v_salary * 12 * (1 + v_commission); +END; +/ + +-- Create SALES_SCHEMA objects +ALTER SESSION SET CURRENT_SCHEMA = sales_schema; + +CREATE TABLE orders ( + order_id NUMBER(12) PRIMARY KEY, + order_date DATE NOT NULL, + customer_id NUMBER(6) NOT NULL, + order_status VARCHAR2(8) NOT NULL, + order_total NUMBER(8,2), + sales_rep_id NUMBER(6) +); + +CREATE TABLE order_items ( + order_id NUMBER(12), + line_item_id NUMBER(3), + product_id NUMBER(6) NOT NULL, + unit_price NUMBER(8,2), + quantity NUMBER(8), + PRIMARY KEY (order_id, line_item_id), + CONSTRAINT order_items_order_fk FOREIGN KEY (order_id) REFERENCES orders(order_id) +); + +-- Insert sample data +INSERT INTO orders VALUES (1001, DATE '2024-01-15', 101, 'SHIPPED', 2500.00, 100); +INSERT INTO orders VALUES (1002, DATE '2024-01-16', 102, 'PENDING', 1800.00, 101); +INSERT INTO orders VALUES (1003, DATE '2024-01-17', 103, 'SHIPPED', 3200.00, 102); + +INSERT INTO order_items VALUES (1001, 1, 2001, 50.00, 10); +INSERT INTO order_items VALUES (1001, 2, 2002, 75.00, 20); +INSERT INTO order_items VALUES (1002, 1, 2003, 30.00, 60); +INSERT INTO order_items VALUES (1003, 1, 2001, 50.00, 25); +INSERT INTO order_items VALUES (1003, 2, 2004, 120.00, 15); + +-- Note: Cross-schema grants will be applied at the end of the script + +-- Create sales stored procedures with cross-schema dependencies +CREATE OR REPLACE PROCEDURE process_order(p_order_id IN NUMBER) AS + v_sales_rep_id NUMBER; + v_emp_name VARCHAR2(50); +BEGIN + -- Get sales rep info from HR schema + SELECT o.sales_rep_id INTO v_sales_rep_id + FROM orders o + WHERE o.order_id = p_order_id; + + -- Get employee name from HR schema (creates dependency) + SELECT first_name || ' ' || last_name INTO v_emp_name + FROM hr_schema.employees + WHERE employee_id = v_sales_rep_id; + + -- Update order status + UPDATE orders + SET order_status = 'PROCESSED' + WHERE order_id = p_order_id; + + -- Log processing (this would create dependency on a log table if it existed) + NULL; -- Placeholder for logging logic +END; +/ + +CREATE OR REPLACE FUNCTION get_order_total(p_order_id IN NUMBER) RETURN NUMBER AS + v_total NUMBER := 0; +BEGIN + SELECT SUM(unit_price * quantity) INTO v_total + FROM order_items + WHERE order_id = p_order_id; + + RETURN NVL(v_total, 0); +END; +/ + +-- Create ANALYTICS_SCHEMA objects with materialized views +ALTER SESSION SET CURRENT_SCHEMA = analytics_schema; + +-- Note: Materialized views will be created at the end of the script after grants are applied + +-- Create analytics stored procedures that use materialized views +CREATE OR REPLACE PROCEDURE refresh_analytics_data AS +BEGIN + -- Refresh materialized views (creates dependencies) + DBMS_MVIEW.REFRESH('employee_sales_summary'); + DBMS_MVIEW.REFRESH('monthly_order_summary'); +END; +/ + +CREATE OR REPLACE FUNCTION get_top_performer RETURN VARCHAR2 AS + v_top_performer VARCHAR2(100); +BEGIN + SELECT employee_name INTO v_top_performer + FROM ( + SELECT employee_name, total_sales + FROM employee_sales_summary + WHERE total_sales IS NOT NULL + ORDER BY total_sales DESC + ) + WHERE ROWNUM = 1; + + RETURN v_top_performer; +EXCEPTION + WHEN NO_DATA_FOUND THEN + RETURN 'No data available'; +END; +/ + +-- Create a package with multiple procedures +CREATE OR REPLACE PACKAGE analytics_pkg AS + PROCEDURE generate_sales_report(p_month IN VARCHAR2); + FUNCTION calculate_commission(p_emp_id IN NUMBER, p_rate IN NUMBER) RETURN NUMBER; +END analytics_pkg; +/ + +CREATE OR REPLACE PACKAGE BODY analytics_pkg AS + PROCEDURE generate_sales_report(p_month IN VARCHAR2) AS + v_count NUMBER; + BEGIN + -- Use both materialized views (creates dependencies) + SELECT COUNT(*) INTO v_count + FROM employee_sales_summary e + JOIN monthly_order_summary m ON 1=1 -- Simplified join for demo + WHERE m.order_month = p_month; + + -- This procedure depends on both materialized views + NULL; -- Placeholder for report generation logic + END generate_sales_report; + + FUNCTION calculate_commission(p_emp_id IN NUMBER, p_rate IN NUMBER) RETURN NUMBER AS + v_total_sales NUMBER; + BEGIN + -- Depends on employee_sales_summary materialized view + SELECT NVL(total_sales, 0) INTO v_total_sales + FROM employee_sales_summary + WHERE employee_id = p_emp_id; + + RETURN v_total_sales * p_rate; + END calculate_commission; +END analytics_pkg; +/ + +-- Now grant cross-schema access (after tables are created) +ALTER SESSION SET CURRENT_SCHEMA = system; + +-- Grant cross-schema access for lineage testing +GRANT SELECT ON hr_schema.employees TO sales_schema; +GRANT SELECT ON hr_schema.departments TO sales_schema; +GRANT SELECT ON sales_schema.orders TO analytics_schema; +GRANT SELECT ON sales_schema.order_items TO analytics_schema; +GRANT SELECT ON hr_schema.employees TO analytics_schema; +GRANT SELECT ON hr_schema.departments TO analytics_schema; + +-- Commit all changes +COMMIT; + +-- Generate sample queries for usage statistics and lineage testing +-- These queries will be processed by the SQL aggregator to generate usage statistics + +-- Simple SELECT queries on individual tables +SELECT COUNT(*) FROM hr_schema.employees; +SELECT COUNT(*) FROM hr_schema.departments; +SELECT COUNT(*) FROM sales_schema.orders; +SELECT COUNT(*) FROM sales_schema.order_items; + +-- Complex transformation queries for lineage testing +-- Multi-table JOIN with aggregation (shows table-to-table lineage) +SELECT + d.department_name, + COUNT(e.employee_id) as employee_count, + AVG(e.salary) as avg_salary, + SUM(CASE WHEN e.hire_date > SYSDATE - 365 THEN 1 ELSE 0 END) as new_hires +FROM hr_schema.employees e +JOIN hr_schema.departments d ON e.department_id = d.department_id +GROUP BY d.department_name +HAVING COUNT(e.employee_id) > 0; + +-- Cross-schema transformation query (HR + Sales lineage) +SELECT + e.employee_id, + e.first_name || ' ' || e.last_name as full_name, + d.department_name, + COUNT(o.order_id) as total_orders, + SUM(o.order_total) as total_sales, + AVG(o.order_total) as avg_order_value +FROM hr_schema.employees e +JOIN hr_schema.departments d ON e.department_id = d.department_id +LEFT JOIN sales_schema.orders o ON e.employee_id = o.sales_rep_id +GROUP BY e.employee_id, e.first_name, e.last_name, d.department_name +ORDER BY total_sales DESC NULLS LAST; + +-- Complex order analysis with item details (Sales schema lineage) +SELECT + o.order_id, + o.order_date, + o.customer_id, + COUNT(oi.line_item_id) as item_count, + SUM(oi.unit_price * oi.quantity) as calculated_total, + o.order_total, + CASE + WHEN SUM(oi.unit_price * oi.quantity) > o.order_total THEN 'DISCOUNT_APPLIED' + WHEN SUM(oi.unit_price * oi.quantity) < o.order_total THEN 'TAX_ADDED' + ELSE 'EXACT_MATCH' + END as price_analysis +FROM sales_schema.orders o +JOIN sales_schema.order_items oi ON o.order_id = oi.order_id +GROUP BY o.order_id, o.order_date, o.customer_id, o.order_total +HAVING COUNT(oi.line_item_id) > 1; + +-- Materialized view queries (shows MV usage) +SELECT employee_name, total_sales, total_orders +FROM analytics_schema.employee_sales_summary +WHERE total_sales > 1000 +ORDER BY total_sales DESC; + +SELECT order_month, order_count, total_revenue, avg_order_value +FROM analytics_schema.monthly_order_summary +WHERE order_count > 5 +ORDER BY total_revenue DESC; + +-- Window function analytics +SELECT + e.employee_id, + e.first_name, + e.last_name, + e.salary, + d.department_name, + RANK() OVER (PARTITION BY d.department_id ORDER BY e.salary DESC) as dept_salary_rank, + AVG(e.salary) OVER (PARTITION BY d.department_id) as dept_avg_salary +FROM hr_schema.employees e +JOIN hr_schema.departments d ON e.department_id = d.department_id; + +-- Subquery transformation (nested dependencies) +SELECT + dept_summary.department_name, + dept_summary.employee_count, + dept_summary.avg_salary, + dept_summary.total_sales +FROM ( + SELECT + d.department_name, + COUNT(DISTINCT e.employee_id) as employee_count, + AVG(e.salary) as avg_salary, + SUM(o.order_total) as total_sales + FROM hr_schema.departments d + LEFT JOIN hr_schema.employees e ON d.department_id = e.department_id + LEFT JOIN sales_schema.orders o ON e.employee_id = o.sales_rep_id + GROUP BY d.department_name +) dept_summary +WHERE dept_summary.employee_count > 0; + +-- Execute stored procedures to show procedure usage +BEGIN + analytics_schema.analytics_pkg.generate_sales_report('2024-01'); +END; +/ + +-- Call functions to show function usage and dependencies +SELECT + order_id, + sales_schema.get_order_total(order_id) as calculated_total, + order_total as stored_total +FROM sales_schema.orders +WHERE ROWNUM <= 10; + +-- Get top performer (function that uses materialized view) +SELECT analytics_schema.get_top_performer() as top_sales_person FROM DUAL; + +-- Execute procedure calls +BEGIN + sales_schema.process_order(1001); + sales_schema.process_order(1002); + sales_schema.process_order(1003); +END; +/ + +-- Union query across schemas (complex transformation) +SELECT 'EMPLOYEE' as record_type, first_name as name, TO_CHAR(employee_id) as id +FROM hr_schema.employees +WHERE ROWNUM <= 5 +UNION ALL +SELECT 'DEPARTMENT' as record_type, department_name as name, TO_CHAR(department_id) as id +FROM hr_schema.departments +WHERE ROWNUM <= 3; + +-- CTE (Common Table Expression) for hierarchical analysis +WITH sales_hierarchy AS ( + SELECT + e.employee_id, + e.first_name || ' ' || e.last_name as employee_name, + e.manager_id, + SUM(o.order_total) as direct_sales + FROM hr_schema.employees e + LEFT JOIN sales_schema.orders o ON e.employee_id = o.sales_rep_id + GROUP BY e.employee_id, e.first_name, e.last_name, e.manager_id +) +SELECT + sh.employee_name, + sh.direct_sales, + mgr.first_name || ' ' || mgr.last_name as manager_name +FROM sales_hierarchy sh +LEFT JOIN hr_schema.employees mgr ON sh.manager_id = mgr.employee_id +WHERE sh.direct_sales > 0; + +-- Apply all cross-schema grants now that all tables exist +-- Allow sales_schema to read from hr_schema (for procedures that join data) +GRANT SELECT ON hr_schema.employees TO sales_schema; +GRANT SELECT ON hr_schema.departments TO sales_schema; + +-- Allow analytics_schema to read from hr_schema and sales_schema (for materialized views) +GRANT SELECT ON hr_schema.employees TO analytics_schema; +GRANT SELECT ON hr_schema.departments TO analytics_schema; +GRANT SELECT ON sales_schema.orders TO analytics_schema; +GRANT SELECT ON sales_schema.order_items TO analytics_schema; + +-- Create regular views in user schemas (materialized views have privilege issues) +-- HR Schema view +ALTER SESSION SET CURRENT_SCHEMA = hr_schema; +CREATE VIEW employee_summary AS +SELECT + department_id, + COUNT(*) AS employee_count, + AVG(salary) AS avg_salary, + MAX(salary) AS max_salary, + MIN(salary) AS min_salary +FROM employees +GROUP BY department_id; + +-- Sales Schema view +ALTER SESSION SET CURRENT_SCHEMA = sales_schema; +CREATE VIEW order_summary AS +SELECT + TO_CHAR(order_date, 'YYYY-MM') AS order_month, + COUNT(*) AS order_count, + SUM(order_total) AS total_revenue, + AVG(order_total) AS avg_order_value +FROM orders +GROUP BY TO_CHAR(order_date, 'YYYY-MM'); + +-- Analytics Schema view +ALTER SESSION SET CURRENT_SCHEMA = analytics_schema; +CREATE VIEW simple_analytics AS +SELECT + SYSDATE AS refresh_date, + 'Analytics Data' AS description, + 1 AS record_count +FROM DUAL; + +-- Create a test materialized view in SYSTEM schema to test our extraction logic +-- SYSTEM user has all necessary privileges +CREATE MATERIALIZED VIEW system.test_mview AS +SELECT + COUNT(*) AS total_schemas, + 'Test Materialized View' AS description +FROM all_users +WHERE username LIKE '%SCHEMA%'; + +-- Status message +SELECT 'Oracle integration test environment with stored procedures and materialized views setup completed successfully!' AS STATUS FROM DUAL; \ No newline at end of file diff --git a/metadata-ingestion/tests/integration/oracle/startup/post_setup.sql b/metadata-ingestion/tests/integration/oracle/startup/post_setup.sql new file mode 100644 index 00000000000000..58d415a86b3e4c --- /dev/null +++ b/metadata-ingestion/tests/integration/oracle/startup/post_setup.sql @@ -0,0 +1,61 @@ +-- Post-setup script to verify the test environment +-- This script runs after the main setup and verifies everything is working + +-- Connect as SYSTEM to check the setup +CONNECT SYSTEM/example@localhost:1521/XEPDB1; + +-- Verify schemas exist +SELECT username, created, account_status +FROM dba_users +WHERE username IN ('HR_SCHEMA', 'SALES_SCHEMA', 'ANALYTICS_SCHEMA') +ORDER BY username; + +-- Verify objects were created +SELECT owner, object_type, COUNT(*) as object_count +FROM dba_objects +WHERE owner IN ('HR_SCHEMA', 'SALES_SCHEMA', 'ANALYTICS_SCHEMA') +AND object_type IN ('TABLE', 'VIEW', 'MATERIALIZED VIEW', 'PROCEDURE', 'FUNCTION', 'PACKAGE', 'PACKAGE BODY') +GROUP BY owner, object_type +ORDER BY owner, object_type; + +-- Verify stored procedures and functions +SELECT owner, object_name, object_type, status +FROM dba_objects +WHERE owner IN ('HR_SCHEMA', 'SALES_SCHEMA', 'ANALYTICS_SCHEMA') +AND object_type IN ('PROCEDURE', 'FUNCTION', 'PACKAGE') +ORDER BY owner, object_type, object_name; + +-- Verify materialized views +SELECT owner, mview_name, refresh_mode, refresh_method +FROM dba_mviews +WHERE owner IN ('HR_SCHEMA', 'SALES_SCHEMA', 'ANALYTICS_SCHEMA') +ORDER BY owner, mview_name; + +-- Verify dependencies exist +SELECT owner, name, type, referenced_owner, referenced_name, referenced_type +FROM dba_dependencies +WHERE owner IN ('HR_SCHEMA', 'SALES_SCHEMA', 'ANALYTICS_SCHEMA') +AND referenced_owner IN ('HR_SCHEMA', 'SALES_SCHEMA', 'ANALYTICS_SCHEMA') +ORDER BY owner, name; + +-- Test a simple function call that actually exists +DECLARE + v_salary NUMBER; +BEGIN + v_salary := hr_schema.calculate_annual_salary(100); + DBMS_OUTPUT.PUT_LINE('Annual salary calculation test: ' || v_salary); +EXCEPTION + WHEN OTHERS THEN + DBMS_OUTPUT.PUT_LINE('Function test failed: ' || SQLERRM); +END; +/ + +-- Display final status +SELECT 'Oracle integration test environment verification completed successfully!' AS status FROM dual; + +-- Show connection info for reference +SELECT + 'Connect with: sqlplus hr_schema/hr123@localhost:1521/XEPDB1' AS hr_connection, + 'Connect with: sqlplus sales_schema/sales123@localhost:1521/XEPDB1' AS sales_connection, + 'Connect with: sqlplus analytics_schema/analytics123@localhost:1521/XEPDB1' AS analytics_connection +FROM dual; \ No newline at end of file diff --git a/metadata-ingestion/tests/integration/oracle/test_oracle.py b/metadata-ingestion/tests/integration/oracle/test_oracle.py index 48f6fd596c9623..1c3a4dadcea3fe 100644 --- a/metadata-ingestion/tests/integration/oracle/test_oracle.py +++ b/metadata-ingestion/tests/integration/oracle/test_oracle.py @@ -1,3 +1,6 @@ +import os +import subprocess +import time from typing import Any from unittest import mock from unittest.mock import MagicMock, patch @@ -8,11 +11,90 @@ from datahub.ingestion.api.source import StructuredLogLevel from datahub.ingestion.source.sql.oracle import OracleInspectorObjectWrapper +from datahub.testing import mce_helpers from tests.integration.oracle.common import ( # type: ignore[import-untyped] OracleSourceMockDataBase, OracleTestCaseBase, ) +from tests.test_helpers.click_helpers import run_datahub_cmd +from tests.test_helpers.docker_helpers import wait_for_port + + +def is_oracle_up(container_name: str, port: int) -> bool: + """Check if Oracle is responsive on a container""" + cmd = f"docker exec {container_name} /opt/oracle/checkDBStatus.sh" + ret = subprocess.run( + cmd, + shell=True, + capture_output=True, + text=True, + ) + return ret.returncode == 0 + + +@pytest.fixture(scope="module") +def oracle_runner(docker_compose_runner, pytestconfig): + test_resources_dir = pytestconfig.rootpath / "tests/integration/oracle" + with docker_compose_runner( + test_resources_dir / "docker-compose.yml", "oracle" + ) as docker_services: + wait_for_port( + docker_services, + "testoracle", + 1521, + timeout=300, # Oracle takes longer to start than SQL Server + checker=lambda: is_oracle_up("testoracle", 1521), + ) + + # Oracle XE automatically runs setup scripts from /opt/oracle/scripts/setup/ + # Wait a bit more to ensure setup is complete + time.sleep(10) + + yield docker_services + + +SOURCE_FILES_PATH = "./tests/integration/oracle/source_files" +config_files = [f for f in os.listdir(SOURCE_FILES_PATH) if f.endswith(".yml")] + + +@pytest.mark.parametrize("config_file", config_files) +@pytest.mark.integration +def test_oracle_ingest(oracle_runner, pytestconfig, tmp_path, mock_time, config_file): + test_resources_dir = pytestconfig.rootpath / "tests/integration/oracle" + # Run the metadata ingestion pipeline. + config_file_path = (test_resources_dir / f"source_files/{config_file}").resolve() + run_datahub_cmd( + ["ingest", "-c", f"{config_file_path}"], tmp_path=tmp_path, check_result=True + ) + + # Verify the output. + mce_helpers.check_golden_file( + pytestconfig, + output_path=tmp_path / "oracle_mces.json", + golden_path=test_resources_dir + / f"golden_files/golden_mces_{config_file.replace('.yml', '.json')}", + ) + + +@pytest.mark.integration +def test_oracle_test_connection(oracle_runner): + """Test Oracle connection using the test_connection method.""" + from datahub.ingestion.source.sql.oracle import OracleSource + + config_dict = { + "username": "system", + "password": "example", + "host_port": "localhost:51521", + "service_name": "XEPDB1", + } + + report = OracleSource.test_connection(config_dict) + assert report.basic_connectivity is not None + assert report.basic_connectivity.capable + assert report.basic_connectivity.failure_reason is None + +# Mock-based tests from master branch FROZEN_TIME = "2022-02-03 07:00:00" @@ -56,7 +138,7 @@ def __init__(self, pytestconfig, tmp_path): super().__init__( pytestconfig=pytestconfig, tmp_path=tmp_path, - golden_file_name="golden_test_error_handling.json", + golden_file_name="golden_files/golden_test_error_handling.json", output_file_name="oracle_mce_output_error_handling.json", add_database_name_to_urn=False, ) @@ -152,7 +234,7 @@ def test_oracle_source_integration_with_out_database(pytestconfig, tmp_path): oracle_source_integration_test = OracleIntegrationTestCase( pytestconfig=pytestconfig, tmp_path=tmp_path, - golden_file_name="golden_test_ingest_with_out_database.json", + golden_file_name="golden_files/golden_test_ingest_with_out_database.json", output_file_name="oracle_mce_output_with_out_database.json", add_database_name_to_urn=False, ) @@ -165,7 +247,7 @@ def test_oracle_source_integration_with_database(pytestconfig, tmp_path): oracle_source_integration_test = OracleIntegrationTestCase( pytestconfig=pytestconfig, tmp_path=tmp_path, - golden_file_name="golden_test_ingest_with_database.json", + golden_file_name="golden_files/golden_test_ingest_with_database.json", output_file_name="oracle_mce_output_with_database.json", add_database_name_to_urn=True, ) diff --git a/metadata-ingestion/tests/unit/test_oracle_source.py b/metadata-ingestion/tests/unit/test_oracle_source.py index 0477044354576b..8f5d1d3f6105e6 100644 --- a/metadata-ingestion/tests/unit/test_oracle_source.py +++ b/metadata-ingestion/tests/unit/test_oracle_source.py @@ -1,9 +1,18 @@ import unittest.mock +from datetime import datetime +from unittest.mock import Mock, patch import pytest +from sqlalchemy.engine import Inspector +from datahub.configuration.common import AllowDenyPattern from datahub.ingestion.api.common import PipelineContext -from datahub.ingestion.source.sql.oracle import OracleConfig, OracleSource +from datahub.ingestion.source.sql.oracle import ( + OracleConfig, + OracleInspectorObjectWrapper, + OracleSource, +) +from datahub.ingestion.source.sql.stored_procedures.base import BaseProcedure def test_oracle_config(): @@ -43,3 +52,514 @@ def test_oracle_config(): }, PipelineContext("test-oracle-config"), ).get_workunits() + + +def test_oracle_config_stored_procedures(): + """Test Oracle configuration for stored procedures.""" + base_config = { + "username": "user", + "password": "password", + "host_port": "host:1521", + "service_name": "svc01", + } + + # Test default stored procedures configuration + config = OracleConfig.parse_obj(base_config) + assert config.include_stored_procedures is True + assert config.procedure_pattern == AllowDenyPattern.allow_all() + assert config.include_materialized_views is True + assert config.include_usage_stats is True + assert config.include_operational_stats is True + + # Test custom stored procedures configuration + custom_config = { + **base_config, + "include_stored_procedures": False, + "procedure_pattern": {"allow": ["HR.*"], "deny": ["SYS.*"]}, + "include_materialized_views": False, + "include_usage_stats": False, + "include_operational_stats": False, + } + config = OracleConfig.parse_obj(custom_config) + assert config.include_stored_procedures is False + assert config.include_materialized_views is False + assert config.include_usage_stats is False + assert config.include_operational_stats is False + assert "HR.*" in config.procedure_pattern.allow + assert "SYS.*" in config.procedure_pattern.deny + + +def test_oracle_config_data_dictionary_mode(): + """Test Oracle configuration validation for data dictionary mode.""" + base_config = { + "username": "user", + "password": "password", + "host_port": "host:1521", + "service_name": "svc01", + } + + # Test valid data dictionary modes + for mode in ["ALL", "DBA"]: + config = OracleConfig.parse_obj({**base_config, "data_dictionary_mode": mode}) + assert config.data_dictionary_mode == mode + + # Test invalid data dictionary mode + with pytest.raises(ValueError, match="Specify one of data dictionary views mode"): + OracleConfig.parse_obj({**base_config, "data_dictionary_mode": "INVALID"}) + + +class TestOracleInspectorObjectWrapper: + """Test cases for OracleInspectorObjectWrapper.""" + + def setup_method(self): + """Set up test fixtures.""" + self.mock_inspector = Mock(spec=Inspector) + self.mock_inspector.bind = Mock() + self.mock_inspector.dialect = Mock() + self.mock_inspector.dialect.normalize_name = Mock( + side_effect=lambda x: x.lower() + ) + self.mock_inspector.dialect.denormalize_name = Mock( + side_effect=lambda x: x.upper() + ) + self.mock_inspector.dialect.default_schema_name = "TEST_SCHEMA" + + self.wrapper = OracleInspectorObjectWrapper(self.mock_inspector) + + def test_get_materialized_view_names(self): + """Test getting materialized view names.""" + # Mock the database response + mock_cursor = Mock() + mock_cursor.__iter__ = Mock(return_value=iter([("MV1",), ("MV2",)])) + self.mock_inspector.bind.execute.return_value = mock_cursor + + result = self.wrapper.get_materialized_view_names("test_schema") + + assert result == ["mv1", "mv2"] + self.mock_inspector.bind.execute.assert_called_once() + call_args = self.mock_inspector.bind.execute.call_args + assert "dba_mviews" in str(call_args[0][0]).lower() + + def test_get_materialized_view_definition(self): + """Test getting materialized view definition.""" + # Reset the mock for this test + self.mock_inspector.bind.execute.reset_mock() + + mock_definition = "SELECT * FROM test_table" + self.mock_inspector.bind.execute.return_value.scalar.return_value = ( + mock_definition + ) + + result = self.wrapper.get_materialized_view_definition("test_mv", "test_schema") + + assert result == mock_definition + self.mock_inspector.bind.execute.assert_called_once() + call_args = self.mock_inspector.bind.execute.call_args + assert "dba_mviews" in str(call_args[0][0]).lower() + + +class TestOracleSource: + """Test cases for OracleSource.""" + + def setup_method(self): + """Set up test fixtures.""" + self.config = OracleConfig( + username="test_user", + password="test_password", + host_port="localhost:1521", + service_name="test_service", + include_stored_procedures=True, + include_materialized_views=True, + ) + self.ctx = PipelineContext(run_id="test-oracle-source") + + @patch("datahub.ingestion.source.sql.oracle.oracledb") + def test_oracle_source_initialization(self, mock_oracledb): + """Test Oracle source initialization.""" + source = OracleSource(self.config, self.ctx) + assert source.config == self.config + assert source.ctx == self.ctx + + @patch("datahub.ingestion.source.sql.oracle.oracledb") + def test_oracle_source_sql_aggregator_initialization(self, mock_oracledb): + """Test Oracle source SQL aggregator initialization with usage and operations.""" + # Test with usage and operations enabled + config_with_stats = OracleConfig( + username="test_user", + password="test_password", + host_port="localhost:1521", + service_name="test_service", + include_usage_stats=True, + include_operational_stats=True, + ) + + source = OracleSource(config_with_stats, self.ctx) + + # Should have custom aggregator with usage and operations enabled + assert hasattr(source, "aggregator") + assert source.aggregator.generate_usage_statistics is True + assert source.aggregator.generate_operations is True + + # Test with usage and operations disabled + config_no_stats = OracleConfig( + username="test_user", + password="test_password", + host_port="localhost:1521", + service_name="test_service", + include_usage_stats=False, + include_operational_stats=False, + ) + + source_no_stats = OracleSource(config_no_stats, self.ctx) + + # Should use default aggregator from parent class + assert source_no_stats.aggregator.generate_usage_statistics is False + assert source_no_stats.aggregator.generate_operations is False + + def test_get_procedures_for_schema(self): + """Test getting stored procedures for a schema.""" + source = OracleSource(self.config, self.ctx) + + # Mock inspector and connection + mock_inspector = Mock() + mock_connection = Mock() + + # Set up context manager support + mock_context_manager = Mock() + mock_context_manager.__enter__ = Mock(return_value=mock_connection) + mock_context_manager.__exit__ = Mock(return_value=None) + mock_inspector.engine.connect.return_value = mock_context_manager + + # Mock procedure query results + mock_proc = Mock() + mock_proc.name = "TEST_PROC" + mock_proc.type = "PROCEDURE" + mock_proc.created = datetime.now() + mock_proc.last_ddl_time = datetime.now() + mock_proc.status = "VALID" + + mock_func = Mock() + mock_func.name = "TEST_FUNC" + mock_func.type = "FUNCTION" + mock_func.created = datetime.now() + mock_func.last_ddl_time = datetime.now() + mock_func.status = "VALID" + + mock_procedures = [mock_proc, mock_func] + mock_connection.execute.return_value = mock_procedures + + # Mock the helper methods + with ( + patch.object( + source, + "_get_procedure_source_code", + return_value="CREATE PROCEDURE test_proc AS BEGIN NULL; END;", + ), + patch.object( + source, "_get_procedure_arguments", return_value="IN param1 VARCHAR2" + ), + patch.object( + source, + "_get_procedure_dependencies", + return_value={"upstream": ["TEST_TABLE"]}, + ), + ): + result = source.get_procedures_for_schema( + inspector=mock_inspector, schema="TEST_SCHEMA", db_name="TEST_DB" + ) + + assert len(result) == 2 + assert all(isinstance(proc, BaseProcedure) for proc in result) + assert result[0].name == "TEST_PROC" + assert result[1].name == "TEST_FUNC" + assert result[0].language == "SQL" + assert result[0].extra_properties is not None + assert "upstream_dependencies" in result[0].extra_properties + + def test_get_procedure_source_code(self): + """Test getting procedure source code.""" + source = OracleSource(self.config, self.ctx) + + mock_connection = Mock() + mock_source_data = [ + Mock(text="CREATE PROCEDURE test_proc AS\n"), + Mock(text="BEGIN\n"), + Mock(text=" NULL;\n"), + Mock(text="END;"), + ] + mock_connection.execute.return_value = mock_source_data + + result = source._get_procedure_source_code( + mock_connection, "TEST_SCHEMA", "TEST_PROC", "PROCEDURE", "DBA" + ) + + expected = "CREATE PROCEDURE test_proc AS\nBEGIN\n NULL;\nEND;" + assert result == expected + + # Verify the query was called with correct parameters + mock_connection.execute.assert_called_once() + call_args = mock_connection.execute.call_args + assert "dba_source" in str(call_args[0][0]).lower() + + def test_get_procedure_arguments(self): + """Test getting procedure arguments.""" + source = OracleSource(self.config, self.ctx) + + mock_connection = Mock() + mock_args_data = [ + Mock(argument_name="PARAM1", data_type="VARCHAR2", in_out="IN", position=1), + Mock(argument_name="PARAM2", data_type="NUMBER", in_out="OUT", position=2), + ] + mock_connection.execute.return_value = mock_args_data + + result = source._get_procedure_arguments( + mock_connection, "TEST_SCHEMA", "TEST_PROC", "DBA" + ) + + expected = "IN PARAM1 VARCHAR2, OUT PARAM2 NUMBER" + assert result == expected + + # Verify the query was called + mock_connection.execute.assert_called_once() + call_args = mock_connection.execute.call_args + assert "dba_arguments" in str(call_args[0][0]).lower() + + def test_get_procedure_dependencies(self): + """Test getting procedure dependencies.""" + source = OracleSource(self.config, self.ctx) + + mock_connection = Mock() + + # Mock upstream dependencies + mock_upstream_data = [ + Mock( + referenced_owner="TEST_SCHEMA", + referenced_name="TEST_TABLE", + referenced_type="TABLE", + ), + Mock( + referenced_owner="TEST_SCHEMA", + referenced_name="OTHER_PROC", + referenced_type="PROCEDURE", + ), + ] + # Set attributes explicitly to avoid Mock object issues + mock_upstream_data[0].referenced_name = "TEST_TABLE" + mock_upstream_data[1].referenced_name = "OTHER_PROC" + + # Mock downstream dependencies + mock_downstream_data = [ + Mock(owner="TEST_SCHEMA", name="DEPENDENT_PROC", type="PROCEDURE"), + ] + # Set the name attribute explicitly to avoid Mock object issues + mock_downstream_data[0].name = "DEPENDENT_PROC" + + mock_connection.execute.side_effect = [mock_upstream_data, mock_downstream_data] + + result = source._get_procedure_dependencies( + mock_connection, "TEST_SCHEMA", "TEST_PROC", "DBA" + ) + + assert result is not None + assert "upstream" in result + assert "downstream" in result + assert len(result["upstream"]) == 2 + assert len(result["downstream"]) == 1 + assert "TEST_SCHEMA.TEST_TABLE (TABLE)" in result["upstream"] + assert "TEST_SCHEMA.OTHER_PROC (PROCEDURE)" in result["upstream"] + assert "TEST_SCHEMA.DEPENDENT_PROC (PROCEDURE)" in result["downstream"] + + # Verify both queries were called + assert mock_connection.execute.call_count == 2 + + def test_loop_materialized_views(self): + """Test looping through materialized views.""" + source = OracleSource(self.config, self.ctx) + + # Mock inspector with materialized view support + mock_inspector = Mock() + mock_inspector.get_materialized_view_names.return_value = ["MV1", "MV2"] + + # Mock the _process_materialized_view method + mock_workunit = Mock() + with ( + patch.object(source, "get_identifier", return_value="test_schema.mv1"), + patch.object( + source, "_process_materialized_view", return_value=[mock_workunit] + ), + ): + result = list( + source.loop_materialized_views( + mock_inspector, "TEST_SCHEMA", self.config + ) + ) + + # Should process both materialized views + assert len(result) == 2 + assert all(wu == mock_workunit for wu in result) + + def test_get_materialized_view_names_fallback(self): + """Test fallback method for getting materialized view names.""" + source = OracleSource(self.config, self.ctx) + + mock_inspector = Mock() + mock_inspector.dialect.denormalize_name.return_value = "TEST_SCHEMA" + mock_inspector.dialect.default_schema_name = "TEST_SCHEMA" + mock_inspector.dialect.normalize_name.side_effect = lambda x: x.lower() + + mock_connection = Mock() + mock_cursor = Mock() + mock_cursor.__iter__ = Mock(return_value=iter([("MV1",), ("MV2",)])) + mock_connection.execute.return_value = mock_cursor + + # Set up context manager support + mock_context_manager = Mock() + mock_context_manager.__enter__ = Mock(return_value=mock_connection) + mock_context_manager.__exit__ = Mock(return_value=None) + mock_inspector.engine.connect.return_value = mock_context_manager + + result = source._get_materialized_view_names_fallback( + inspector=mock_inspector, schema="test_schema" + ) + + assert len(result) == 2 + mock_connection.execute.assert_called_once() + + def test_get_materialized_view_definition_fallback(self): + """Test fallback method for getting materialized view definition.""" + source = OracleSource(self.config, self.ctx) + + mock_inspector = Mock() + mock_inspector.dialect.denormalize_name.side_effect = lambda x: x.upper() + mock_inspector.dialect.default_schema_name = "TEST_SCHEMA" + + mock_definition = "SELECT * FROM test_table" + mock_inspector.bind.execute.return_value.scalar.return_value = mock_definition + + result = source._get_materialized_view_definition_fallback( + inspector=mock_inspector, mview_name="test_mv", schema="test_schema" + ) + + assert result == mock_definition + mock_inspector.bind.execute.assert_called_once() + + def test_process_materialized_view(self): + """Test processing a single materialized view.""" + source = OracleSource(self.config, self.ctx) + + # Mock inspector + mock_inspector = Mock() + mock_inspector.get_materialized_view_definition.return_value = ( + "SELECT * FROM test_table" + ) + + # Mock required methods + with ( + patch.object( + source, "get_table_properties", return_value=("Test MV", {}, None) + ), + patch.object(source, "_get_columns", return_value=[]), + patch( + "datahub.ingestion.source.sql.sql_common.get_schema_metadata", + return_value=Mock(), + ), + patch( + "datahub.ingestion.source.sql.oracle.make_dataset_urn_with_platform_instance", + return_value="urn:li:dataset:(urn:li:dataPlatform:oracle,test_schema.test_mv,PROD)", + ), + patch.object(source, "add_table_to_schema_container", return_value=[]), + patch.object(source, "get_db_name", return_value="TEST_DB"), + patch.object( + source, + "get_dataplatform_instance_aspect", + return_value=None, + ), + ): + result = list( + source._process_materialized_view( + "test_schema.test_mv", + mock_inspector, + "TEST_SCHEMA", + "TEST_MV", + self.config, + ) + ) + + # Should generate multiple work units (properties, schema, subtypes, view properties) + assert len(result) >= 3 + + # Look for ViewPropertiesClass work unit in metadata + view_properties_workunits = [ + wu + for wu in result + if hasattr(wu, "metadata") + and hasattr(wu.metadata, "aspect") + and wu.metadata.aspect.__class__.__name__ == "ViewPropertiesClass" + ] + + # We should have at least one ViewPropertiesClass work unit with materialized=True + assert len(view_properties_workunits) > 0 + workunit = view_properties_workunits[0] + assert hasattr(workunit.metadata, "aspect") + view_properties_aspect = workunit.metadata.aspect + assert view_properties_aspect is not None + assert hasattr(view_properties_aspect, "materialized") + assert view_properties_aspect.materialized is True + + def test_error_handling_in_get_procedures_for_schema(self): + """Test error handling in get_procedures_for_schema.""" + source = OracleSource(self.config, self.ctx) + + mock_inspector = Mock() + mock_connection = Mock() + + # Set up context manager support + mock_context_manager = Mock() + mock_context_manager.__enter__ = Mock(return_value=mock_connection) + mock_context_manager.__exit__ = Mock(return_value=None) + mock_inspector.engine.connect.return_value = mock_context_manager + + # Simulate database error + mock_connection.execute.side_effect = Exception("Database connection error") + + result = source.get_procedures_for_schema( + inspector=mock_inspector, schema="TEST_SCHEMA", db_name="TEST_DB" + ) + + # Should return empty list on error + assert result == [] + + def test_error_handling_in_procedure_methods(self): + """Test error handling in procedure helper methods.""" + source = OracleSource(self.config, self.ctx) + + mock_connection = Mock() + mock_connection.execute.side_effect = Exception("Query error") + + # Test source code method + source_result = source._get_procedure_source_code( + conn=mock_connection, + schema="TEST_SCHEMA", + procedure_name="TEST_PROC", + object_type="PROCEDURE", + tables_prefix="DBA", + ) + assert source_result is None + + # Test arguments method + args_result = source._get_procedure_arguments( + conn=mock_connection, + schema="TEST_SCHEMA", + procedure_name="TEST_PROC", + tables_prefix="DBA", + ) + assert args_result is None + + # Test dependencies method + deps_result = source._get_procedure_dependencies( + conn=mock_connection, + schema="TEST_SCHEMA", + procedure_name="TEST_PROC", + tables_prefix="DBA", + ) + assert deps_result is None From 90fa62e9d3b3df944c1abcf364890e6984e53553 Mon Sep 17 00:00:00 2001 From: Jonny Dixon Date: Mon, 27 Oct 2025 17:42:37 +0000 Subject: [PATCH 2/4] freezegun in integration tests --- .../autogenerated/capability_summary.json | 14 +- ...n_mces_oracle_to_file_with_all_tables.json | 1796 ++++++++-------- ...n_mces_oracle_to_file_with_dba_tables.json | 1908 ++++++++--------- ...oracle_to_file_with_stored_procedures.json | 908 ++++---- ...cle_to_file_without_stored_procedures.json | 62 +- .../tests/integration/oracle/test_oracle.py | 7 +- 6 files changed, 2351 insertions(+), 2344 deletions(-) diff --git a/metadata-ingestion/src/datahub/ingestion/autogenerated/capability_summary.json b/metadata-ingestion/src/datahub/ingestion/autogenerated/capability_summary.json index ecf0ee955e7f61..0d42b82f7052b6 100644 --- a/metadata-ingestion/src/datahub/ingestion/autogenerated/capability_summary.json +++ b/metadata-ingestion/src/datahub/ingestion/autogenerated/capability_summary.json @@ -1,5 +1,5 @@ { - "generated_at": "2025-10-23T14:26:01.879155+00:00", + "generated_at": "2025-10-27T17:35:54.648985+00:00", "generated_by": "metadata-ingestion/scripts/capability_summary.py", "plugin_details": { "abs": { @@ -2130,12 +2130,19 @@ }, { "capability": "LINEAGE_FINE", - "description": "Enabled by default to get lineage for views via `include_view_column_lineage`", + "description": "Enabled by default to get lineage for stored procedures via `include_lineage` and for views via `include_view_column_lineage`", "subtype_modifier": [ + "Stored Procedure", "View" ], "supported": true }, + { + "capability": "USAGE_STATS", + "description": "Enabled by default via SQL aggregator when processing observed queries", + "subtype_modifier": null, + "supported": true + }, { "capability": "DESCRIPTIONS", "description": "Enabled by default", @@ -2162,8 +2169,9 @@ }, { "capability": "LINEAGE_COARSE", - "description": "Enabled by default to get lineage for views via `include_view_lineage`", + "description": "Enabled by default to get lineage for stored procedures via `include_lineage` and for views via `include_view_lineage`", "subtype_modifier": [ + "Stored Procedure", "View" ], "supported": true diff --git a/metadata-ingestion/tests/integration/oracle/golden_files/golden_mces_oracle_to_file_with_all_tables.json b/metadata-ingestion/tests/integration/oracle/golden_files/golden_mces_oracle_to_file_with_all_tables.json index b5842854e60848..5d23f91b3f74ec 100644 --- a/metadata-ingestion/tests/integration/oracle/golden_files/golden_mces_oracle_to_file_with_all_tables.json +++ b/metadata-ingestion/tests/integration/oracle/golden_files/golden_mces_oracle_to_file_with_all_tables.json @@ -16,8 +16,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -32,8 +32,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -48,8 +48,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -66,8 +66,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -82,8 +82,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -98,8 +98,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -121,8 +121,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -137,8 +137,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -153,8 +153,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -171,8 +171,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -192,8 +192,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -208,8 +208,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -296,8 +296,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -314,8 +314,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -332,8 +332,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -357,8 +357,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -374,8 +374,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -392,8 +392,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -408,8 +408,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -429,8 +429,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -453,8 +453,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -471,8 +471,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -487,8 +487,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -510,8 +510,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -535,8 +535,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -559,8 +559,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -577,8 +577,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -593,8 +593,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -616,8 +616,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -641,8 +641,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -657,8 +657,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -680,8 +680,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -696,8 +696,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -712,8 +712,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -730,8 +730,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -751,8 +751,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -767,8 +767,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -864,8 +864,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -882,8 +882,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -907,8 +907,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -923,8 +923,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -1116,8 +1116,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -1134,8 +1134,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -1159,8 +1159,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -1175,8 +1175,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -1287,8 +1287,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -1305,8 +1305,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -1323,8 +1323,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -1348,8 +1348,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -1365,8 +1365,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -1383,8 +1383,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -1399,8 +1399,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -1420,8 +1420,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -1444,8 +1444,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -1462,8 +1462,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -1478,8 +1478,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -1501,8 +1501,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -1526,8 +1526,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -1550,8 +1550,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -1568,8 +1568,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -1584,8 +1584,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -1607,8 +1607,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -1632,8 +1632,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -1648,8 +1648,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -1671,8 +1671,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -1687,8 +1687,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -1703,8 +1703,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -1721,8 +1721,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -1742,8 +1742,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -1758,8 +1758,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -1879,8 +1879,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -1897,8 +1897,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -1922,8 +1922,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -1938,8 +1938,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -2059,8 +2059,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -2077,8 +2077,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -2102,8 +2102,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -2118,8 +2118,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -2218,8 +2218,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -2236,8 +2236,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -2254,8 +2254,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -2279,8 +2279,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -2296,8 +2296,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -2314,8 +2314,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -2330,8 +2330,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -2351,8 +2351,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -2375,8 +2375,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -2393,8 +2393,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -2409,8 +2409,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -2432,8 +2432,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -2468,8 +2468,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -2493,8 +2493,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -2517,8 +2517,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -2535,8 +2535,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -2551,8 +2551,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -2574,8 +2574,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -2625,8 +2625,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -2650,8 +2650,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -2666,8 +2666,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -2689,8 +2689,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -2705,8 +2705,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -2721,8 +2721,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -2739,8 +2739,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -2760,8 +2760,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -2776,8 +2776,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -2945,8 +2945,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -2963,8 +2963,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -2988,8 +2988,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -3004,8 +3004,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -3677,8 +3677,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -3695,8 +3695,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -3720,8 +3720,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -3736,8 +3736,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -4433,8 +4433,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -4451,8 +4451,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -4476,8 +4476,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -4492,8 +4492,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -4709,8 +4709,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -4727,8 +4727,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -4752,8 +4752,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -4768,8 +4768,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -4997,8 +4997,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -5015,8 +5015,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -5040,8 +5040,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -5056,8 +5056,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -5201,8 +5201,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -5219,8 +5219,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -5244,8 +5244,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -5260,8 +5260,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -5501,8 +5501,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -5519,8 +5519,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -5544,8 +5544,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -5560,8 +5560,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -5705,8 +5705,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -5723,8 +5723,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -5748,8 +5748,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -5764,8 +5764,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -5909,8 +5909,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -5927,8 +5927,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -5952,8 +5952,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -5968,8 +5968,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -6113,8 +6113,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -6131,8 +6131,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -6156,8 +6156,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -6172,8 +6172,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -6317,8 +6317,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -6335,8 +6335,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -6360,8 +6360,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -6376,8 +6376,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -6533,8 +6533,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -6551,8 +6551,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -6576,8 +6576,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -6592,8 +6592,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -6797,8 +6797,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -6815,8 +6815,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -6840,8 +6840,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -6856,8 +6856,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -7013,8 +7013,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -7031,8 +7031,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -7056,8 +7056,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -7072,8 +7072,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -7325,8 +7325,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -7343,8 +7343,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -7368,8 +7368,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -7384,8 +7384,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -7793,8 +7793,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -7811,8 +7811,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -7836,8 +7836,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -7852,8 +7852,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -8105,8 +8105,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -8123,8 +8123,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -8148,8 +8148,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -8164,8 +8164,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -8381,8 +8381,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -8399,8 +8399,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -8424,8 +8424,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -8440,8 +8440,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -8729,8 +8729,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -8747,8 +8747,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -8772,8 +8772,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -8788,8 +8788,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -8897,8 +8897,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -8915,8 +8915,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -8940,8 +8940,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -8956,8 +8956,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -9101,8 +9101,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -9119,8 +9119,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -9144,8 +9144,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -9160,8 +9160,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -9305,8 +9305,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -9323,8 +9323,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -9348,8 +9348,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -9364,8 +9364,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -9473,8 +9473,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -9491,8 +9491,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -9516,8 +9516,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -9532,8 +9532,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -9653,8 +9653,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -9671,8 +9671,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -9696,8 +9696,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -9712,8 +9712,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -9845,8 +9845,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -9863,8 +9863,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -9888,8 +9888,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -9904,8 +9904,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -10013,8 +10013,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -10031,8 +10031,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -10056,8 +10056,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -10072,8 +10072,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -10421,8 +10421,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -10439,8 +10439,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -10464,8 +10464,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -10480,8 +10480,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -10685,8 +10685,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -10703,8 +10703,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -10728,8 +10728,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -10744,8 +10744,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -11081,8 +11081,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -11099,8 +11099,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -11124,8 +11124,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -11140,8 +11140,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -11273,8 +11273,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -11291,8 +11291,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -11316,8 +11316,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -11332,8 +11332,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -11465,8 +11465,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -11483,8 +11483,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -11508,8 +11508,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -11524,8 +11524,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -11717,8 +11717,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -11735,8 +11735,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -11760,8 +11760,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -11776,8 +11776,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -11945,8 +11945,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -11963,8 +11963,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -11988,8 +11988,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -12004,8 +12004,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -12137,8 +12137,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -12155,8 +12155,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -12180,8 +12180,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -12196,8 +12196,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -12341,8 +12341,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -12359,8 +12359,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -12384,8 +12384,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -12400,8 +12400,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -12533,8 +12533,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -12551,8 +12551,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -12576,8 +12576,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -12592,8 +12592,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -12713,8 +12713,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -12731,8 +12731,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -12756,8 +12756,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -12772,8 +12772,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -12905,8 +12905,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -12923,8 +12923,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -12948,8 +12948,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -12964,8 +12964,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -13085,8 +13085,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -13103,8 +13103,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -13128,8 +13128,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -13144,8 +13144,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -13337,8 +13337,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -13355,8 +13355,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -13380,8 +13380,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -13396,8 +13396,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -13529,8 +13529,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -13547,8 +13547,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -13572,8 +13572,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -13588,8 +13588,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -13781,8 +13781,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -13799,8 +13799,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -13824,8 +13824,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -13840,8 +13840,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -14009,8 +14009,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -14027,8 +14027,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -14052,8 +14052,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -14068,8 +14068,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -14177,8 +14177,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -14195,8 +14195,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -14220,8 +14220,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -14236,8 +14236,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -14345,8 +14345,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -14363,8 +14363,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -14388,8 +14388,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -14404,8 +14404,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -14573,8 +14573,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -14591,8 +14591,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -14616,8 +14616,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -14632,8 +14632,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -14777,8 +14777,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -14795,8 +14795,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -14820,8 +14820,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -14836,8 +14836,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -14957,8 +14957,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -14975,8 +14975,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -15000,8 +15000,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -15016,8 +15016,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -15377,8 +15377,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -15395,8 +15395,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -15420,8 +15420,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -15436,8 +15436,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -15581,8 +15581,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -15599,8 +15599,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -15624,8 +15624,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -15640,8 +15640,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -15749,8 +15749,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -15767,8 +15767,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -15792,8 +15792,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -15808,8 +15808,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -15953,8 +15953,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -15971,8 +15971,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -15996,8 +15996,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -16012,8 +16012,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -16209,8 +16209,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -16227,8 +16227,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -16245,8 +16245,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -16270,8 +16270,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -16286,8 +16286,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -16435,8 +16435,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -16453,8 +16453,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -16471,8 +16471,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -16496,8 +16496,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -16512,8 +16512,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -16685,8 +16685,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -16703,8 +16703,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -16721,8 +16721,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -16746,8 +16746,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -16762,8 +16762,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -16923,8 +16923,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -16941,8 +16941,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -16959,8 +16959,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -16984,8 +16984,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -17000,8 +17000,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -17197,8 +17197,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -17215,8 +17215,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -17233,8 +17233,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -17258,8 +17258,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -17274,8 +17274,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -17423,8 +17423,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -17441,8 +17441,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -17459,8 +17459,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -17484,8 +17484,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -17500,8 +17500,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -17625,8 +17625,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -17643,8 +17643,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -17661,8 +17661,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -17686,8 +17686,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -17702,8 +17702,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -17862,8 +17862,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -17880,8 +17880,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -17898,8 +17898,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -17923,8 +17923,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -17939,8 +17939,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18087,8 +18087,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18105,8 +18105,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18123,8 +18123,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18148,8 +18148,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18164,8 +18164,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18312,8 +18312,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18330,8 +18330,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18348,8 +18348,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18373,8 +18373,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18390,8 +18390,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18408,8 +18408,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18424,8 +18424,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18445,8 +18445,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18469,8 +18469,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18487,8 +18487,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18503,8 +18503,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18526,8 +18526,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18551,8 +18551,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18575,8 +18575,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18593,8 +18593,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18609,8 +18609,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18632,8 +18632,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18657,8 +18657,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18681,8 +18681,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18699,8 +18699,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18715,8 +18715,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18738,8 +18738,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18763,8 +18763,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18787,8 +18787,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18805,8 +18805,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18821,8 +18821,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18844,8 +18844,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18869,8 +18869,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18893,8 +18893,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18911,8 +18911,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18927,8 +18927,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18950,8 +18950,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18975,8 +18975,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -18999,8 +18999,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -19017,8 +19017,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -19033,8 +19033,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -19056,8 +19056,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -19081,8 +19081,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -19097,8 +19097,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -19117,8 +19117,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -19150,8 +19150,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -19168,8 +19168,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -19186,8 +19186,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -19211,8 +19211,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -19226,7 +19226,7 @@ "upstreams": [ { "auditStamp": { - "time": 1615443388097, + "time": 1643871600000, "actor": "urn:li:corpuser:_ingestion" }, "created": { @@ -19241,8 +19241,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -19264,14 +19264,14 @@ "actor": "urn:li:corpuser:_ingestion" }, "lastModified": { - "time": 1761584190812, + "time": 1643871600000, "actor": "urn:li:corpuser:_ingestion" } } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -19302,8 +19302,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -19318,8 +19318,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -19333,7 +19333,7 @@ "upstreams": [ { "auditStamp": { - "time": 1615443388097, + "time": 1643871600000, "actor": "urn:li:corpuser:_ingestion" }, "created": { @@ -19402,8 +19402,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -19425,14 +19425,14 @@ "actor": "urn:li:corpuser:_ingestion" }, "lastModified": { - "time": 1761584190815, + "time": 1643871600000, "actor": "urn:li:corpuser:_ingestion" } } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -19475,8 +19475,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -19491,8 +19491,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -19506,7 +19506,7 @@ "upstreams": [ { "auditStamp": { - "time": 1615443388097, + "time": 1643871600000, "actor": "urn:li:corpuser:_ingestion" }, "created": { @@ -19562,8 +19562,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -19585,14 +19585,14 @@ "actor": "urn:li:corpuser:_ingestion" }, "lastModified": { - "time": 1761584190820, + "time": 1643871600000, "actor": "urn:li:corpuser:_ingestion" } } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -19632,8 +19632,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -19648,8 +19648,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -19663,7 +19663,7 @@ "upstreams": [ { "auditStamp": { - "time": 1615443388097, + "time": 1643871600000, "actor": "urn:li:corpuser:_ingestion" }, "created": { @@ -19784,8 +19784,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -19807,14 +19807,14 @@ "actor": "urn:li:corpuser:_ingestion" }, "lastModified": { - "time": 1761584190824, + "time": 1643871600000, "actor": "urn:li:corpuser:_ingestion" } } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -19884,8 +19884,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -19900,8 +19900,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -19915,7 +19915,7 @@ "upstreams": [ { "auditStamp": { - "time": 1615443388097, + "time": 1643871600000, "actor": "urn:li:corpuser:_ingestion" }, "created": { @@ -19930,8 +19930,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -19953,14 +19953,14 @@ "actor": "urn:li:corpuser:_ingestion" }, "lastModified": { - "time": 1761584190829, + "time": 1643871600000, "actor": "urn:li:corpuser:_ingestion" } } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -19988,8 +19988,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -20004,8 +20004,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -20020,8 +20020,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -20036,8 +20036,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -20052,8 +20052,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -20068,8 +20068,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -20084,8 +20084,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -20100,8 +20100,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -20116,8 +20116,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -20132,8 +20132,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -20148,8 +20148,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -20164,8 +20164,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -20180,8 +20180,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -20196,8 +20196,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -20212,8 +20212,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -20228,8 +20228,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -20244,8 +20244,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -20260,8 +20260,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -20276,8 +20276,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -20292,8 +20292,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -20308,8 +20308,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -20324,8 +20324,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -20340,8 +20340,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } }, @@ -20356,8 +20356,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_26-ad8d38", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-3aq9mo", "lastRunId": "no-run-id-provided" } } diff --git a/metadata-ingestion/tests/integration/oracle/golden_files/golden_mces_oracle_to_file_with_dba_tables.json b/metadata-ingestion/tests/integration/oracle/golden_files/golden_mces_oracle_to_file_with_dba_tables.json index 20b4f043ed6f5a..e84fcd6171718a 100644 --- a/metadata-ingestion/tests/integration/oracle/golden_files/golden_mces_oracle_to_file_with_dba_tables.json +++ b/metadata-ingestion/tests/integration/oracle/golden_files/golden_mces_oracle_to_file_with_dba_tables.json @@ -16,8 +16,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -32,8 +32,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -48,8 +48,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -66,8 +66,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -82,8 +82,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -98,8 +98,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -121,8 +121,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -137,8 +137,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -153,8 +153,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -171,8 +171,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -192,8 +192,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -208,8 +208,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -296,8 +296,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -314,8 +314,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -332,8 +332,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -357,8 +357,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -374,8 +374,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -392,8 +392,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -408,8 +408,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -429,8 +429,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -453,8 +453,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -471,8 +471,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -487,8 +487,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -510,8 +510,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -535,8 +535,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -559,8 +559,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -577,8 +577,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -593,8 +593,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -616,8 +616,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -641,8 +641,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -657,8 +657,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -680,8 +680,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -696,8 +696,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -712,8 +712,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -730,8 +730,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -751,8 +751,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -767,8 +767,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -864,8 +864,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -882,8 +882,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -907,8 +907,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -923,8 +923,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -1116,8 +1116,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -1134,8 +1134,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -1159,8 +1159,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -1175,8 +1175,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -1287,8 +1287,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -1305,8 +1305,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -1323,8 +1323,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -1348,8 +1348,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -1365,8 +1365,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -1383,8 +1383,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -1399,8 +1399,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -1420,8 +1420,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -1444,8 +1444,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -1462,8 +1462,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -1478,8 +1478,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -1501,8 +1501,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -1526,8 +1526,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -1550,8 +1550,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -1568,8 +1568,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -1584,8 +1584,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -1607,8 +1607,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -1632,8 +1632,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -1648,8 +1648,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -1671,8 +1671,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -1687,8 +1687,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -1703,8 +1703,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -1721,8 +1721,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -1742,8 +1742,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -1758,8 +1758,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -1879,8 +1879,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -1897,8 +1897,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -1922,8 +1922,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -1938,8 +1938,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -2059,8 +2059,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -2077,8 +2077,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -2102,8 +2102,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -2118,8 +2118,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -2218,8 +2218,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -2236,8 +2236,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -2254,8 +2254,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -2279,8 +2279,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -2296,8 +2296,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -2314,8 +2314,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -2330,8 +2330,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -2351,8 +2351,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -2375,8 +2375,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -2393,8 +2393,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -2409,8 +2409,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -2432,8 +2432,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -2468,8 +2468,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -2493,8 +2493,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -2517,8 +2517,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -2535,8 +2535,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -2551,8 +2551,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -2574,8 +2574,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -2625,8 +2625,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -2650,8 +2650,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -2666,8 +2666,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -2689,8 +2689,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -2705,8 +2705,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -2721,8 +2721,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -2739,8 +2739,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -2760,8 +2760,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -2776,8 +2776,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -2897,8 +2897,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -2915,8 +2915,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -2940,8 +2940,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -2956,8 +2956,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -3077,8 +3077,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -3095,8 +3095,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -3120,8 +3120,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -3136,8 +3136,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -3281,8 +3281,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -3299,8 +3299,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -3324,8 +3324,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -3340,8 +3340,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -3425,8 +3425,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -3443,8 +3443,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -3468,8 +3468,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -3484,8 +3484,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -3701,8 +3701,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -3719,8 +3719,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -3744,8 +3744,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -3760,8 +3760,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -4061,8 +4061,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -4079,8 +4079,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -4104,8 +4104,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -4120,8 +4120,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -4265,8 +4265,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -4283,8 +4283,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -4308,8 +4308,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -4324,8 +4324,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -4493,8 +4493,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -4511,8 +4511,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -4536,8 +4536,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -4552,8 +4552,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -5225,8 +5225,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -5243,8 +5243,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -5268,8 +5268,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -5284,8 +5284,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -5981,8 +5981,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -5999,8 +5999,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -6024,8 +6024,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -6040,8 +6040,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -6257,8 +6257,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -6275,8 +6275,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -6300,8 +6300,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -6316,8 +6316,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -6545,8 +6545,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -6563,8 +6563,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -6588,8 +6588,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -6604,8 +6604,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -6749,8 +6749,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -6767,8 +6767,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -6792,8 +6792,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -6808,8 +6808,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -7049,8 +7049,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -7067,8 +7067,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -7092,8 +7092,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -7108,8 +7108,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -7253,8 +7253,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -7271,8 +7271,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -7296,8 +7296,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -7312,8 +7312,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -7457,8 +7457,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -7475,8 +7475,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -7500,8 +7500,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -7516,8 +7516,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -7661,8 +7661,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -7679,8 +7679,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -7704,8 +7704,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -7720,8 +7720,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -7865,8 +7865,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -7883,8 +7883,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -7908,8 +7908,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -7924,8 +7924,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -8081,8 +8081,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -8099,8 +8099,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -8124,8 +8124,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -8140,8 +8140,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -8345,8 +8345,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -8363,8 +8363,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -8388,8 +8388,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -8404,8 +8404,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -8561,8 +8561,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -8579,8 +8579,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -8604,8 +8604,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -8620,8 +8620,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -8873,8 +8873,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -8891,8 +8891,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -8916,8 +8916,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -8932,8 +8932,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -9341,8 +9341,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -9359,8 +9359,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -9384,8 +9384,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -9400,8 +9400,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -9653,8 +9653,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -9671,8 +9671,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -9696,8 +9696,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -9712,8 +9712,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -9929,8 +9929,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -9947,8 +9947,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -9972,8 +9972,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -9988,8 +9988,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -10277,8 +10277,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -10295,8 +10295,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -10320,8 +10320,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -10336,8 +10336,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -10445,8 +10445,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -10463,8 +10463,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -10488,8 +10488,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -10504,8 +10504,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -10649,8 +10649,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -10667,8 +10667,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -10692,8 +10692,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -10708,8 +10708,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -10853,8 +10853,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -10871,8 +10871,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -10896,8 +10896,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -10912,8 +10912,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -11021,8 +11021,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -11039,8 +11039,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -11064,8 +11064,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -11080,8 +11080,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -11201,8 +11201,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -11219,8 +11219,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -11244,8 +11244,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -11260,8 +11260,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -11393,8 +11393,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -11411,8 +11411,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -11436,8 +11436,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -11452,8 +11452,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -11561,8 +11561,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -11579,8 +11579,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -11604,8 +11604,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -11620,8 +11620,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -11969,8 +11969,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -11987,8 +11987,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -12012,8 +12012,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -12028,8 +12028,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -12233,8 +12233,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -12251,8 +12251,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -12276,8 +12276,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -12292,8 +12292,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -12629,8 +12629,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -12647,8 +12647,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -12672,8 +12672,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -12688,8 +12688,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -12821,8 +12821,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -12839,8 +12839,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -12864,8 +12864,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -12880,8 +12880,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -13013,8 +13013,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -13031,8 +13031,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -13056,8 +13056,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -13072,8 +13072,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -13265,8 +13265,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -13283,8 +13283,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -13308,8 +13308,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -13324,8 +13324,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -13493,8 +13493,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -13511,8 +13511,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -13536,8 +13536,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -13552,8 +13552,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -13685,8 +13685,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -13703,8 +13703,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -13728,8 +13728,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -13744,8 +13744,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -13889,8 +13889,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -13907,8 +13907,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -13932,8 +13932,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -13948,8 +13948,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -14081,8 +14081,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -14099,8 +14099,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -14124,8 +14124,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -14140,8 +14140,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -14261,8 +14261,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -14279,8 +14279,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -14304,8 +14304,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -14320,8 +14320,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -14453,8 +14453,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -14471,8 +14471,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -14496,8 +14496,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -14512,8 +14512,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -14633,8 +14633,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -14651,8 +14651,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -14676,8 +14676,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -14692,8 +14692,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -14885,8 +14885,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -14903,8 +14903,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -14928,8 +14928,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -14944,8 +14944,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -15077,8 +15077,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -15095,8 +15095,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -15120,8 +15120,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -15136,8 +15136,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -15329,8 +15329,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -15347,8 +15347,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -15372,8 +15372,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -15388,8 +15388,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -15557,8 +15557,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -15575,8 +15575,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -15600,8 +15600,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -15616,8 +15616,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -15725,8 +15725,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -15743,8 +15743,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -15768,8 +15768,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -15784,8 +15784,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -15893,8 +15893,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -15911,8 +15911,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -15936,8 +15936,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -15952,8 +15952,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -16121,8 +16121,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -16139,8 +16139,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -16164,8 +16164,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -16180,8 +16180,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -16325,8 +16325,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -16343,8 +16343,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -16368,8 +16368,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -16384,8 +16384,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -16505,8 +16505,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -16523,8 +16523,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -16548,8 +16548,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -16564,8 +16564,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -16925,8 +16925,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -16943,8 +16943,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -16968,8 +16968,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -16984,8 +16984,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -17129,8 +17129,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -17147,8 +17147,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -17172,8 +17172,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -17188,8 +17188,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -17297,8 +17297,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -17315,8 +17315,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -17340,8 +17340,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -17356,8 +17356,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -17501,8 +17501,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -17519,8 +17519,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -17544,8 +17544,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -17560,8 +17560,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -17757,8 +17757,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -17775,8 +17775,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -17793,8 +17793,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -17818,8 +17818,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -17834,8 +17834,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -17983,8 +17983,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -18001,8 +18001,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -18019,8 +18019,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -18044,8 +18044,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -18060,8 +18060,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -18233,8 +18233,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -18251,8 +18251,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -18269,8 +18269,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -18294,8 +18294,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -18310,8 +18310,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -18471,8 +18471,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -18489,8 +18489,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -18507,8 +18507,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -18532,8 +18532,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -18548,8 +18548,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -18745,8 +18745,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -18763,8 +18763,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -18781,8 +18781,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -18806,8 +18806,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -18822,8 +18822,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -18971,8 +18971,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -18989,8 +18989,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -19007,8 +19007,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -19032,8 +19032,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -19048,8 +19048,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -19173,8 +19173,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -19191,8 +19191,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -19209,8 +19209,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -19234,8 +19234,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -19250,8 +19250,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -19410,8 +19410,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -19428,8 +19428,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -19446,8 +19446,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -19471,8 +19471,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -19487,8 +19487,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -19635,8 +19635,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -19653,8 +19653,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -19671,8 +19671,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -19696,8 +19696,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -19712,8 +19712,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -19860,8 +19860,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -19878,8 +19878,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -19896,8 +19896,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -19921,8 +19921,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -19938,8 +19938,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -19956,8 +19956,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -19972,8 +19972,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -19993,8 +19993,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20017,8 +20017,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20035,8 +20035,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20051,8 +20051,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20074,8 +20074,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20099,8 +20099,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20123,8 +20123,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20141,8 +20141,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20157,8 +20157,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20180,8 +20180,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20205,8 +20205,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20229,8 +20229,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20247,8 +20247,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20263,8 +20263,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20286,8 +20286,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20311,8 +20311,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20335,8 +20335,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20353,8 +20353,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20369,8 +20369,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20392,8 +20392,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20417,8 +20417,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20441,8 +20441,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20459,8 +20459,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20475,8 +20475,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20498,8 +20498,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20523,8 +20523,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20547,8 +20547,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20565,8 +20565,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20581,8 +20581,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20604,8 +20604,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20629,8 +20629,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20645,8 +20645,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20665,8 +20665,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20698,8 +20698,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20716,8 +20716,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20734,8 +20734,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20759,8 +20759,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20774,7 +20774,7 @@ "upstreams": [ { "auditStamp": { - "time": 1615443388097, + "time": 1643871600000, "actor": "urn:li:corpuser:_ingestion" }, "created": { @@ -20789,8 +20789,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20812,14 +20812,14 @@ "actor": "urn:li:corpuser:_ingestion" }, "lastModified": { - "time": 1761584199645, + "time": 1643871600000, "actor": "urn:li:corpuser:_ingestion" } } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20850,8 +20850,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20866,8 +20866,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20881,7 +20881,7 @@ "upstreams": [ { "auditStamp": { - "time": 1615443388097, + "time": 1643871600000, "actor": "urn:li:corpuser:_ingestion" }, "created": { @@ -20950,8 +20950,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -20973,14 +20973,14 @@ "actor": "urn:li:corpuser:_ingestion" }, "lastModified": { - "time": 1761584199649, + "time": 1643871600000, "actor": "urn:li:corpuser:_ingestion" } } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -21023,8 +21023,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -21039,8 +21039,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -21054,7 +21054,7 @@ "upstreams": [ { "auditStamp": { - "time": 1615443388097, + "time": 1643871600000, "actor": "urn:li:corpuser:_ingestion" }, "created": { @@ -21110,8 +21110,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -21133,14 +21133,14 @@ "actor": "urn:li:corpuser:_ingestion" }, "lastModified": { - "time": 1761584199654, + "time": 1643871600000, "actor": "urn:li:corpuser:_ingestion" } } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -21180,8 +21180,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -21196,8 +21196,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -21211,7 +21211,7 @@ "upstreams": [ { "auditStamp": { - "time": 1615443388097, + "time": 1643871600000, "actor": "urn:li:corpuser:_ingestion" }, "created": { @@ -21332,8 +21332,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -21355,14 +21355,14 @@ "actor": "urn:li:corpuser:_ingestion" }, "lastModified": { - "time": 1761584199658, + "time": 1643871600000, "actor": "urn:li:corpuser:_ingestion" } } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -21432,8 +21432,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -21448,8 +21448,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -21463,7 +21463,7 @@ "upstreams": [ { "auditStamp": { - "time": 1615443388097, + "time": 1643871600000, "actor": "urn:li:corpuser:_ingestion" }, "created": { @@ -21478,8 +21478,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -21501,14 +21501,14 @@ "actor": "urn:li:corpuser:_ingestion" }, "lastModified": { - "time": 1761584199665, + "time": 1643871600000, "actor": "urn:li:corpuser:_ingestion" } } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -21536,8 +21536,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -21552,8 +21552,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -21568,8 +21568,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -21584,8 +21584,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -21600,8 +21600,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -21616,8 +21616,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -21632,8 +21632,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -21648,8 +21648,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -21664,8 +21664,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -21680,8 +21680,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -21696,8 +21696,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -21712,8 +21712,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -21728,8 +21728,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -21744,8 +21744,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -21760,8 +21760,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -21776,8 +21776,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -21792,8 +21792,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -21808,8 +21808,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -21824,8 +21824,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -21840,8 +21840,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -21856,8 +21856,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -21872,8 +21872,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -21888,8 +21888,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } }, @@ -21904,8 +21904,8 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, - "runId": "oracle-2025_10_27-16_56_32-p7wo8v", + "lastObserved": 1643871600000, + "runId": "oracle-2022_02_03-07_00_00-0vztpt", "lastRunId": "no-run-id-provided" } } diff --git a/metadata-ingestion/tests/integration/oracle/golden_files/golden_mces_oracle_to_file_with_stored_procedures.json b/metadata-ingestion/tests/integration/oracle/golden_files/golden_mces_oracle_to_file_with_stored_procedures.json index a38b339f9186a0..c6d39c59baa1d7 100644 --- a/metadata-ingestion/tests/integration/oracle/golden_files/golden_mces_oracle_to_file_with_stored_procedures.json +++ b/metadata-ingestion/tests/integration/oracle/golden_files/golden_mces_oracle_to_file_with_stored_procedures.json @@ -16,7 +16,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -32,7 +32,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -48,7 +48,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -66,7 +66,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -82,7 +82,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -98,7 +98,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -121,7 +121,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -137,7 +137,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -153,7 +153,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -171,7 +171,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -192,7 +192,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -208,7 +208,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -296,7 +296,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -314,7 +314,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -332,7 +332,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -357,7 +357,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -374,7 +374,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -392,7 +392,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -408,7 +408,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -429,7 +429,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -453,7 +453,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -471,7 +471,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -487,7 +487,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -510,7 +510,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -535,7 +535,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -559,7 +559,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -577,7 +577,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -593,7 +593,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -616,7 +616,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -641,7 +641,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -657,7 +657,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -680,7 +680,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -696,7 +696,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -712,7 +712,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -730,7 +730,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -751,7 +751,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -767,7 +767,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -864,7 +864,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -882,7 +882,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -907,7 +907,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -923,7 +923,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -1116,7 +1116,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -1134,7 +1134,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -1159,7 +1159,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -1175,7 +1175,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -1287,7 +1287,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -1305,7 +1305,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -1323,7 +1323,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -1348,7 +1348,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -1365,7 +1365,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -1383,7 +1383,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -1399,7 +1399,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -1420,7 +1420,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -1444,7 +1444,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -1462,7 +1462,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -1478,7 +1478,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -1501,7 +1501,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -1526,7 +1526,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -1550,7 +1550,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -1568,7 +1568,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -1584,7 +1584,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -1607,7 +1607,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -1632,7 +1632,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -1648,7 +1648,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -1671,7 +1671,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -1687,7 +1687,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -1703,7 +1703,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -1721,7 +1721,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -1742,7 +1742,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -1758,7 +1758,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -1879,7 +1879,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -1897,7 +1897,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -1922,7 +1922,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -1938,7 +1938,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -2059,7 +2059,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -2077,7 +2077,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -2102,7 +2102,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -2118,7 +2118,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -2218,7 +2218,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -2236,7 +2236,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -2254,7 +2254,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -2279,7 +2279,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -2296,7 +2296,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -2314,7 +2314,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -2330,7 +2330,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -2351,7 +2351,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -2375,7 +2375,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -2393,7 +2393,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -2409,7 +2409,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -2432,7 +2432,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -2468,7 +2468,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -2493,7 +2493,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -2517,7 +2517,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -2535,7 +2535,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -2551,7 +2551,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -2574,7 +2574,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -2625,7 +2625,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -2650,7 +2650,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -2666,7 +2666,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -2689,7 +2689,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -2705,7 +2705,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -2721,7 +2721,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -2739,7 +2739,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -2760,7 +2760,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -2776,7 +2776,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -2945,7 +2945,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -2963,7 +2963,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -2988,7 +2988,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -3004,7 +3004,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -3677,7 +3677,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -3695,7 +3695,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -3720,7 +3720,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -3736,7 +3736,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -4433,7 +4433,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -4451,7 +4451,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -4476,7 +4476,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -4492,7 +4492,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -4709,7 +4709,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -4727,7 +4727,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -4752,7 +4752,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -4768,7 +4768,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -4997,7 +4997,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -5015,7 +5015,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -5040,7 +5040,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -5056,7 +5056,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -5201,7 +5201,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -5219,7 +5219,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -5244,7 +5244,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -5260,7 +5260,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -5501,7 +5501,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -5519,7 +5519,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -5544,7 +5544,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -5560,7 +5560,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -5705,7 +5705,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -5723,7 +5723,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -5748,7 +5748,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -5764,7 +5764,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -5909,7 +5909,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -5927,7 +5927,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -5952,7 +5952,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -5968,7 +5968,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -6113,7 +6113,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -6131,7 +6131,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -6156,7 +6156,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -6172,7 +6172,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -6317,7 +6317,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -6335,7 +6335,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -6360,7 +6360,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -6376,7 +6376,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -6533,7 +6533,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -6551,7 +6551,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -6576,7 +6576,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -6592,7 +6592,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -6797,7 +6797,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -6815,7 +6815,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -6840,7 +6840,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -6856,7 +6856,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -7013,7 +7013,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -7031,7 +7031,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -7056,7 +7056,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -7072,7 +7072,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -7325,7 +7325,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -7343,7 +7343,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -7368,7 +7368,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -7384,7 +7384,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -7793,7 +7793,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -7811,7 +7811,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -7836,7 +7836,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -7852,7 +7852,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -8105,7 +8105,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -8123,7 +8123,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -8148,7 +8148,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -8164,7 +8164,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -8381,7 +8381,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -8399,7 +8399,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -8424,7 +8424,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -8440,7 +8440,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -8729,7 +8729,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -8747,7 +8747,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -8772,7 +8772,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -8788,7 +8788,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -8897,7 +8897,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -8915,7 +8915,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -8940,7 +8940,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -8956,7 +8956,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -9101,7 +9101,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -9119,7 +9119,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -9144,7 +9144,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -9160,7 +9160,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -9305,7 +9305,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -9323,7 +9323,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -9348,7 +9348,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -9364,7 +9364,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -9473,7 +9473,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -9491,7 +9491,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -9516,7 +9516,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -9532,7 +9532,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -9653,7 +9653,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -9671,7 +9671,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -9696,7 +9696,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -9712,7 +9712,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -9845,7 +9845,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -9863,7 +9863,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -9888,7 +9888,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -9904,7 +9904,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -10013,7 +10013,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -10031,7 +10031,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -10056,7 +10056,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -10072,7 +10072,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -10421,7 +10421,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -10439,7 +10439,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -10464,7 +10464,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -10480,7 +10480,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -10685,7 +10685,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -10703,7 +10703,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -10728,7 +10728,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -10744,7 +10744,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -11081,7 +11081,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -11099,7 +11099,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -11124,7 +11124,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -11140,7 +11140,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -11273,7 +11273,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -11291,7 +11291,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -11316,7 +11316,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -11332,7 +11332,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -11465,7 +11465,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -11483,7 +11483,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -11508,7 +11508,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -11524,7 +11524,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -11717,7 +11717,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -11735,7 +11735,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -11760,7 +11760,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -11776,7 +11776,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -11945,7 +11945,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -11963,7 +11963,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -11988,7 +11988,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -12004,7 +12004,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -12137,7 +12137,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -12155,7 +12155,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -12180,7 +12180,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -12196,7 +12196,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -12341,7 +12341,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -12359,7 +12359,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -12384,7 +12384,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -12400,7 +12400,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -12533,7 +12533,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -12551,7 +12551,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -12576,7 +12576,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -12592,7 +12592,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -12713,7 +12713,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -12731,7 +12731,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -12756,7 +12756,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -12772,7 +12772,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -12905,7 +12905,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -12923,7 +12923,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -12948,7 +12948,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -12964,7 +12964,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -13085,7 +13085,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -13103,7 +13103,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -13128,7 +13128,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -13144,7 +13144,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -13337,7 +13337,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -13355,7 +13355,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -13380,7 +13380,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -13396,7 +13396,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -13529,7 +13529,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -13547,7 +13547,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -13572,7 +13572,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -13588,7 +13588,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -13781,7 +13781,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -13799,7 +13799,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -13824,7 +13824,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -13840,7 +13840,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -14009,7 +14009,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -14027,7 +14027,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -14052,7 +14052,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -14068,7 +14068,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -14177,7 +14177,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -14195,7 +14195,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -14220,7 +14220,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -14236,7 +14236,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -14345,7 +14345,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -14363,7 +14363,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -14388,7 +14388,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -14404,7 +14404,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -14573,7 +14573,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -14591,7 +14591,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -14616,7 +14616,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -14632,7 +14632,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -14777,7 +14777,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -14795,7 +14795,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -14820,7 +14820,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -14836,7 +14836,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -14957,7 +14957,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -14975,7 +14975,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -15000,7 +15000,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -15016,7 +15016,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -15377,7 +15377,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -15395,7 +15395,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -15420,7 +15420,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -15436,7 +15436,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -15581,7 +15581,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -15599,7 +15599,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -15624,7 +15624,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -15640,7 +15640,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -15749,7 +15749,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -15767,7 +15767,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -15792,7 +15792,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -15808,7 +15808,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -15953,7 +15953,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -15971,7 +15971,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -15996,7 +15996,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -16012,7 +16012,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -16209,7 +16209,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -16227,7 +16227,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -16245,7 +16245,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -16270,7 +16270,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -16286,7 +16286,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -16435,7 +16435,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -16453,7 +16453,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -16471,7 +16471,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -16496,7 +16496,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -16512,7 +16512,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -16685,7 +16685,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -16703,7 +16703,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -16721,7 +16721,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -16746,7 +16746,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -16762,7 +16762,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -16923,7 +16923,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -16941,7 +16941,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -16959,7 +16959,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -16984,7 +16984,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -17000,7 +17000,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -17197,7 +17197,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -17215,7 +17215,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -17233,7 +17233,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -17258,7 +17258,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -17274,7 +17274,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -17423,7 +17423,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -17441,7 +17441,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -17459,7 +17459,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -17484,7 +17484,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -17500,7 +17500,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -17625,7 +17625,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -17643,7 +17643,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -17661,7 +17661,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -17686,7 +17686,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -17702,7 +17702,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -17862,7 +17862,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -17880,7 +17880,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -17898,7 +17898,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -17923,7 +17923,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -17939,7 +17939,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18087,7 +18087,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18105,7 +18105,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18123,7 +18123,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18148,7 +18148,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18164,7 +18164,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18312,7 +18312,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18330,7 +18330,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18348,7 +18348,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18373,7 +18373,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18390,7 +18390,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18408,7 +18408,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18424,7 +18424,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18445,7 +18445,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18469,7 +18469,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18487,7 +18487,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18503,7 +18503,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18526,7 +18526,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18551,7 +18551,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18575,7 +18575,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18593,7 +18593,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18609,7 +18609,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18632,7 +18632,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18657,7 +18657,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18681,7 +18681,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18699,7 +18699,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18715,7 +18715,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18738,7 +18738,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18763,7 +18763,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18787,7 +18787,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18805,7 +18805,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18821,7 +18821,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18844,7 +18844,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18869,7 +18869,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18893,7 +18893,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18911,7 +18911,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18927,7 +18927,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18950,7 +18950,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18975,7 +18975,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -18999,7 +18999,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -19017,7 +19017,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -19033,7 +19033,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -19056,7 +19056,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -19081,7 +19081,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -19097,7 +19097,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -19117,7 +19117,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -19150,7 +19150,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -19168,7 +19168,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -19186,7 +19186,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -19211,7 +19211,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -19226,7 +19226,7 @@ "upstreams": [ { "auditStamp": { - "time": 1615443388097, + "time": 1643871600000, "actor": "urn:li:corpuser:_ingestion" }, "created": { @@ -19241,7 +19241,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -19264,13 +19264,13 @@ "actor": "urn:li:corpuser:_ingestion" }, "lastModified": { - "time": 1761583531923, + "time": 1643871600000, "actor": "urn:li:corpuser:_ingestion" } } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -19302,7 +19302,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -19318,7 +19318,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -19333,7 +19333,7 @@ "upstreams": [ { "auditStamp": { - "time": 1615443388097, + "time": 1643871600000, "actor": "urn:li:corpuser:_ingestion" }, "created": { @@ -19402,7 +19402,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -19425,13 +19425,13 @@ "actor": "urn:li:corpuser:_ingestion" }, "lastModified": { - "time": 1761583531926, + "time": 1643871600000, "actor": "urn:li:corpuser:_ingestion" } } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -19475,7 +19475,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -19491,7 +19491,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -19506,7 +19506,7 @@ "upstreams": [ { "auditStamp": { - "time": 1615443388097, + "time": 1643871600000, "actor": "urn:li:corpuser:_ingestion" }, "created": { @@ -19562,7 +19562,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -19585,13 +19585,13 @@ "actor": "urn:li:corpuser:_ingestion" }, "lastModified": { - "time": 1761583531930, + "time": 1643871600000, "actor": "urn:li:corpuser:_ingestion" } } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -19632,7 +19632,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -19648,7 +19648,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -19663,7 +19663,7 @@ "upstreams": [ { "auditStamp": { - "time": 1615443388097, + "time": 1643871600000, "actor": "urn:li:corpuser:_ingestion" }, "created": { @@ -19784,7 +19784,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -19807,13 +19807,13 @@ "actor": "urn:li:corpuser:_ingestion" }, "lastModified": { - "time": 1761583531935, + "time": 1643871600000, "actor": "urn:li:corpuser:_ingestion" } } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -19884,7 +19884,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -19900,7 +19900,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -19915,7 +19915,7 @@ "upstreams": [ { "auditStamp": { - "time": 1615443388097, + "time": 1643871600000, "actor": "urn:li:corpuser:_ingestion" }, "created": { @@ -19930,7 +19930,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -19953,13 +19953,13 @@ "actor": "urn:li:corpuser:_ingestion" }, "lastModified": { - "time": 1761583531941, + "time": 1643871600000, "actor": "urn:li:corpuser:_ingestion" } } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -19988,7 +19988,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -20004,7 +20004,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -20020,7 +20020,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -20036,7 +20036,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -20052,7 +20052,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -20068,7 +20068,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -20084,7 +20084,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -20100,7 +20100,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -20116,7 +20116,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -20132,7 +20132,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -20148,7 +20148,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -20164,7 +20164,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -20180,7 +20180,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -20196,7 +20196,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -20212,7 +20212,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -20228,7 +20228,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -20244,7 +20244,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -20260,7 +20260,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -20276,7 +20276,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -20292,7 +20292,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -20308,7 +20308,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -20324,7 +20324,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -20340,7 +20340,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } @@ -20356,7 +20356,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-stored-procedures-test", "lastRunId": "no-run-id-provided" } diff --git a/metadata-ingestion/tests/integration/oracle/golden_files/golden_mces_oracle_to_file_without_stored_procedures.json b/metadata-ingestion/tests/integration/oracle/golden_files/golden_mces_oracle_to_file_without_stored_procedures.json index f0665a6d2c123f..aa5994f3d21e87 100644 --- a/metadata-ingestion/tests/integration/oracle/golden_files/golden_mces_oracle_to_file_without_stored_procedures.json +++ b/metadata-ingestion/tests/integration/oracle/golden_files/golden_mces_oracle_to_file_without_stored_procedures.json @@ -16,7 +16,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-no-procedures-test", "lastRunId": "no-run-id-provided" } @@ -32,7 +32,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-no-procedures-test", "lastRunId": "no-run-id-provided" } @@ -48,7 +48,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-no-procedures-test", "lastRunId": "no-run-id-provided" } @@ -66,7 +66,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-no-procedures-test", "lastRunId": "no-run-id-provided" } @@ -82,7 +82,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-no-procedures-test", "lastRunId": "no-run-id-provided" } @@ -98,7 +98,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-no-procedures-test", "lastRunId": "no-run-id-provided" } @@ -121,7 +121,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-no-procedures-test", "lastRunId": "no-run-id-provided" } @@ -137,7 +137,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-no-procedures-test", "lastRunId": "no-run-id-provided" } @@ -153,7 +153,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-no-procedures-test", "lastRunId": "no-run-id-provided" } @@ -171,7 +171,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-no-procedures-test", "lastRunId": "no-run-id-provided" } @@ -192,7 +192,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-no-procedures-test", "lastRunId": "no-run-id-provided" } @@ -208,7 +208,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-no-procedures-test", "lastRunId": "no-run-id-provided" } @@ -305,7 +305,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-no-procedures-test", "lastRunId": "no-run-id-provided" } @@ -323,7 +323,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-no-procedures-test", "lastRunId": "no-run-id-provided" } @@ -348,7 +348,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-no-procedures-test", "lastRunId": "no-run-id-provided" } @@ -364,7 +364,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-no-procedures-test", "lastRunId": "no-run-id-provided" } @@ -557,7 +557,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-no-procedures-test", "lastRunId": "no-run-id-provided" } @@ -575,7 +575,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-no-procedures-test", "lastRunId": "no-run-id-provided" } @@ -600,7 +600,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-no-procedures-test", "lastRunId": "no-run-id-provided" } @@ -616,7 +616,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-no-procedures-test", "lastRunId": "no-run-id-provided" } @@ -728,7 +728,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-no-procedures-test", "lastRunId": "no-run-id-provided" } @@ -746,7 +746,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-no-procedures-test", "lastRunId": "no-run-id-provided" } @@ -764,7 +764,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-no-procedures-test", "lastRunId": "no-run-id-provided" } @@ -779,7 +779,7 @@ "upstreams": [ { "auditStamp": { - "time": 1615443388097, + "time": 1643871600000, "actor": "urn:li:corpuser:_ingestion" }, "created": { @@ -848,7 +848,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-no-procedures-test", "lastRunId": "no-run-id-provided" } @@ -873,7 +873,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-no-procedures-test", "lastRunId": "no-run-id-provided" } @@ -896,13 +896,13 @@ "actor": "urn:li:corpuser:_ingestion" }, "lastModified": { - "time": 1761581995835, + "time": 1643871600000, "actor": "urn:li:corpuser:_ingestion" } } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-no-procedures-test", "lastRunId": "no-run-id-provided" } @@ -946,7 +946,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-no-procedures-test", "lastRunId": "no-run-id-provided" } @@ -962,7 +962,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-no-procedures-test", "lastRunId": "no-run-id-provided" } @@ -978,7 +978,7 @@ } }, "systemMetadata": { - "lastObserved": 1615443388097, + "lastObserved": 1643871600000, "runId": "oracle-no-procedures-test", "lastRunId": "no-run-id-provided" } diff --git a/metadata-ingestion/tests/integration/oracle/test_oracle.py b/metadata-ingestion/tests/integration/oracle/test_oracle.py index 1c3a4dadcea3fe..fe4c03b3baeaff 100644 --- a/metadata-ingestion/tests/integration/oracle/test_oracle.py +++ b/metadata-ingestion/tests/integration/oracle/test_oracle.py @@ -19,6 +19,8 @@ from tests.test_helpers.click_helpers import run_datahub_cmd from tests.test_helpers.docker_helpers import wait_for_port +FROZEN_TIME = "2022-02-03 07:00:00" + def is_oracle_up(container_name: str, port: int) -> bool: """Check if Oracle is responsive on a container""" @@ -58,6 +60,7 @@ def oracle_runner(docker_compose_runner, pytestconfig): @pytest.mark.parametrize("config_file", config_files) +@freeze_time(FROZEN_TIME, ignore=["oracledb", "oracledb.thin_impl"]) @pytest.mark.integration def test_oracle_ingest(oracle_runner, pytestconfig, tmp_path, mock_time, config_file): test_resources_dir = pytestconfig.rootpath / "tests/integration/oracle" @@ -94,10 +97,6 @@ def test_oracle_test_connection(oracle_runner): assert report.basic_connectivity.failure_reason is None -# Mock-based tests from master branch -FROZEN_TIME = "2022-02-03 07:00:00" - - class OracleErrorHandlingMockData(OracleSourceMockDataBase): def get_data(self, *args: Any, **kwargs: Any) -> Any: if isinstance(args[0], str) and "sys_context" in args[0]: From 3799098798ed5e19c1753e05aa450c3ac6d11a87 Mon Sep 17 00:00:00 2001 From: Jonny Dixon Date: Mon, 27 Oct 2025 17:59:00 +0000 Subject: [PATCH 3/4] add sql injection security --- .../datahub/ingestion/source/sql/oracle.py | 58 ++++++++++++++----- .../tests/unit/test_oracle_source.py | 5 +- 2 files changed, 49 insertions(+), 14 deletions(-) diff --git a/metadata-ingestion/src/datahub/ingestion/source/sql/oracle.py b/metadata-ingestion/src/datahub/ingestion/source/sql/oracle.py index b5b2791e47b35b..b563e995f002a4 100644 --- a/metadata-ingestion/src/datahub/ingestion/source/sql/oracle.py +++ b/metadata-ingestion/src/datahub/ingestion/source/sql/oracle.py @@ -55,9 +55,18 @@ ViewPropertiesClass, ) from datahub.sql_parsing.sql_parsing_aggregator import SqlParsingAggregator +from datahub.utilities.str_enum import StrEnum logger = logging.getLogger(__name__) + +class DataDictionaryMode(StrEnum): + """Oracle data dictionary access modes.""" + + ALL = "ALL" + DBA = "DBA" + + # SQL Query Constants PROCEDURES_QUERY = """ SELECT @@ -202,8 +211,8 @@ class OracleConfig(BasicSQLAlchemyConfig, BaseUsageConfig): description="Add oracle database name to urn, default urn is schema.table", ) # custom - data_dictionary_mode: Optional[str] = Field( - default="ALL", + data_dictionary_mode: DataDictionaryMode = Field( + default=DataDictionaryMode.ALL, description="The data dictionary views mode, to extract information about schema objects " "('ALL' and 'DBA' views are supported). (https://docs.oracle.com/cd/E11882_01/nav/catalog_views.htm)", ) @@ -253,10 +262,10 @@ def check_service_name(cls, values): ) return values - @field_validator("data_dictionary_mode") + @field_validator("data_dictionary_mode", mode="before") @classmethod def check_data_dictionary_mode(cls, value): - if value not in ("ALL", "DBA"): + if isinstance(value, str) and value not in ("ALL", "DBA"): raise ValueError("Specify one of data dictionary views mode: 'ALL', 'DBA'.") return value @@ -958,7 +967,7 @@ def get_inspectors(self) -> Iterable[Inspector]: # Sqlalchemy inspector uses ALL_* tables as per oracle dialect implementation. # OracleInspectorObjectWrapper provides alternate implementation using DBA_* tables. - if self.config.data_dictionary_mode != "ALL": + if self.config.data_dictionary_mode != DataDictionaryMode.ALL: yield cast(Inspector, OracleInspectorObjectWrapper(inspector)) else: # To silent the mypy lint error @@ -1032,7 +1041,7 @@ def get_procedures_for_schema( base_procedures = [] # Determine table prefix based on data dictionary mode - tables_prefix = "DBA" if self.config.data_dictionary_mode == "DBA" else "ALL" + tables_prefix = self.config.data_dictionary_mode.value # Oracle stores schema names in uppercase, so normalize the schema name normalized_schema = inspector.dialect.denormalize_name(schema) or schema.upper() @@ -1116,6 +1125,14 @@ def _get_procedure_source_code( ) -> Optional[str]: """Get procedure source code from ALL_SOURCE or DBA_SOURCE.""" try: + # Validate tables_prefix to prevent injection + if tables_prefix not in ( + DataDictionaryMode.ALL.value, + DataDictionaryMode.DBA.value, + ): + raise ValueError(f"Invalid tables_prefix: {tables_prefix}") + + # Safe: tables_prefix is validated above, user params use prepared statements source_query = PROCEDURE_SOURCE_QUERY.format(tables_prefix=tables_prefix) source_data = conn.execute( @@ -1148,6 +1165,14 @@ def _get_procedure_arguments( ) -> Optional[str]: """Get procedure arguments from ALL_ARGUMENTS or DBA_ARGUMENTS.""" try: + # Validate tables_prefix to prevent injection + if tables_prefix not in ( + DataDictionaryMode.ALL.value, + DataDictionaryMode.DBA.value, + ): + raise ValueError(f"Invalid tables_prefix: {tables_prefix}") + + # Safe: tables_prefix is validated above, user params use prepared statements args_query = PROCEDURE_ARGUMENTS_QUERY.format(tables_prefix=tables_prefix) args_data = conn.execute( @@ -1176,7 +1201,15 @@ def _get_procedure_dependencies( ) -> Optional[Dict[str, List[str]]]: """Get procedure dependencies from ALL_DEPENDENCIES or DBA_DEPENDENCIES.""" try: + # Validate tables_prefix to prevent injection + if tables_prefix not in ( + DataDictionaryMode.ALL.value, + DataDictionaryMode.DBA.value, + ): + raise ValueError(f"Invalid tables_prefix: {tables_prefix}") + # Get objects that this procedure depends on (upstream) + # Safe: tables_prefix is validated above, user params use prepared statements upstream_query = PROCEDURE_UPSTREAM_DEPENDENCIES_QUERY.format( tables_prefix=tables_prefix ) @@ -1187,6 +1220,7 @@ def _get_procedure_dependencies( ) # Get objects that depend on this procedure (downstream) + # Safe: tables_prefix is validated above, user params use prepared statements downstream_query = PROCEDURE_DOWNSTREAM_DEPENDENCIES_QUERY.format( tables_prefix=tables_prefix ) @@ -1264,9 +1298,7 @@ def _get_materialized_view_names_fallback( schema = inspector.dialect.denormalize_name( schema or inspector.dialect.default_schema_name ) - tables_prefix = ( - "DBA" if self.config.data_dictionary_mode == "DBA" else "ALL" - ) + tables_prefix = self.config.data_dictionary_mode.value with inspector.engine.connect() as conn: cursor = conn.execute( @@ -1424,9 +1456,7 @@ def _get_materialized_view_definition_fallback( schema or inspector.dialect.default_schema_name ) - tables_prefix = ( - "DBA" if self.config.data_dictionary_mode == "DBA" else "ALL" - ) + tables_prefix = self.config.data_dictionary_mode.value params = {"mview_name": denormalized_mview_name} text = MATERIALIZED_VIEW_DEFINITION_QUERY.format( @@ -1463,7 +1493,9 @@ def generate_profile_candidates( schema: str, ) -> Optional[List[str]]: tables_table_name = ( - "ALL_TABLES" if self.config.data_dictionary_mode == "ALL" else "DBA_TABLES" + "ALL_TABLES" + if self.config.data_dictionary_mode == DataDictionaryMode.ALL + else "DBA_TABLES" ) # If stats are available , they are used even if they are stale. diff --git a/metadata-ingestion/tests/unit/test_oracle_source.py b/metadata-ingestion/tests/unit/test_oracle_source.py index 8f5d1d3f6105e6..f375c8d7ad1786 100644 --- a/metadata-ingestion/tests/unit/test_oracle_source.py +++ b/metadata-ingestion/tests/unit/test_oracle_source.py @@ -3,6 +3,7 @@ from unittest.mock import Mock, patch import pytest +from pydantic import ValidationError from sqlalchemy.engine import Inspector from datahub.configuration.common import AllowDenyPattern @@ -104,7 +105,9 @@ def test_oracle_config_data_dictionary_mode(): assert config.data_dictionary_mode == mode # Test invalid data dictionary mode - with pytest.raises(ValueError, match="Specify one of data dictionary views mode"): + with pytest.raises( + ValidationError, match="Specify one of data dictionary views mode" + ): OracleConfig.parse_obj({**base_config, "data_dictionary_mode": "INVALID"}) From ad583e4f57dffa36e9121c6bc6da5524d1a6074b Mon Sep 17 00:00:00 2001 From: Jonny Dixon Date: Mon, 27 Oct 2025 18:00:32 +0000 Subject: [PATCH 4/4] Update oracle.py --- metadata-ingestion/src/datahub/ingestion/source/sql/oracle.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/metadata-ingestion/src/datahub/ingestion/source/sql/oracle.py b/metadata-ingestion/src/datahub/ingestion/source/sql/oracle.py index b563e995f002a4..aafc3c6eaed168 100644 --- a/metadata-ingestion/src/datahub/ingestion/source/sql/oracle.py +++ b/metadata-ingestion/src/datahub/ingestion/source/sql/oracle.py @@ -2,8 +2,6 @@ import logging import platform import re - -# This import verifies that the dependencies are available. import sys from collections import defaultdict from typing import Any, Dict, Iterable, List, NoReturn, Optional, Tuple, Union, cast