DBE_HEAT_MAP
Interface Description
Returns information such as the last modification time of a row in the target data block based on the input parameters. The information is used to browse the basis for determining cold and hot rows. This interface is an O&M interface and has no visibility check. That is, if the input CTID is a deleted row, this interface still returns the latest status of the current row on the page.
Interface |
Description |
---|---|
ROW_HEAT_MAP |
Obtains information such as the last modification time of a row based on the schema to which the object belongs, data object name, data object partition name, and CTID. |
- DBE_HEAT_MAP.ROW_HEAT_MAP
Obtains information such as the last modification time of a row based on the schema to which the object belongs, data object name, data object partition name, and CTID. The prototype is as follows:
1 2 3 4 5
DBE_HEAT_MAP.ROW_HEAT_MAP( owner IN VARCHAR2, segment_name IN VARCHAR2, partition_name IN VARCHAR2 DEFAULT NULL, ctid IN TEXT);
Table 2 DBE_HEAT_MAP.ROW_HEAT_MAP parameters Parameter
Description
owner
Schema to which a data object belongs.
segment_name
Data object name.
partition_name
Data object partition name. This parameter is optional. The default value is NULL.
ctid
Data row ID.
Examples
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
gaussdb=# ALTER DATABASE set ilm = on; gaussdb=# CREATE Schema HEAT_MAP_DATA; gaussdb=# SET current_schema=HEAT_MAP_DATA; gaussdb=# CREATE TABLESPACE example1 RELATIVE LOCATION 'tablespace1'; gaussdb=# CREATE TABLE HEAT_MAP_DATA.heat_map_table(id INT, value TEXT) TABLESPACE example1; gaussdb=# INSERT INTO HEAT_MAP_DATA.heat_map_table VALUES (1, 'test_data_row_1'); gaussdb=# SELECT * from DBE_HEAT_MAP.ROW_HEAT_MAP( owner => 'heat_map_data', segment_name => 'heat_map_table', partition_name => NULL, ctid => '(0,1)'); owner | segment_name | partition_name | tablespace_name | file_id | relative_fno | ctid | writetime ---------------+----------------+----------------+-----------------+---------+--------------+-------+----------- heat_map_data | heat_map_table | | example1 | 17291 | 17291 | (0,1) | (1 row) |
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot