Start a conversation

Error: 'Database Error: Invalid Column Name 'Items'' When Creating a New Database

Overview

This article describes the process to follow when the GFI WebMonitor fails to create a new database or fails to connect to an existing database with the following error message:

Database Error: Invalid column name 'Items'

 

Information

Environment

  • GFI WebMonitor
  • Non-English Microsoft SQL Server Installations

Root Cause

The GFI WebMonitor requires the database collation to be Latin1_General_CI_AS and this error is encountered when the database collation is different. The collation for the GFI WebMonitor database can be changed by using a script in order for the GFI WebMonitor to be able to use the database.

 

Process

The following Microsoft SQL script can be used to change the collation of the GFI WebMonitor database:

USE master;
GO
ALTER DATABASE WebmonitorDatabase
COLLATE Latin1_General_CI_AS;
GO

NOTE: WebMonitorDatabase should be replaced by the name of the GFI WebMonitor database.

Choose files or drag and drop files
Was this article helpful?
Yes
No
  1. Priyanka Bhotika

  2. Posted

Comments