Purpose of Query

To get the count of added objects in the current snapshot the following query can be run on the central repository.

Applicable CAST Version
Release
Yes/No
8.3.x(tick)
8.2.x(tick)
8.1.x(tick)
8.0.x(tick)
7.3.x(tick)
Applicable RDBMS
RDBMS
Yes/No
Oracle Server (tick)
Microsoft SQL Server (tick)
CSS2 (tick)
Query for CSS, SQL Server, Oracle
select SNAPSHOT_ID,
       count(distinct OBJECT_ID)
  from DSS_OBJECT_INFO
group by SNASPHOT_ID
order by SNASPHOT_ID;
Query result example

1;22010
2;22020

Query result interpretation

In this example, there are 22010 objects for snapshot 1 and 22020 objects for snapshot 2.

Notes/comments
 
Related Pages