How to delete data from MS SQL Server using Delete from Data Store Entities Smart Service ?

What are the steps/best practice to delete data from external DB table using Delete from Data Store Entities Smart Service ?

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer
    Here are a few quick thoughts....

    (1) Run it as who started the process to make sure they have permissions to do so
    (2) Ensure cascade is in place, otherwise delete from child up
    (3) If you are giving this priv to a lot of people, keep an audit log table as the process instance that does the delete will archive or delete based on data mgmt strategy
Reply
  • 0
    Certified Lead Developer
    Here are a few quick thoughts....

    (1) Run it as who started the process to make sure they have permissions to do so
    (2) Ensure cascade is in place, otherwise delete from child up
    (3) If you are giving this priv to a lot of people, keep an audit log table as the process instance that does the delete will archive or delete based on data mgmt strategy
Children