Advertisement
Guest User

comandos

a guest
Dec 6th, 2019
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. //COMANDOS A CORRER NO SQL
  2.  
  3. // 1º ELIMINAR AS TABELAS DIM
  4.  
  5. delete from t_dim_customer;
  6. delete from t_dim_date;
  7. delete from t_dim_product;
  8. delete from t_dim_promotion;
  9. delete from t_dim_store;
  10. delete from t_dim_time;
  11.  
  12. //2º commit
  13. commit;
  14.  
  15. //3º fazer os execs (nao tenho a certeza se é false ou true)
  16. exec pck_extract.main(false);
  17. exec pck_transform.main(false);
  18. exec pck_load.main(false,false);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement