Watching for powershell changes and running Invoke-Pester
It seems like more and more recently I have been writing powershell and typescript rather than c# and t-sql and there are quite a few things to like about...
2017-11-14
1 reads
It seems like more and more recently I have been writing powershell and typescript rather than c# and t-sql and there are quite a few things to like about...
2017-11-14
1 reads
TLDR:
If you build an SSDT project you can get an error which says:
"SQL71502: Function: [XXX].[XXX] has an unresolved reference to...
2017-11-06
940 reads
TLDR: If you build an SSDT project you can get an error which says:
“SQL71502: Function: [XXX].[XXX] has an unresolved reference...
2017-11-06
26 reads
TLDR: If you build an SSDT project you can get an error which says:
“SQL71502: Function: [XXX].[XXX] has an unresolved reference...
2017-11-06
109 reads
TLDR: If you build an SSDT project you can get an error which says:
“SQL71502: Function: [XXX].[XXX] has an unresolved reference to object [XXX].[XXX].”
If the code that is failing is...
2017-11-06
23 reads
I worked one particular contract where I was forced to take my lunch at 11:35 every day, and it was...
2017-11-03 (first published: 2017-10-21)
4,059 reads
I worked one particular contract where I was forced to take my lunch at 11:35 every day, and it was...
2017-10-21
41 reads
I worked one particular contract where I was forced to take my lunch at 11:35 every day, and it was...
2017-10-21
44 reads
I worked one particular contract where I was forced to take my lunch at 11:35 every day, and it was all virtualisations fault!
To set the scene it was a...
2017-10-21
6 reads
The question of where to install tSQLt is probably the most common question I get when I talk about unit...
2017-10-19
723 reads
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...
By Steve Jones
It’s time for T-SQL Tuesday again and this time Todd Kleinhans has a great...
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