Releases: github.com/sass/dart-sass/releases
Sass is the name of the CSS pre-processor language. It comes in two syntaxes:
| /* | |
| SELECT | |
| TABLE_SCHEMA | |
| ,TABLE_NAME | |
| ,COLUMN_NAME | |
| ,ORDINAL_POSITION | |
| ,COLUMN_DEFAULT | |
| ,IS_NULLABLE |
| /* | |
| SELECT TABLE_SCHEMA, TABLE_NAME FROM INFORMATION_SCHEMA.TABLES | |
| -- WHERE TABLE_TYPE = 'VIEW' | |
| WHERE TABLE_TYPE = 'BASE TABLE' | |
| FOR JSON PATH; | |
| */ | |
| DECLARE @db1JSON nvarchar(MAX) = N'[ ... ]'; | |
| DECLARE @db2JSON nvarchar(MAX) = N'[ ... ]'; |
| /* | |
| SELECT | |
| s.name AS TABLE_SCHEMA | |
| ,t.name AS TABLE_NAME | |
| ,i.name AS INDEX_NAME | |
| ,i.type_desc AS INDEX_TYPE | |
| ,i.is_unique AS IS_UNIQUE | |
| ,i.is_primary_key AS IS_PRIMARY_KEY | |
| ,i.is_unique_constraint AS IS_UNIQUE_CONSTRAINT |
| -- SELECT TABLE_SCHEMA, TABLE_NAME FROM INFORMATION_SCHEMA.COLUMNS | |
| -- WHERE TABLE_NAME LIKE 'T_Checklist%' | |
| -- GROUP BY TABLE_SCHEMA, TABLE_NAME | |
| -- SELECT * FROM INFORMATION_SCHEMA.COLUMNS | |
| -- WHERE (1=1) | |
| -- AND TABLE_NAME LIKE 'T_Checklist%' | |
| -- -- AND TABLE_NAME <> 'T_Checklist_Ref_EditRights' | |
| -- FOR JSON AUTO |
| Quelle: | |
| https://learn.microsoft.com/en-us/sql/reporting-services/custom-assemblies/deploying-a-custom-assembly?view=sql-server-ver17 | |
| Datei | |
| CorQrCode.dll | |
| Falscher Pfad: | |
| C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\PrivateAssemblies | |
| Richtiger Pfad: |
Releases: github.com/sass/dart-sass/releases
Sass is the name of the CSS pre-processor language. It comes in two syntaxes:
| SELECT TOP 1 * | |
| INTO #foo | |
| FROM T_Benutzer | |
| ; | |
| IF OBJECT_ID('tempdb..#NOT_foo') IS NOT NULL DROP TABLE [#foo]; -- this is presumed buggy | |
| -- Find leaking temp-tables |
| Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\SSRS\CPE] | |
| "CustomerFeedback"=dword:00000000 | |
| "EnableErrorReporting"=dword:00000000 |
| #!/usr/bin/env bash | |
| # | |
| # restart_xrdp.sh - Interactive restart for xrdp related services | |
| # | |
| echo "Select what to restart:" | |
| echo "1) chansrv" | |
| echo "2) xrdp" | |
| echo "3) xrdp-sesman" | |
| echo "4) xrdp + xrdp-sesman" |
| #!/usr/bin/env bash | |
| # | |
| # kill_rider.sh - Kill all processes containing "rider" (case-insensitive) | |
| # | |
| # List matching processes first for safety, excluding this script itself | |
| echo "🔍 Matching processes:" | |
| ps aux | grep -i rider | grep -v grep | grep -v kill_rider.sh | |
| # Ask for confirmation before killing |