When you need to run something potentially dangerous, use transactions.  For example, I’m updating the region custom property for a series of nodes whose nodeid is greater than 250. BEGIN TRANSACTION UPDATE nodes SET region = ‘FOO’ WHERE nodeid > 250 Once that query is run, you’ll see how many rows you’ve affected.  If you [...]