Table 3-1 Active Directory Memberships Table Definition
Column Name |
SQL Server Data Type |
PosgreSQL Data Type |
Notes |
---|---|---|---|
id |
bigint |
bigint |
Primary key |
group_id |
integer |
integer |
|
member_id |
integer |
integer |
|
Table 3-2 Active Directory Objects Table Definition
Column Name |
SQL Server Data Type |
PosgreSQL Data Type |
Notes |
---|---|---|---|
id |
integer |
integer |
Primary key |
name |
nvarchar(256) |
varchar(256) |
SAM Account Name |
fdn |
nvarchar(512) |
varchar(512) |
Full distinguished object name |
domain |
nvarchar(256) |
varchar(256) |
Domain name |
guid |
binary(16) |
bytea |
Globally Unique Identifier |
sid |
varbinary(68) |
bytea |
Security Identifier |
object_type |
|
|
|
identity_system_id |
|
|
Reference to primary key of identity_systems table |
Table 3-3 eDirectory DS Trustees Table Definition
Column Name |
SQL Server Data Type |
PosgreSQL Data Type |
Notes |
---|---|---|---|
id |
bigint |
bigint |
Primary key |
scan_id |
integer |
integer |
Reference to scans table |
object_id |
integer |
integer |
Reference to edir_objects table entry |
trustee_id |
integer |
integer |
Reference to edir_objects table entry |
rights |
integer |
integer |
Assigned eDirectory DS rights |
Table 3-4 eDirectory Objects Table Definition
Column Name |
SQL Server Data Type |
PosgreSQL Data Type |
Notes |
---|---|---|---|
id |
integer |
integer |
Primary key |
name |
|
|
Common name (CN) |
fdn |
|
|
Full distinguished name |
guid |
|
|
Globally unique Identifier |
object_type |
|
|
|
identity_system_id |
|
|
Reference to identity_systems table |
Table 3-5 eDirectory Security Equals Table Definition
Column Name |
SQL Server Data Type |
PosgreSQL Data Type |
Notes |
---|---|---|---|
id |
bigint |
bigint |
Primary key |
object_id |
integer |
integer |
Reference to edir_objects table |
equiv_object_id |
integer |
integer |
Reference to edir_objects table |
Table 3-6 Identity Systems Table Definition
Column Name |
SQL Server Data Type |
PosgreSQL Data Type |
Notes |
---|---|---|---|
id |
integer |
integer |
Primary key |
type |
integer |
integer |
|
name |
nvarchar(256) |
varchar(256) |
|
domain |
nvarchar(256) |
varchar(256) |
Active Directory domain |
proxy_account |
nvarchar(256) |
varchar(256) |
|
is_primary |
bit |
boolean |
|
is_managed |
bit |
boolean |
|
last_modified |
datetime2(0) |
timestamp without timezone |
|
Table 3-7 NCP Trustees Table Definition
Column Name |
SQL Server Data Type |
PosgreSQL Data Type |
Notes |
---|---|---|---|
id |
bigint |
bigint |
Primary key |
scan_data_id |
bigint |
bigint |
Reference to scan_data table |
trustee_guid |
varbinary(68) |
bytea |
Reference to edir_objects (using GUID) |
rights |
integer |
integer |
|
Table 3-8 NTFS ACEs Table Definition
Column Name |
SQL Server Data Type |
PosgreSQL Data Type |
Notes |
---|---|---|---|
id |
bigint |
bigint |
Primary key |
scan_data_id |
bigint |
bigint |
Reference to scan_data table |
flags |
|
|
|
ace_type |
|
|
|
access_mask |
|
|
|
sid |
|
|
Trustee SID |
index_on_disk |
|
|
Discovered order of this ACE for the associated entry as read from the file system |
canonical_index |
|
|
Preferred order in which ACE should appear for the associated entry |
Table 3-9 Scans Table Definition
Column Name |
SQL Server Data Type |
PosgreSQL Data Type |
Notes |
---|---|---|---|
id |
bigint |
bigint |
Primary key |
scan_policy_id |
integer |
integer |
Reference to scan_policies table |
triggered_start_time |
datetime2(3) |
timestamp without time zone |
Initial time scan delegation starts |
scan_start_time |
datetime2(3) |
timestamp without time zone |
Start time when agent begins physical scan |
scan_stop_time |
datetime2(3) |
timestamp without time zone |
Stop time when agent completes physical scan |
enum_start_time |
datetime2(3) |
timestamp without time zone |
Agent metrics related to file system object enumeration |
enum_stop_time |
datetime2(3) |
timestamp without time zone |
Agent metrics related to file system object enumeration |
enum_file_count |
integer |
integer |
Agent metrics related to file system object enumeration |
enum_directory_count |
integer |
integer |
Agent metrics related to file system object enumeration |
enum_link_count |
integer |
integer |
Agent metrics related to file system object enumeration |
caching_start_time |
datetime2(3) |
timestamp without time zone |
Metrics related to agent caching |
caching_stop_time |
datetime2(3) |
timestamp without time zone |
Metrics related to agent caching |
cached_file_count |
integer |
integer |
Metrics related to agent caching |
cached_directory_count |
integer |
integer |
Metrics related to agent caching |
cached_link_count |
integer |
integer |
Metrics related to agent caching |
cache_size |
integer |
integer |
Metrics related to agent caching |
cache_size_max |
integer |
integer |
Metrics related to agent caching |
metadata_start_time |
datetime2(3) |
timestamp without time zone |
Agent metrics related to filesystem metadata collection |
metadata_stop_time |
datetime2(3) |
timestamp without time zone |
Agent metrics related to filesystem metadata collection |
metadata_file_count |
integer |
integer |
Agent metrics related to filesystem metadata collection |
metadata_directory_count |
integer |
integer |
Agent metrics related to filesystem metadata collection |
metadata_link_count |
integer |
integer |
Agent metrics related to filesystem metadata collection |
accounts_start_time |
datetime2(3) |
timestamp without time zone |
Agent metrics related to security principal collection |
accounts_stop_time |
datetime2(3) |
timestamp without time zone |
Agent metrics related to security principal collection |
accounts_object_count |
integer |
integer |
Agent metrics related to security principal collection |
transfer_start_time |
datetime2(3) |
timestamp without time zone |
Related to transfer of scan file from the Agent to the Engine |
transfer_stop_time |
datetime2(3) |
timestamp without time zone |
Related to transfer of scan file from the Agent to the Engine |
db_start_time |
datetime2(3) |
timestamp without time zone |
Database insert start time* |
db_stop_time |
datetime2(3) |
|
Database insert stop time* |
scan_type |
integer |
integer |
|
scan_target_id |
integer |
integer |
Reference to scan_targets table |
local_identity_system_id |
integer |
integer |
|
retry_count |
integer |
integer |
Current number of scan attempts |
status_code |
integer |
integer |
Internal status code |
error_string |
nvarchar(1024) |
varchar(1024) |
|
progress_status |
integer |
integer |
|
next_retry_time |
datetime2(0) |
timestamp without time zone |
Next scheduled time to retry a failed scan |
ntfs_abe_enabled |
bit |
boolean |
Flag indicating that the Windows share has ABE enabled |
is_valid |
bit |
boolean |
[Deprecated] |
agent_name |
nvarchar(256) |
varchar(256) |
|
* Database insert times do not include security equivalence, group membership, or eDirectory Directory Service trustee processing, all of which runs in the background.
Table 3-10 Scan Data Table Definition
Column Name |
SQL Server Data Type |
PosgreSQL Data Type |
Notes |
---|---|---|---|
id |
bigint |
bigint |
Primary key |
scan_id |
integer |
integer |
Reference to scans table |
path_type |
integer |
integer |
|
is_link |
bit |
boolean |
Flag indicating entry is a link (symlink, hardlink, etc.) |
name |
nvarchar(256) |
varchar(256) |
File or directory name |
fullpath |
nvarchar(max) |
text |
Full UNC path to the file system entry |
fullpath_hash |
binary(20) |
bytea |
SHA-1 hash of lowercase fullpath |
filename_extension |
nvarchar(32) |
varchar(32) |
Extensions having more than 32 characters are treated as if they have none |
owner_id |
varbinary(68) |
bytea |
Maps to either a GUID or a SID |
attributes |
integer |
integer |
|
create_time |
datetime2(0) |
timestamp without time zone |
|
modify_time |
datetime2(0) |
timestamp without time zone |
|
access_time |
datetime2(0) |
timestamp without time zone |
|
size |
bigint |
bigint |
For files, actual size; for directories, accumulative size of all subordinate files |
size_on_disk |
bigint |
bigint |
Assumes typical allocation unit size of 4K |
size_compressed |
bigint |
bigint |
Only accurate for NTFS file systems |
idx |
integer |
integer |
Scan index; unique per scan |
parent_idx |
integer |
integer |
Parent index. Used for hierarchical relation processing |
path_depth |
integer |
integer |
Entry depth with respect to the scan target’s root path |
ns_left |
integer |
integer |
Nested-set Left index – used for hierarchical relation processing |
ns_right |
integer |
integer |
Nested-set Right index – used for hierarchical relation processing |
status_code |
integer |
integer |
|
Table 3-11 Scan Directory Data Table Definition
Column Name |
SQL Server Data Type |
PosgreSQL Data Type |
Notes |
---|---|---|---|
id |
bigint |
bigint |
Primary key |
scan_data_id |
bigint |
bigint |
Reference to scan_data table |
file_count |
integer |
integer |
Count of all files subordinate to this directory |
directory_count |
integer |
integer |
Count of all subdirectories |
directory_quota |
bigint |
bigint |
Directory quota for this directory |
directory_quota_flags |
integer |
integer |
|
child_file_count |
integer |
integer |
Count of all immediately subordinate files |
child_link_count |
integer |
integer |
Count of all immediately subordinate links |
child_directory_count |
integer |
integer |
Count of all immediately subordinate directories |
child_size |
bigint |
bigint |
Size of all immediately subordinate files |
child_size_on_disk |
bigint |
bigint |
Size on disk of all immediately subordinate files (assumes 4K allocation size) |
child_size_compressed |
bigint |
bigint |
Size on disk of all immediately subordinate compressed files (only accurate with NTFS) |
child_link_size |
bigint |
bigint |
Size of all immediately subordinate links |
Table 3-12 Scan History Table Definition
Column Name |
SQL Server Data Type |
PosgreSQL Data Type |
Notes |
---|---|---|---|
id |
integer |
integer |
Primary key |
identity_system |
nvarchar(256) |
text |
Identity system associated with this scan target |
scan_target |
nvarchar(1024) |
text |
UNC path of scan target |
file_size |
bigint |
bigint |
Total aggregate size of all files |
file_count |
integer |
integer |
Total count of all files |
directory_count |
integer |
integer |
Total count of all directories |
scan_policy_name |
nvarchar(64) |
varchar(64) |
Scan policy associated with this scan |
agent_name |
nvarchar(256) |
text |
|
scan_id |
integer |
integer |
Scan ID |
scan_type |
integer |
integer |
|
triggered_start_time |
datetime2(3) |
timestamp without time zone |
Initial time scan delegation starts |
scan_start_time |
datetime2(3) |
timestamp without time zone |
Start time when agent begins physical scan |
scan_stop_time |
datetime2(3) |
timestamp without time zone |
Stop time when agent completes physical scan |
enum_start_time |
datetime2(3) |
timestamp without time zone |
Agent metrics related to file system object enumeration |
enum_stop_time |
datetime2(3) |
timestamp without time zone |
Agent metrics related to file system object enumeration |
enum_file_count |
integer |
integer |
Agent metrics related to file system object enumeration |
enum_directory_count |
integer |
integer |
Agent metrics related to file system object enumeration |
enum_link_count |
integer |
integer |
Agent metrics related to file system object enumeration |
caching_start_time |
datetime2(3) |
timestamp without time zone |
Metrics related to agent caching |
caching_stop_time |
datetime2(3) |
timestamp without time zone |
Metrics related to agent caching |
cached_file_count |
integer |
integer |
Metrics related to agent caching |
cached_directory_count |
integer |
integer |
Metrics related to agent caching |
cached_link_count |
integer |
integer |
Metrics related to agent caching |
cache_size |
integer |
integer |
Metrics related to agent caching |
cache_size_max |
integer |
integer |
Metrics related to agent caching |
metadata_start_time |
datetime2(3) |
timestamp without time zone |
Agent metrics related to filesystem metadata collection |
metadata_stop_time |
datetime2(3) |
timestamp without time zone |
Agent metrics related to filesystem metadata collection |
metadata_file_count |
integer |
integer |
Agent metrics related to filesystem metadata collection |
metadata_directory_count |
integer |
integer |
Agent metrics related to filesystem metadata collection |
metadata_link_count |
integer |
integer |
Agent metrics related to filesystem metadata collection |
accounts_start_time |
datetime2(3) |
timestamp without time zone |
Agent metrics related to security principal collection |
accounts_stop_time |
datetime2(3) |
timestamp without time zone |
Agent metrics related to security principal collection |
accounts_object_count |
integer |
integer |
Agent metrics related to security principal collection |
transfer_start_time |
datetime2(3) |
timestamp without time zone |
Related to transfer of scan file from the Agent to the Engine |
transfer_stop_time |
datetime2(3) |
timestamp without time zone |
Related to transfer of scan file from the Agent to the Engine |
db_start_time |
datetime2(3) |
timestamp without time zone |
Database insert start time* |
db_stop_time |
datetime2(3) |
|
Database insert stop time* |
status_code |
integer |
integer |
Internal status code |
error_string |
nvarchar(1024) |
varchar(1024) |
|
Table 3-13 Scan Targets Table Definition
Column Name |
SQL Server Data Type |
PosgreSQL Data Type |
Notes |
---|---|---|---|
id |
bigint |
bigint |
Primary key |
network_path |
nvarchar(256) |
varchar(256) |
Root path for scan target |
network_path_lower |
nvarchar(256) |
[ Not applicable ] |
Computed column |
server |
nvarchar(256) |
varchar(256) |
|
identity_system_id |
integer |
integer |
Reference to identity_systems table |
platform |
smallint |
smallint |
|
filesystem |
smallint |
smallint |
|
cost_per_unit |
money |
money |
Not currently used |
Table 3-14 Security Descriptors Table Definition
Column Name |
SQL Server Data Type |
PosgreSQL Data Type |
Notes |
---|---|---|---|
id |
bigint |
bigint |
Primary key |
scan_data_id |
bigint |
bigint |
Reference to scan_data table |
control |
integer |
integer |
Security descriptor control flags |
dacl_present |
bit |
boolean |
Indicates presence of DACL entries for this security descriptor |
sacl_present |
bit |
boolean |
Indicates presence of SACL entries for this security descriptor |
Table 3-15 Trend Volume Freespace Table Definition
Column Name |
SQL Server Data Type |
PosgreSQL Data Type |
Notes |
---|---|---|---|
id |
integer |
integer |
Primary key |
scan_id |
integer |
integer |
Scan ID |
identity_system |
nvarchar(256) |
text |
|
network_path |
nvarchar(max) |
text |
Scan target path |
server |
nvarchar(256) |
text |
|
filesystem |
integer |
integer |
|
volume_guid |
uniqueidentifier |
uuid |
|
volume_label |
nvarchar(256) |
text |
|
volume_bytes_total |
bigint |
bigint |
|
volume_bytes_free |
bigint |
bigint |
|
volume_bytes_used |
bigint |
bigint |
|
allocation_unit_size |
integer |
integer |
|
allocation_units_total |
bigint |
bigint |
|
allocation_units_free |
bigint |
bigint |
|
allocation_units_used |
bigint |
bigint |
|
status |
integer |
integer |
|
scan_time |
datetime2(0) |
timestamp without time zone |
|