SSDT: Unable to connect to master or target server.
Every now and then I come across this error in SSDT, normally when trying to publish and the odd thing...
2017-06-12
36 reads
Every now and then I come across this error in SSDT, normally when trying to publish and the odd thing...
2017-06-12
36 reads
I have been quite interested by vs code and have been using it more and more recently. I use it...
2017-05-09 (first published: 2017-04-27)
3,122 reads
I have upgraded the ssdt dev pack to support visual studio 2017 and fixed a couple of minor annoyances and...
2017-05-08
40 reads
I have upgraded the ssdt dev pack to support visual studio 2017 and fixed a couple of minor annoyances and...
2017-05-08
10 reads
I have upgraded the ssdt dev pack to support visual studio 2017 and fixed a couple of minor annoyances and have started to think about how to improve it...
2017-05-08
1 reads
I have upgraded the ssdt dev pack to support visual studio 2017 and fixed a couple of minor annoyances and have started to think about how to improve it...
2017-05-08
I have upgraded the ssdt dev pack to support visual studio 2017 and fixed a couple of minor annoyances and...
2017-05-08
991 reads
I have upgraded the ssdt dev pack to support visual studio 2017 and fixed a couple of minor annoyances and...
2017-05-08
52 reads
A teams maturity shows in its choice of tools.
I have seen quite a few different development teams in wildly different...
2017-05-05 (first published: 2017-04-24)
1,399 reads
I have been quite interested by vs code and have been using it more and more recently. I use it...
2017-04-27
212 reads
By Steve Jones
The episode on data masking and subetting is out. You can see it here:...
By Brian Kelley
I'm listening to Effortless by Greg McKeon (link to author's page) through Audible.com. He...
This book was making its rounds on social media, and the concept seems interesting...
I declare @Where based on the input parameter in the stored procedure. Set @SQL...
Hi, hoping someone can help. We're in the process of migrating to a new...
I am building an ETL process between these tables in SQL Server 2022 set to 160 compatibility level:
CREATE TABLE Image_Staging ( imageid INT NOT NULL CONSTRAINT Image_StagingPK PRIMARY KEY , imagestatus TINYINT , imagebinary IMAGE); GO CREATE TABLE Images ( imageid INT NOT NULL CONSTRAINT ImagesPK PRIMARY KEY , imagestatus TINYINT , imagemodified DATETIME , imagebinary IMAGE); GOI want to run this query to check if the images already loaded exist. This will help me decide if I need to insert or update an image. What happens with this query?
SELECT i.imageid FROM dbo.Image_Staging AS ist INNER JOIN dbo.Images AS i ON ist.imagebinary = i.imagebinary;See possible answers