Informacja dla użytkowników systemu OŚRODEK
w związku z zapytaniem PWINGiK
W związku z zapytaniem Podkarpackiego Wojewódzkiego Inspektora Nadzoru Geodezyjnego i Kartograficznego przesłego drogą mailową, o następującej treści:
Na prośbę PWINGiK, uprzejmie proszę o przesłanie informacji dotyczących sporządzonych protokołów weryfikacji w okresie od 01.01.2021 do 31.12.2021 r.
1. Liczbę wydanych protokołów weryfikacji z wynikiem pozytywnym
2. Liczbę wydanych protokołów weryfikacji z wynikiem negatywnym
3. Wykaz protokołów weryfikacji z wynikiem negatywnym wraz z podaniem asortymentu
- należy w monitorze zapytań wykonać poniższe zapytania:
1. Liczba protokołów pozytywnych
select count(*) from (select id_roboty, data_nad, id_stat from kergstat union distinct select uid as id_roboty, d_stat as data_nad, status as id_stat from roboty where d_stat is not null and status is not null ) U where u.id_stat=(select uid from status where kod_stat=4) and u.data_nad between '2021.01.01' and '2021.12.31'
2. Liczba protokołów negatywnych
select count(*) from (select id_roboty, data_nad, id_stat from kergstat union distinct select uid as id_roboty, d_stat as data_nad, status as id_stat from roboty where d_stat is not null and status is not null ) U where u.id_stat=(select uid from status where kod_stat=5) and u.data_nad between '2021.01.01' and '2021.12.31'
3. Lista zgłoszeń z protokołami negatywnymi
select (select N.Numer from kerg_num1(r.uid) N ) as "Nr zgłoszenia", a.nazwa_a from (select id_roboty, data_nad, id_stat from kergstat union distinct select uid as id_roboty, d_stat as data_nad, status as id_stat from roboty where d_stat is not null and status is not null ) U, kergasor S, asortym A, roboty R where u.id_stat=(select uid from status where kod_stat=5) and u.data_nad between '2021.01.01' and '2021.12.31' and u.id_roboty=r.uid and u.id_roboty=s.id_roboty and s.id_asort=a.uid