Skip to main content

What does Atlan crawl from SAP ASE?

Connect docs via MCP

Atlan extracts metadata for databases, schemas, tables, views, columns, stored procedures, and functions from SAP ASE (Adaptive Server Enterprise) system catalogs and maps each property to its internal asset model. The tables below list which SAP ASE properties are read and how they appear on the corresponding Atlan asset.

Atlan automatically excludes the SAP ASE system databases (master, tempdb, model, sybsystemprocs, sybsecurity, dbccdb, sybmgmtdb, sybpcidb, sybsystemdb), system stored procedures (names starting with sp_), and the system accounts guest and public from the crawl.

Databases

Atlan maps databases from master..sysdatabases to its Database asset type.

Source propertyAtlan property
namename
Owner login (from master..syslogins)sourceCreatedBy
crdatecreateTime
Number of schemasschemaCount

Schemas

SAP ASE doesn't have schemas as a separate object - object owners act as schemas. Atlan maps each user from sysusers in a crawled database to its Schema asset type.

Source propertyAtlan property
namename
Number of tablestableCount
Number of viewsviewsCount

Tables

Atlan maps user tables from sysobjects (type U) to its Table asset type.

Source propertyAtlan property
namename
Owner nameschemaName
row_count() estimaterowCount
Number of columnscolumnCount
crdatecreateTime

The row count is an estimate from SAP ASE's row_count() function. It can appear as -1 if statistics haven't been generated on the source table.

Views

Atlan maps views from sysobjects (type V) to its View asset type. The view definition is reconstructed from the SQL text stored in syscomments and used to generate lineage to the view's source tables.

Source propertyAtlan property
namename
Owner nameschemaName
SQL text (from syscomments)definition
Number of columnscolumnCount
crdatecreateTime

Columns

Atlan maps columns of tables and views from syscolumns (with data types from systypes) to its Column asset type.

Source propertyAtlan property
namename
colidorder
Data type name (from systypes)dataType
lengthmaxLength
Nullability flagisNullable
Primary key flagisPrimary
Foreign key flagisForeign
Index membership flagisIndexed
precprecision
scalenumericScale

Stored procedures

Atlan maps stored procedures from sysobjects (type P) to its Procedure asset type. System procedures with names starting with sp_ are excluded. The procedure definition is reconstructed from syscomments and used to generate lineage.

Source propertyAtlan property
namename
Owner nameschemaName
SQL text (from syscomments)definition
crdatecreateTime

Functions

Atlan maps user-defined functions from sysobjects (types F and SF) to its Function asset type. Function extraction requires SAP ASE 16.0 or later - on earlier versions, functions are skipped.

Source propertyAtlan property
namename
Owner nameschemaName
Object type (F scalar, SF SQL function)type
SQL text (from syscomments)functionDefinition
crdatecreateTime

Lineage

Atlan generates lineage by parsing the SQL definitions of views, stored procedures, and functions. Query history mining and usage metrics aren't supported for SAP ASE.

See also