Advertisement
widana

Untitled

Oct 30th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /**
  2. * SCRIPT PUBLICATION YANG AKAN DIJALANKAN DI DATABASE TASKHUB
  3. */
  4. CREATE PUBLICATION master_product_taskhub_publication FOR TABLE m_product, m_product_ctgr, m_sell_price_product_for_so;
  5.  
  6. /**
  7. * SCRIPT SUBSCRIPTION YANG AKAN DIJALANKAN DI DATABASE WEBCLINIC
  8. */
  9. CREATE SUBSCRIPTION master_product_taskhub_subscription
  10.          CONNECTION 'host=192.168.0.100 port=5432 user=sts password=sts123! dbname=taskhubdb'
  11.         PUBLICATION master_product_taskhub_publication;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement