×

Welcome to TagMyCode

Please login or create account to add a snippet.
0
0
 
0
Language: Text
Posted by: Alexander Nitsche
Added: Apr 24, 2020 6:22 AM
Modified: Apr 24, 2020 6:24 AM
Views: 4313
Tags: no tags
  1. drop table if exists default.chk_tbl;
  2.  
  3. create table default.chk_tbl
  4. (
  5.     log_dt     timestamp,
  6.     tbl_schema varchar(210),
  7.     tbl_name   varchar(210),
  8.     result     varchar(10)
  9. );
  10.  
  11.