다음을 통해 공유


.show stored_query_result 명령

적용 대상: ✅Microsoft Fabric✅Azure Data Explorer

활성 저장된 쿼리 결과에 대한 정보를 표시합니다.

현재 데이터베이스에 저장된 활성 쿼리 결과에 대한 정보를 표시하는 데 사용합니다 .show stored_query_results . 이 명령은 결국 일관성이 있으므로 최근에 만든 저장된 쿼리 결과가 반환되기까지 짧은 지연이 있을 수 있습니다.

storedQueryResultName을 사용하여 .show stored_query_results 현재 데이터베이스의 특정 활성 저장된 쿼리 결과에 대한 정보를 표시합니다. 이 명령은 위의 버전과 달리 매우 일관적입니다.

사용 권한

이러한 명령을 실행하려면 데이터베이스 뷰어 권한이 있어야 합니다.

구문

.show stored_query_results

.showstored_query_results storedQueryResultName

.showstored_query_result storedQueryResultName schema

구문 규칙에 대해 자세히 알아봅니다.

매개 변수

이름 Type 필수 설명
StoredQueryResultName string ✔️ 엔터티 이름 규칙을 준수하는 저장된 쿼리 결과 이름 입니다.

반품

현재 데이터베이스에 저장된 활성 쿼리 결과에 대한 정보를 반환합니다.

예제

다음 예제에서는 현재 데이터베이스에 저장된 모든 기존 쿼리 결과에 대한 정보를 반환합니다.

.show stored_query_results

출력

StoredQueryResultId 속성 DatabaseName PrincipalIdentity SizeInBytes RowCount CreatedOn ExpiresOn
c522ada3-e490-435a-a8b1-e10d00e7d5c2 이벤트 TestDB aadapp=c28e9b80-2808-bed525fc0fbb 104372 1000000 2020-10-07 14:26:49.6971487 2020-10-08 14:26:49.6971487
ef3f6b6e-cedd-4b93-b453-1ce0d1add1ff Events2 TestDB aadapp=c28e9b80-2808-bed525fc0fbb 104410 1000000 2020-10-07 14:26:52.2100315 2020-10-08 14:26:52.2100315

다음 예제에서는 현재 데이터베이스에 저장된 쿼리 결과에 Events 대한 정보를 반환합니다.

.show stored_query_results Events

출력

StoredQueryResultId 속성 DatabaseName PrincipalIdentity SizeInBytes RowCount CreatedOn ExpiresOn
c522ada3-e490-435a-a8b1-e10d00e7d5c2 이벤트 TestDB aadapp=c28e9b80-2808-bed525fc0fbb 104372 1000000 2020-10-07 14:26:49.6971487 2020-10-08 14:26:49.6971487

다음 예제에서는 저장된 쿼리 결과의 Events스키마를 보여줍니다.

.show stored_query_result Events schema

출력

StoredQueryResult 스키마
이벤트 [{"Column":"ID","Type":"guid"},{"Column":"EventName","Type":"string"},{"Column":"Time","Type":"datetime"}]