The Advantages of Telecommutting
It isn't often that I see what the real advantages are, and I've been doing it so long that I...
2008-02-22
1,346 reads
It isn't often that I see what the real advantages are, and I've been doing it so long that I...
2008-02-22
1,346 reads
2008-02-21
180 reads
This Friday Steve Jones asks about capital at work and does it affect the way you do business.
2008-02-21
29 reads
This Friday Steve Jones asks about capital at work and does it affect the way you do business.
2008-02-21
29 reads
This Friday Steve Jones asks about capital at work and does it affect the way you do business.
2008-02-21
36 reads
2008-02-20
95 reads
2008-02-20
29 reads
2008-02-20
37 reads
2008-02-20
47 reads
I get a bit of a delay in working on the set down in the basement thanks to the weather....
2008-02-19
1,402 reads
By James Serra
Once again there were a number of Microsoft Build announcements related to data and...
A good week ago I hosted the monthly T-SQL Tuesday blog party. I invited...
By Steve Jones
I was messing around with SQLCMD and I realized something I hadn’t known. I’ve...
Kontak Cs: 0817839777 Jl. Veteran No.18-24, Krembangan Sel., Kec. Krembangan, Surabaya, Jawa Timur 60175
Kontak Cs: 0817839777 Jl. HOS. Cokro Aminoto No.5, Mergelo, Jagalan, Kec. Magersari, Kota Mojokerto,...
I have an issue where I have a Bill of Material list of items...
I have a SQL Server 2022 English default installation on a server. I want to detect if there are any upper case characters in rows and I have this code:
SELECT CustomerNameID,
CustomerName
FROM dbo.CustomerName
WHERE CustomerName = LOWER(CustomerName)
Here is the sample data I am testing with:
CustomerNameID CustomerName 1 John Smith 2 Sarah Johnson 3 MICHAEL WILLIAMS 4 JENNIFER BROWN 5 david jones 6 emily davis 7 Robert Miller 8 LISA WILSON 9 christopher moore 10 Amanda TaylorHow many rows are returned? See possible answers