cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Stay updated on what is happening on the PTC Community by subscribing to PTC Community Announcements. X

Thingworx - MSSQL - COLLATE Change

pshashipreetham
17-Peridot

Thingworx - MSSQL - COLLATE Change

Hi Team,

 

What SQL Commands can be used to Change the Collation/COLLATE of the MS SQL SB?

 

Thanks,

Shashi Preetham,
Email: psp316r@outlook.com,
Mobile: +91 8099838001.
ACCEPTED SOLUTION

Accepted Solutions

Ahh found this work around quick, below are the commands need to be used as soon as the MS SQL DB is setup:

 

ALTER DATABASE thingworxv1 SET SINGLE_USER WITH ROLLBACK IMMEDIATE;
ALTER DATABASE thingworxv1 COLLATE Latin1_General_100_CS_AS_SC;
ALTER DATABASE thingworxv1 SET MULTI_USER;

 

  Change the "thingworxv1" with your database.

 

After the executing these commands, the then COLLATE should be good for the schema setup and Thingworx Installation

 

Thanks,

Shashi Preetham,
Email: psp316r@outlook.com,
Mobile: +91 8099838001.

View solution in original post

1 REPLY 1

Ahh found this work around quick, below are the commands need to be used as soon as the MS SQL DB is setup:

 

ALTER DATABASE thingworxv1 SET SINGLE_USER WITH ROLLBACK IMMEDIATE;
ALTER DATABASE thingworxv1 COLLATE Latin1_General_100_CS_AS_SC;
ALTER DATABASE thingworxv1 SET MULTI_USER;

 

  Change the "thingworxv1" with your database.

 

After the executing these commands, the then COLLATE should be good for the schema setup and Thingworx Installation

 

Thanks,

Shashi Preetham,
Email: psp316r@outlook.com,
Mobile: +91 8099838001.
Announcements


Top Tags