When you try to run a string function directly on a text or ntext column, in this example the “LEFT” function, you will get the following error: Argument data type ntext is invalid for argument 1 of left function.

Similarly, if you try to run the REPLACE function against a text or ntext column, you will get the below error message:
Argument data type ntext is invalid for argument 1 of replace function.
*Note: You will get similar error messages for any of the string functions such as: REPLACE, LEFT, RIGHT, LTRIM, RTRIM, therefore, the handling of such errors will be similar to the one I describe on this article.
Reproducing the Error Message
Let’s run an example for replicating the error for LEFT string function:
--Create temporary table create table #tblTest( id int, freeTxt ntext ); --Enter sample data insert into #tblTest select 1,N'Testing ntext data type'; --Try to run the LEFT function on the ntext column directly select ID,left(freeTxt,13) as StringSegment from #tblTest
As you can see, the above statement returns the error message and cannot be executed. The exact error message is:
Msg 8116, Level 16, State 1, Line 13
Argument data type ntext is invalid for argument 1 of left function.
How to Resolve the Issue
Now let’s try the following:
--Use casting select ID,left(cast(freeTxt as varchar(max)),13) as StringSegment from #tblTest
As you can see, the above T-SQL statement was successfully executed and returned the result of the LEFT string function.

Discussion
The difference of the last statement from the one that returns an error is that now we have used casting prior to using the string function on the ntext column. So, in similar cases, whenever you want to run a string function on a text/ntext column, always cast/convert it first to varchar/nvarchar!
Learn more tips like this! Check our Online Course!
Check our online course titled “Essential SQL Server Development Tips for SQL Developers” (special limited-time discount included in link).
Sharpen your SQL Server database programming skills via a large set of tips on T-SQL and database development techniques. The course, among other, features over than 30 live demonstrations!
Featured Online Courses:
- Boost SQL Server Database Performance with In-Memory OLTP
- Essential SQL Server Administration Tips
- SQL Server Fundamentals (SQL Database for Beginners)
- Essential SQL Server Development Tips for SQL Developers (New)
- The Philosophy and Fundamentals of Computer Programming
- .NET Programming for Beginners: Windows Forms (C#)
- Introduction to Data Science and SQL Server Machine Learning
- Introduction to Azure SQL Database
- SQL Server 2019: What’s New
- Entity Framework: Getting Started (Complete Beginners Guide)
- How to Import and Export Data in SQL Server
- Get Started with SQL Server in 30 Minutes
- A Guide on How to Start and Monetize a Successful Blog
Related SQL Server Development Articles:
- Error converting data type varchar to float
- Error converting data type varchar to numeric
- The set identity_insert Command in SQL Server
- Handling NULL Character x00 when Exporting to File Using BCP
- The Net.Tcp Port Sharing Service service on Local Computer started and then stopped
- …more SQL Server development articles
Subscribe to our newsletter and stay up to date!
Check out our latest software releases!
Check out Artemakis’s eBooks!
Rate this article:
Reference: SQLNetHub.com (https://www.sqlnethub.com)
© SQLNetHub
Artemakis Artemiou is a Senior SQL Server Architect, Author, and a 9 Times Microsoft Data Platform MVP (2009-2018). He has over 15 years of experience in the IT industry in various roles. Artemakis is the founder of SQLNetHub and TechHowTos.com. Artemakis is the creator of the well-known software tools Snippets Generator and DBA Security Advisor. Also, he is the author of many eBooks on SQL Server. Artemakis currently serves as the President of the Cyprus .NET User Group (CDNUG) and the International .NET Association Country Leader for Cyprus (INETA).