Connect direct to database
Follow the instructions below to connect Violet directly to your Teamcenter SQL database.
Configure access to your SQL server
First, you'll need to configure your Teamcenter SQL server to communicate with Violet via one of the below methods:
Create a SQL user
Next, you'll need to create a read-only SQL user with access to the Teamcenter database:
CREATE LOGIN [Violet_Readonly] WITH PASSWORD = 'some-password-of-your-choosing';
USE [tc]; -- Switch to the Teamcenter database, usually called 'tc'
CREATE USER [Violet_Readonly] FOR LOGIN [Violet_Readonly];
EXEC sp_addrolemember 'db_datareader', 'Violet_Readonly';Connect Teamcenter
Once network access and database access are complete, you are ready to create the connection in Violet:
Select
Teamcenter - SQL Server
[Optional] You can also provide a unique name for the connection based on the credentials you're using, and you can create restricted permissions to users or groups:

Enter the SQL username and password, the server IP address and port, and the Teamcenter database name, then click Connect.

Once your connection is live, you're ready to set up your Teamcenter integration.
Last updated
Was this helpful?
