Why SQL Server Named Instance connect without specifying instance name ?
Issue :
Today Evening, I was just about to leave the office and at same time I got a call from...
2012-11-12
2,631 reads
Issue :
Today Evening, I was just about to leave the office and at same time I got a call from...
2012-11-12
2,631 reads
How to open and view a deadlock .xdl file with SSMS ?
Solution 1 :
On the File menu in SQL Server...
2012-11-09
2,351 reads
After a wait of around 8 months, Microsoft has released SQL Server 2012 SP1.
Microsoft SQL Server team has released SQL...
2012-11-08
949 reads
Hey Friends
I missed you so much in my vacations.
I come back from my leaves & hope now we have regular interactions.
2012-11-05
541 reads
Question:
I want list of all error codes & messages of SQL server.
Answer:
Once some ask this thing to you or this though...
2012-11-05
34,202 reads
The 4thcumulative update release for SQL Server 2012 is now available for download at the Microsoft Support site. Cumulative Update...
2012-10-16
754 reads
Dear Friends
Firstly, I want to say thanks for your support & liking my blogs that make it possible.
I like to share...
2012-10-15
586 reads
Issue :
Today, I received one request from my old friend.
He wants to insert text in different languages in table. He...
2012-10-15
2,988 reads
4 simple steps to move FullText catalog with SQL Server 2005 :-
1. Detach the database which contains the FullText Catalog....
2012-10-12
1,065 reads
Service packs are very critical and important. It is very important from product upgrade & bug fixing point of view.
Microsoft has...
2012-10-11
716 reads
By gbargsley
One of the first things I review when I inherit a new SQL Server...
By Arun Sirpal
It’s 07:43. Someone’s already left a message. “Something’s wrong with the DB server.” You...
By davebem
I’ve had a Dropbox account for years. Like a lot of people, I started...
Comments posted to this topic are about the item Follow Your Hunch
Comments posted to this topic are about the item What Happens When You Ask...
Comments posted to this topic are about the item Detecting Characters
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