Package com.uc4.api.systemoverview
Class ILMHistoryItem
java.lang.Object
com.uc4.api.systemoverview.ILMHistoryItem
This class represents a row in the ILM history table.
-
Constructor Summary
ConstructorsConstructorDescriptionILMHistoryItem
(com.uc4.util.XMLDocument doc, Element row, ConnectionAttributes session) Internal use only. -
Method Summary
Modifier and TypeMethodDescriptiongetEnd()
Returns the time up to when data records have been stored in the partition.Returns the name of the filegroup (MS SQL Server) or the tablespace (Oracle).int
Returns the largest RunID of the partition.int
Returns the smallest RunID of the partition.int
Returns the running number of the partition.Returns the schema name (MS SQL Server) or the corresponding main table of the database (Oracle).getStart()
Returns the time as of when data records have been stored in the partition.
-
Constructor Details
-
ILMHistoryItem
Internal use only.- Parameters:
doc
- XML documentrow
- Elementsession
- Session info
-
-
Method Details
-
getNumber
public int getNumber()Returns the running number of the partition. Under MS SQL Server, staging tables always have the partition number "0".- Returns:
- Partition number
-
getParent
Returns the schema name (MS SQL Server) or the corresponding main table of the database (Oracle).- Returns:
- schema or main table
-
getFileGroupTableSpace
Returns the name of the filegroup (MS SQL Server) or the tablespace (Oracle).- Returns:
- Name of the filegroup or the tablespace
-
getStart
Returns the time as of when data records have been stored in the partition.- Returns:
- Start time, can be empty but not null
-
getEnd
Returns the time up to when data records have been stored in the partition.- Returns:
- End date and time, can be empty but not null
-
getMinRunID
public int getMinRunID()Returns the smallest RunID of the partition.- Returns:
- Smallest RunID of the partition
-
getMaxRunID
public int getMaxRunID()Returns the largest RunID of the partition.- Returns:
- Largest RunID of the partition
-