Obsidian/Recognition/Work Related/프로젝트/스마트계류장/1.데이터베이스/관리페이지 테스트 쿼리.md

183 lines
3.2 KiB
Markdown
Raw Permalink Normal View History

2023-10-20 08:45:26 +00:00
```sql
-- 파노라마뷰
select * from ucm.SACP_INFO_DSPLY_LC_CFG
-- 파노라마뷰, 기장정보
select * from ucm.SACP_WETHR_CFG
-- 주기장뷰
select * from ucm.SACP_INFO_DSPLY_LC_CFG
-- select * from ucm.SACP_CMMN_CD where UPPER_CD in ('SD000', 'SG000')
-- 어라운드뷰(sys_id:DT010100)
select * from ucm.SACP_INFO_DSPLY_LC_CFG
-- 추적용 CCTY
select * from ucm.SACP_CCTV
-- 추적용 CCTY 우선순위
-- select * from ucm.SACP_CMMN_CD where cd_ty_id = 'CT026' -> CT036
select * from ucm.SACP_CCTV_TRACE_PRIORT
-- 데이터 블록/실벌 관리
select * from ucm.SACP_DATA_DSPLY_CFG
select * from ucm.SACP_DATA_DSPLY_CFG_DETAIL
-- 정보 표출 설정
--- 데이터 블록 표출 정보
select * from ucm.SACP_DATA_BLCK_DSPLY_CFG
--- 알람 표출 설정
select * from ucm.SACP_NTIC_DSPLY_CFG order by to_number(ntic_ty)
-- 주파수 관리(+영역정보)
select * from ucm.SACP_VCCS_FQNC
-- 주기장 관리
select * from ucm.SACP_STAND
where stand_no ='999'
-- 유도로 관리
select * from ucm.SACP_WY
where WY_ID like 'WY1%%'
-- 건물정보 관리
select * from ucm.SACP_FCLTS
-- 경로 정보 관리
select * from ucm.SACP_STD_ROUTE_MASTR where STD_ROUTE_NM like 'C%'
select * from ucm.SACP_STD_ROUTE_DETAIL where STD_ROUTE_ID = 'RM100005'
-- 제한구역 관리
select * from ucm.SACP_RTTDR
-- 권역관리
select * from ucm.SACP_APN_DSTRCT
-- 주기장 관리
select * from ucm.SACP_STAND
-- 제방빙 구역 관리
select * from ucm.SACP_DEICING_ZONE where DEICING_ZONE_ID = 'DZ100005'
select * from ucm.SACP_DEICING_ZONE_DETAIL where DEICING_ZONE_ID = 'DZ100005'
-- 로그 관리
select * from ucm.SACP_LOG_CFG
-- Hotspot
select * from ucm.SACP_WY
where AREA_ID = 'AR100030'
select * from ucm.SACP_SPOT
where AREA_ID = 'AR100030'
-- 항공기
select * from ucm.SACP_AC
where AC_TY_ICAO like '141%'
-- 항공사
select * from ucm.SACP_ARLN
where arln_cd_icao like 'KAL%'
-- 항공기 3D객체
select *
from ucm.SACP_AC_ARLN
where MVMN_OBJECT_ID like '%141%'
-- 항공기 3D객체
select *
from UDT.SACP_MVMN_OBJECT
where mvmn_object_id = 'KAL-141-1'
-- 항공기 3D객체
select *
from udt.SACP_OBJECT_FILE
where mdl_file_id = 'MDL100060'
-- 권역 공통코드
select *
from ucm.SACP_CMMN_CD
where CD_TY_ID = 'CT003'
and cd_id like 'AF02%'
-- 기타
select * from ucm.SACP_MBER_DSPLY_CFG
select * from ucm.SACP_DSPLY_MODE
select * from ucm.SACP_INFO_DSPLY_LC_CFG
select * from ucm.SACP_WETHR_CFG
select * from ucm.SACP_CCTV_TRACE_PRIORT
select * from ucm.SACP_MOTION
select * from ucm.SACP_MOTION_CFG
select * from ucm.SACP_DATA_DSPLY_CFG
select * from ucm.SACP_DATA_DSPLY_CFG_DETAIL
select * from ucm.SACP_DATA_BLCK_DSPLY_CFG
select * from ucm.SACP_NTIC_DSPLY_CFG
select * from ucm.SACP_LOG_CFG
select * from ucm.SACP_CNTC_INFO_LST
select * from ucm.SACP_CONN_CFG
select * from UCM.SACP_CCTV_TRACE_PRIORT
select *
from ucm.SACP_AREA_MASTR
where AREA_nm = 'E99'
select *
from ucm.SACP_AREA_detail
where AREA_ID = 'AR100028'
select *
from ueai.EAI_GRDACMVT_RCV
where acstype like '32%'
select *
from uic.SACP_IDNTFC_MAPNG
where flt_de between '20230912' and '20230913'
order by REGIST_DT
select *
from ucm.SACP_MBER_DSPLY_CFG
where CNTRL_TY = '2'
```