Releases

Database Update - 3.2.0 -> 3.2.2

Sql update scripts are available to run against a previously active instance of the CluedIn databases. The scripts should be invoked against the databases using sqlcmd.

  1. Request the update scripts from CluedIn
  2. Install sqlcmd locally
  3. Start a port-forward to your sql server instance e.g.
     > namespace=<namespace>
     > kubectl port-forward `kubectl get pods -n $namespace -o name | sed -n '/sqlserver/p'` 1433 -n $namespace
    
  4. Use sqlcmd to run each script
     > user=<username>
     > password=<password>
     > server=127.0.0.1
     > sqlcmd -U $user -P $password -S $server -i <path to update script>