TNThim Nilssoninthim.hashnode.dev·May 18, 2023 · 1 min readWindows: Install Microsoft SQL Server Developer Edition quick and easyInstall Chocolatey from Powershell # Install Chocolatey Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.W...00
TNThim Nilssoninthim.hashnode.dev·May 15, 2023 · 1 min readnetbox-docker: reindexProblem Search index doesn't work after upgrading the netbox docker image Solution Rebuild the index # To find the container name: # sudo docker container ls sudo docker exec -it -u root netbox-docker_netbox_1 /bin/bash -c "python3 manage.py reindex"...00
TNThim Nilssoninthim.hashnode.dev·May 15, 2023 · 1 min readSQL: Generate Kill CommandThis handy SQL query list all connections to an mssql database and a corresponding kill command. The kill command will just be printed, not executed. DECLARE @database_name NVARCHAR(255); SET @database_name = 'name of database' SELECT DB_NAME(dbi...00