Automatically name primary key constraints in SSDT
Automatically name primary key constraints There are some things you see when writing t-sql code and schemas that just look...
2015-11-16
44 reads
Automatically name primary key constraints There are some things you see when writing t-sql code and schemas that just look...
2015-11-16
44 reads
Automatically name primary key constraints There are some things you see when writing t-sql code and schemas that just look sloppy, one of those is unnamed constraints, what you...
2015-11-16
1 reads
I have made some changes to the way MergeUi works and also moved it into a new repository (https://github.com/GoEddie/SSDT-DevPack).
The way...
2015-11-16 (first published: 2015-11-12)
1,667 reads
I have made some changes to the way MergeUi works and also moved it into a new repository (https://github.com/GoEddie/SSDT-DevPack).
The way...
2015-11-12
45 reads
I have made some changes to the way MergeUi works and also moved it into a new repository (https://github.com/GoEddie/SSDT-DevPack).
The way...
2015-11-12
26 reads
I have made some changes to the way MergeUi works and also moved it into a new repository (https://github.com/GoEddie/SSDT-DevPack).
The way MergeUi used to work was that it enumerated the...
2015-11-12
What is the ScriptDom?
The ScriptDom is an api for taking t-sql scripts, converting them into an AST or taking an...
2015-11-07
1,957 reads
What is the ScriptDom? The ScriptDom is an api for taking t-sql scripts, converting them into an AST or taking...
2015-11-07
29 reads
What is the ScriptDom? The ScriptDom is an api for taking t-sql scripts, converting them into an AST or taking...
2015-11-07
20 reads
What is the ScriptDom? The ScriptDom is an api for taking t-sql scripts, converting them into an AST or taking an AST and generating t-sql.
What is an AST? Read...
2015-11-07
1 reads
By gbargsley
We’ve all been there. Someone walks up and asks, “Is SQL Server having issues?”...
By Chris Yates
In the beginning, there was OLTP – Online Transaction Processing. Fast, reliable, and ruthlessly...
I’m giving two online sessions soon on virtual events that are free to attend....
Hello SQL Server 2022 16.0.4212.1 running on a Windows Server 2025 Std,V 24H2, SO...
i have subscription of github copilot which i can access in vs 2022 comunity...
Comments posted to this topic are about the item Password Guidance
What happens if you run the following code in SQL Server 2022+?
declare @t1 table (id int); insert into @t1 (id) values (NULL), (1), (2), (3); select count(*) from @t1 where @t1.id is distinct from NULL;See possible answers