DBSNP SAP (Database snapshots) Table details

Dictionary Type: Table
Description: Database snapshots




ABAP Code to SELECT data from DBSNP
Related tables to DBSNP
Access table DBSNP




Table field list including key, data, relationships and ABAP select examples

DBSNP is a standard SAP Table which is used to store Database snapshots data and is available within R/3 SAP systems depending on the version and release level.

The DBSNP table consists of various fields, each holding specific information or linking keys about Database snapshots data available in SAP. These include RECORDTIME (Time), DB_INSTANC (Database instance (OPS)), BUSYWAITS (DB snapshot), WAITTIME (DB snapshot).. See below for full list along with technical details, documentation, text table, check tables, foreign key relationships, conversion routines, relevant tcodes and example ABAP select code etc. .

Delivery Class: L - Table for storing temporary data, is delivered empty
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Cannot Be Enhanced


SAP DBSNP table fields - Full list of fields found in SAP data dictionary

Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
RECORDDATEDate DATUMDATS8DATUM
RECORDTIMETime UZEITTIMS6UZEIT
DB_INSTANCDatabase instance (OPS) DB_INSTANCCHAR16CHAR16
BUSYWAITSDB snapshot SNAPSHOTDEC16SNAPSHOT
WAITTIMEDB snapshot SNAPSHOTDEC16SNAPSHOT
CONSISTGETDB snapshot SNAPSHOTDEC16SNAPSHOT
BLOCKGETSDB snapshot SNAPSHOTDEC16SNAPSHOT
PARSECOUNTDB snapshot SNAPSHOTDEC16SNAPSHOT
PHYSIREADSDB snapshot SNAPSHOTDEC16SNAPSHOT
PHYSIWRITEDB snapshot SNAPSHOTDEC16SNAPSHOT
RECURCALLSDB snapshot SNAPSHOTDEC16SNAPSHOT
REDOBLKWRIDB snapshot SNAPSHOTDEC16SNAPSHOT
REDOWTIMEDB snapshot SNAPSHOTDEC16SNAPSHOT
FETCHROWIDDB snapshot SNAPSHOTDEC16SNAPSHOT
FETCONTROWDB snapshot SNAPSHOTDEC16SNAPSHOT
SCANBLKGOTDB snapshot SNAPSHOTDEC16SNAPSHOT
SCANROWGOTDB snapshot SNAPSHOTDEC16SNAPSHOT
SCANLONGDB snapshot SNAPSHOTDEC16SNAPSHOT
SCANSHORTDB snapshot SNAPSHOTDEC16SNAPSHOT
USERCALLSDB snapshot SNAPSHOTDEC16SNAPSHOT
USERCOMMITDB snapshot SNAPSHOTDEC16SNAPSHOT
USRROLLBACDB snapshot SNAPSHOTDEC16SNAPSHOT

Key field Non-key field



How do I retrieve data from SAP table DBSNP using ABAP code

The following ABAP code Example will allow you to do a basic selection on DBSNP to SELECT all data from the table
DATA: WA_DBSNP TYPE DBSNP.

SELECT SINGLE *
FROM DBSNP
INTO CORRESPONDING FIELDS OF WA_DBSNP
WHERE...

How to access SAP table DBSNP

Within an ECC or HANA version of SAP you can also view further information about DBSNP and the data within it using relevant transactions such as

SE11 (ABAP Dictionary Maintenance)
SM30 (Maintain Table Data)
SE80 (Object Navigator)
SE16 (Data Browser).


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!