0% found this document useful (0 votes)
28 views1 page

Kpi SQL

This document contains a SQL query that selects performance metrics from a database table for a set of site names over a two week period in October 2019. The query selects the period start time, site name, and 11 performance metrics from the nokiaadmin.h2g_d_site_v table where the period start time is between October 5th and 22nd 2019 and the site name is in the list of 26 provided site names.

Uploaded by

mujtaba.nortel
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
28 views1 page

Kpi SQL

This document contains a SQL query that selects performance metrics from a database table for a set of site names over a two week period in October 2019. The query selects the period start time, site name, and 11 performance metrics from the nokiaadmin.h2g_d_site_v table where the period start time is between October 5th and 22nd 2019 and the site name is in the list of 26 provided site names.

Uploaded by

mujtaba.nortel
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

Select

PERIOD_START_TIME "PERIOD_START_TIME",
sitename,

DCR,sdcch_traffic_volume,SDCCH_BLOCKING_RATE,TCH_BLOCKING_RATE,PAYLOAD_LLC_TOTAL_KB
YTE,DL_LLC_THROUGHPUT,CSSR_MVO,TCH_Availability,hosr

From
nokiaadmin.h2g_d_site_v@NMOS1
Where
PERIOD_START_TIME >= to_date('2019-10-05 00:00','yyyy-MM-dd HH24:MI') and
PERIOD_START_TIME < to_date('2019-10-22 00:00','yyyy-MM-dd HH24:MI')
and sitename in
('H1654X','H1655X','H1656X','H1668X','H1673X','H1723X','H2077X','T4934X','T4939X','
T4947X','T4948X','T5507X','T5764X','T5895X','T5899X','T5991X','T6400X','T6402X','T6
415X','T6418X','T6421X','T6422X','T6423X','T6486X','T6498X')

You might also like