SQL Queries - CAST Knowledge Base - Queries on Transactions - How to check if there is custom function point on Transactions

Purpose of Query

 This query returns the custom function point calibration on Transactions.

Applicable CAST Version
Release
Yes/No
8.3.x  (tick)
8.2.x  (tick)
8.1.x  (tick)
8.0.x  (tick)
Applicable RDBMS

 

RDBMS
Yes/No
Oracle Server  (tick)
Microsoft SQL Server  (tick)
CSS2  (tick)


Query for CSS
SELECT count (1)
from dss_transaction
where  user_fp_value is  not null
or  user_isinput is not null
Query result example
 2
Query result interpretation
 The query returns the number of customized transactions.
Query for Oracle
SELECT count (1)
from dss_transaction
where  user_fp_value is  not null
or  user_isinput is not null
Query result example
 2
Query result interpretation
  The query returns the number of customized transactions.
Query for SQL server
SELECT count (1)
from dss_transaction
where  user_fp_value is  not null
or  user_isinput is not null
Query result example
 2
Query result interpretation
  The query returns the number of customized transactions.
Notes/comments
 

 

Related Pages