update query dump

This commit is contained in:
adekurniawan 2023-12-14 20:34:18 +07:00
parent d40c0b401a
commit b02bc94878
1 changed files with 22 additions and 0 deletions

22
QueryTemplate/dump.sql Normal file
View File

@ -0,0 +1,22 @@
select updated_date
, moc
, managedelement ->> 'managedElementType' as managedElementType
, managedelement ->> 'moId' as managedElement
, cleansing(managedelement ->> 'userLabel') as ne_name
, ldn as ldn
, parameters ->> 'moId' as moId
, cleansing(parameters ->> 'userLabel') as userLabel
, cleansing(parameters ->> 'alias') as alias
, parameters ->> 'cellLocalId' as cellLocalId
, parameters ->> 'tac' as tac
, parameters ->> 'simuLoadSwchDl' as simuLoadSwchDl
, managedelement
, parameters
from dump
where moc = 'CUEUtranCellFDDLTE'
order by moc
limit 100
;