Database Deployments in Uncontrolled Environments
The ideal is to make a change and see that change deployed to production, in a perfect world we would be told to work on something, write the code...
2016-09-20
1 reads
The ideal is to make a change and see that change deployed to production, in a perfect world we would be told to work on something, write the code...
2016-09-20
1 reads
I have been thinking quite a lot recently (ok not that much but my thinking has changed) about how to...
2016-08-21
747 reads
I have been thinking quite a lot recently (ok not that much but my thinking has changed) about how to...
2016-08-21
54 reads
I have been thinking quite a lot recently (ok not that much but my thinking has changed) about how to...
2016-08-21
61 reads
I have been thinking quite a lot recently (ok not that much but my thinking has changed) about how to deploy dacpac's. In particular I am talking about how...
2016-08-21
3 reads
tSQLt Visual Studio Test Adapter
What is this?
This lets you use Visual Studio to run tSQLt tests easily. Visual Studio has...
2016-08-24 (first published: 2016-08-17)
2,257 reads
tSQLt Visual Studio Test Adapter What is this? This lets you use Visual Studio to run tSQLt tests easily. Visual...
2016-08-17
46 reads
tSQLt Visual Studio Test Adapter What is this? This lets you use Visual Studio to run tSQLt tests easily. Visual...
2016-08-17
49 reads
tSQLt Visual Studio Test Adapter What is this? This lets you use Visual Studio to run tSQLt tests easily. Visual Studio has a built in framework for finding and...
2016-08-17
5 reads
Deploying a dacpac from powershell should be pretty easy, there is a .net api which you can use to open...
2016-08-02
864 reads
One thing I’ve always loved about the Scooby-Doo cartoon is that he never solved...
By Kevin3NF
Flexibility and Scale at the Database Level When SQL Server 2012 introduced Availability Groups...
Setting page visibility and the active page are often overlooked last steps when publishing...
Comments posted to this topic are about the item Password Guidance
Comments posted to this topic are about the item Using table variables in T-SQL
I am trying to check out elastic query between two test instances we have...
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