SQL Server 2008 SP1 CU14 and SQL Server 2008 SP2 CU4 Released
Microsoft has released two new Cumulative Updates for SQL Server 2008 SP1 and SQL Server 2008 SP2. The first one...
2011-05-17
1,509 reads
Microsoft has released two new Cumulative Updates for SQL Server 2008 SP1 and SQL Server 2008 SP2. The first one...
2011-05-17
1,509 reads
Since we are in the middle of May 2011, I thought was was time to update my SQL Server 2008...
2011-05-16
621 reads
PASS has added a new feature to the session selection process for the PASS Summit 2011, which they are calling...
2011-05-11
593 reads
I will be speaking at the Colorado Springs SQL Server User’s Group, live and in person, on Wednesday, June 15,...
2011-05-09
511 reads
Today is the last day to submit session abstracts for the PASS 2011 Summit. I was lucky enough to speak...
2011-05-04
474 reads
For Day 30 of this series, (which is the last day), I am going to talk a little about RAID,...
2011-05-01
914 reads
Writing a month long series is always a lot more work than you initially expect. You would think that I...
2011-05-01
618 reads
For Day 29 of this series, I am going to talk about some of the basic things that you should...
2011-04-30
1,388 reads
For Day 28 of this series, I am going to talk a little bit about some upcoming developments in Intel...
2011-04-28
1,638 reads
For Day 27 of this series, I am going to talk a little bit about disk performance and one easy...
2011-04-27
1,312 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