SQL Quiz Part 2: Career Challenges
I’ve read a number of responses from Chris Shaw’s first DBA networking quiz. I missed out on the first one,...
2008-12-10
1,267 reads
I’ve read a number of responses from Chris Shaw’s first DBA networking quiz. I missed out on the first one,...
2008-12-10
1,267 reads
I could have sworn that my SQL Server Magazine seemed much smaller this month. When I pulled out last’s months...
2008-12-07
1,301 reads
… and joined Twitter. I’m only doing it ‘cuz everybody else is doing it. With all the other social networking tools...
2008-12-02
617 reads
DBA, database developer, analyst, SQL grunt, or whatever your title may be, there is no question that your role will...
2008-12-02
791 reads
For my colleagues and friend who visit my websites (www.bucketofbits.com, www.tyleris.com, www.timmitchell.net), I just discovered that my web host has...
2008-12-01
793 reads
In the past few years, many people - myself included - have expressed a desire to see the quality of the Microsoft...
2008-11-29
1,705 reads
Working with healthcare organizations, I am constantly aware of the restrictions my staff and I must abide by according to HIPAA constraints. ...
2008-11-27
1,666 reads
After 2 years working on a data conversion and software implementation project, I’ve finally started to get caught up on...
2008-11-24
1,660 reads
Turning up the heat. Take it up a notch. Stepping up to the plate. Less talk, more action.
However you choose...
2008-11-24
1,631 reads
I broke down and bought my first Vista machine last Sunday, an HP Pavilion from a local box store. From...
2008-11-21
598 reads
By Brian Kelley
Tech conferences aren't just for networking and learning how to address a problem you're...
By DataOnWheels
When I created the website on WordPress, I was expecting all the features I...
By Steve Jones
I wrote a piece on the new SUBSTRING in SQL Server 2025 and got...
I changed my email address in Edit Profile page, but it has no effect...
Comments posted to this topic are about the item The case for "Understanding our...
Comments posted to this topic are about the item Specifying the Collation
I am dealing with issues on my SQL Server 2022 instance related to collation. I have an instance collation of Latin1_General_CS_AS_KS_WS, but a database collation of Latin1_General_CI_AS. I want to force a few queries to run with a specified collation by using code like this:
DECLARE @c VARCHAR(20) = 'Latin1_General_CI_AS'
SELECT p.PersonType,
p.Title,
p.LastName,
c.CustomerID,
c.AccountNumber
FROM Person.Person AS p
INNER JOIN Sales.Customer AS c
ON c.PersonID = p.BusinessEntityID
COLLATE @c
Will this solve my problem? See possible answers