Pinned Loading
-
SQL Server: TSQL Callstack Emulation
SQL Server: TSQL Callstack Emulation 1IF OBJECT_ID('dbo.ErrorHandler') IS NULL BEGIN
2EXEC ('CREATE PROCEDURE dbo.ErrorHandler AS BEGIN SELECT 1; END;');
3END4GO5 -
Possible bad SQL SERVER OPTIONS in s...
Possible bad SQL SERVER OPTIONS in server, db, tables, procs, columns 1--SELECT * FROM sys.databases23SELECT 'SERVER OPTIONS' AS 'container'
45/* -
jsonb_generic.sql
jsonb_generic.sql 1DROP TABLE IF EXISTS pgbench_generic_log;
2CREATE TABLE pgbench_generic_log (
3mtime timestamptz not null default now(),
4action char not null check (action in ('I', 'U', 'D')),
5username text not null,
-
fun with IP Addresses in MSSQL
fun with IP Addresses in MSSQL 1CREATE FUNCTION dbo.udf_ipv4_format (@addr binary(16) )
2RETURNS varchar(20) with SCHEMABINDING AS
3BEGIN4return IIF(SUBSTRING(@addr,0,8)=0,
5CONCAT( -
SqlServer.Rules
SqlServer.Rules PublicForked from tcartwright/SqlServer.Rules
SQL Server static code analysis rules for SSDT database projects
C#
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.

