Corporate Programming Sucks
Does it suck to be a corporate programmer? Joel Spolsky things so, but Steve Jones takes issue with it.
2008-01-03
353 reads
Does it suck to be a corporate programmer? Joel Spolsky things so, but Steve Jones takes issue with it.
2008-01-03
353 reads
What will happen in the job market for DBAs this year? Steve Jones gives a few opinions based on what is happening in the industry.
2008-01-02
436 reads
It's important that you manage your career and not just leave it to chance. Steve Jones talks about what you might do to ensure that you'll be successful in the IT world.
2007-12-31
578 reads
2007-12-28
96 reads
How anonymous are your ratings and other opinions on the Internet? Not as much as you might think.
2007-12-27
199 reads
Steve Jones takes a look at what's happening in the world of alternative energy, including cleaner nuclear power and energy from motion.
2007-12-26
55 reads
Complying with software licensing is something you should do, but how far should companies take this?
2007-12-24
132 reads
What would you recommend for the holidays next week when the office is closed.
2007-12-21
106 reads
2007-12-20
1,896 reads
Test data is critical to being sure your application works, but is production data ok to use in test environments?
2007-12-19
511 reads
By Steve Jones
I wrote a piece on the new SUBSTRING in SQL Server 2025 and got...
By Steve Jones
If you aren’t watching the Ignite keynotes today, then you might have missed the...
Short version You want to get this running as fast as possible. Do these...
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