Incommunicado
Communication is important, and it's a real problem when people can't reach you. Read about an interesting phone accident the some hints for better communication.
2007-11-14
63 reads
Communication is important, and it's a real problem when people can't reach you. Read about an interesting phone accident the some hints for better communication.
2007-11-14
63 reads
Security is hard, but are we doing a good job? Steve Jones shares a few thoughts on our security development practices
2007-11-13
50 reads
A few comment on the database news for the week ending 11/10/07
2007-11-12
25 reads
Is the rapid pace of information being fed to us a problem? Steve Jones has a few thoughts.
2007-11-12
38 reads
2007-11-08
44 reads
The growth of SQL Server's subsystems leaves Steve Jones wondering how should we be thinking about the product.
2007-11-07
121 reads
The SQL Server team is looking for feedback on deleting databases and Steve Jones gives a few ideas.
2007-11-06
95 reads
2007-11-05
741 reads
I remember when Windows 3.1 started to gain widespread deployment in businesses. With all it's WYSIWYG features and multiple applications running at the same time, many people felt we'd get to a paperless office. Over a decade later I rarely see an office that doesn't have a copy machine and at least one printer. We've gotten better at shuffling bits, but we haven't gotten rid of paper.
2007-11-01
129 reads
2007-10-31
2,801 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