A Microsoft extension to the ANSI SQL language that includes procedural programming, local variables, and various support functions.
Hi @John Oke ,
The error indicates that the procedure is attempting to store something in the DBServerInfo table that is larger than the column allows. The two known reasons this can occur are:
There are the following methods you can try:
It may be that the length of the field definition in the data table structure is smaller than the length of the actual field content to be written, so it cannot be INSERT INTO.
You can try this to alter the length of the column:
ALTER TABLE #WLD
ALTER COLUMN xxx NVARCHAR(xxx) NOT NULL
The 'show advanced options' parameter is enabled in SQL Server and you are running the Enterprise edition of SQL Server.
You can verify if it is the problem by running the SQL query:
sp_configure
If one of the parameter names returned in the result is "common criteria compliance enabled," then you can resolve the issue by executing the following query to hide the advanced options from the sp_configure results:
sp_configure 'show advanced options', 0;
go
reconfigure;
go
Best regards,
Seeya
If the response is helpful, please click "Accept Answer" and upvote it, as this could help other community members looking for similar queries.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.