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! Enroll to 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:
- AI Essentials: A Beginner’s Guide to Artificial Intelligence
- Human-AI Synergy: Teams and Collaborative Intelligence
- SQL Server 2022: What’s New – New and Enhanced Features
- Working with Python on Windows and SQL Server Databases
- Introduction to Azure Database for MySQL
- Boost SQL Server Database Performance with In-Memory OLTP
- Introduction to Azure SQL Database for Beginners
- Essential SQL Server Administration Tips
- SQL Server Fundamentals – SQL Database for Beginners
- Essential SQL Server Development Tips for SQL Developers
- Introduction to Computer Programming for Beginners
- .NET Programming for Beginners – Windows Forms with C#
- SQL Server 2019: What’s New – New and Enhanced Features
- Entity Framework: Getting Started – Complete Beginners Guide
- Data Management for Beginners – Main Principles
- A Guide on How to Start and Monetize a Successful Blog
Related SQL Server Development Articles:
- SQL Server Database Design Best Practices
- 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
- The OLE DB provider “Microsoft.ACE.OLEDB.12.0” has not been registered – How to Resolve it
- System.IO.FileLoadException: could not load file or assembly…
- Resolving “System.IO.IOException: The process cannot access the file because it is being used by another process” CLR Error
- Working with XML and JSON Data in SQL Server
- …more SQL Server development articles
Subscribe to our newsletter and stay up to date!
Check our eBooks!
Rate this article:
Reference: SQLNetHub.com (https://www.sqlnethub.com)
© SQLNetHub
Artemakis Artemiou, a distinguished Senior Database and Software Architect, brings over 20 years of expertise to the IT industry. A Certified Database, Cloud, and AI professional, he earned the Microsoft Data Platform MVP title for nine consecutive years (2009-2018). As the founder of SQLNetHub and GnoelixiAI Hub, Artemakis is dedicated to sharing his knowledge and democratizing education on various fields such as: Databases, Cloud, AI, and Software Development. His commitment to simplicity and knowledge sharing defines his impactful presence in the tech community.