Cursors and high gas prices
Using cursors is a controversal topic. As a former developer, that is the way I thought about processing data at one...
2008-04-25
1,387 reads
Using cursors is a controversal topic. As a former developer, that is the way I thought about processing data at one...
2008-04-25
1,387 reads
As I thought might happen, I was too busy after Tuesday and Wednesday to report in. Tuesday was my first trip...
2008-04-17
429 reads
I'm sure that Monday was the most relaxed day that we will have this week. The conference did not start until...
2008-04-15
594 reads
I arrived Sunday in Seattle from St. Louis for the MVP Global Summit. The shuttle from the airport was filled...
2008-04-14
415 reads
I made the decision today to start using SQL Server 2008 Management Studio at work to manage my 2000 and...
2008-04-08
809 reads
Yesterday I found out that I am a new SQL Server MVP. I still have the feeling that I am...
2008-04-02
378 reads
I am here in sunny Orlando at End to End Training. I am very impressed with the new training facility....
2008-03-31
1,365 reads
Over the last three years, since that first article I submitted to SQLServerCentral, I find myself getting involved in more...
2008-03-21
1,289 reads
I just shut down a SQL Server that has been in production since 2003. Next week I'll let the server...
2008-02-17
398 reads
If you are anywhere near St. Louis next Wednesday night, I will be speaking at the St. Louis Visual Basic...
2008-02-16
506 reads
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...
By Steve Jones
Last week I asked you to write about SQL Server 2025 and what things...
Hi everyone, I’m working with some old SSIS 2005 packages, and I’m trying to...
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