Data Ownership
Who owns the data that we generate ourselves? It's not as easy to answer that as you think.
2007-12-18
49 reads
Who owns the data that we generate ourselves? It's not as easy to answer that as you think.
2007-12-18
49 reads
2007-12-17
142 reads
Licensing SQL Server used to be easy and could be again, though it is still better than licensing Oracle.
2007-12-17
239 reads
If someone acts suspicious at work, do you report them? What if it's the CIO? What if data security is involved?
2007-12-14
95 reads
Malicious code embedded inside advertisements served on the web. What's next?
2007-12-13
66 reads
Everyone wants real time reporting, or do they? Steve Jones talks about some of the downsides of implementing such a system.
2007-12-12
116 reads
A primary key is a must for every table. Or is it? Steve Jones examines the question.
2007-12-11
455 reads
In an age where commercial interests seem to trump all, it's nice to see someone delivering content out there for free.
2007-12-10
119 reads
What do IT workers want for Christmas? Let us know in this Friday's poll.
2007-12-07
53 reads
Cell phones are great communication tools, but that's mostly what they do, even for IT folks. But Steve Jones talks about some other possibilities and potential problems.
2007-12-06
49 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