SQL Server database
Telosys database configuration
Below are examples of typical configurations for a SQL Server database.
Since Telosys 4.3
- id: sqlsrv
name: SQL Server database
type: SQLSERVER
# JDBC configuration
url: jdbc:sqlserver://localhost:1433;databaseName=MyDB
user: john_doe
password: not_to_reveal
# Metadata parameters
schema: carsBefore Telosys 4.3
- id: sqlsrv
name: SQL Server database
type: SQLSERVER
# JDBC configuration
driver: com.microsoft.sqlserver.jdbc.SQLServerDriver
url: jdbc:sqlserver://localhost:1433;databaseName=MyDB
user: john_doe
password: not_to_reveal
# Metadata parameters
catalog: '!'
schema: cars
tableNamePattern: '%'
tableTypes: TABLE Other JDBC URL examples
jdbc:sqlserver://localhost:1433;databaseName=TestDB;encrypt=true;trustServerCertificate=true;
JDBC driver
Download:
MVN Repository: https://mvnrepository.com/search?q=mssql-jdbc
JAR file examples :
mssql-jdbc-13.2.1.jre8.jar
mssql-jdbc-13.2.1.jre11.jar
Driver class name : com.microsoft.sqlserver.jdbc.SQLServerDriver
Technical information about SQL Server
Structure
Server (instance) → Database → Schema → Tables/Objects

Database: A physical database (similar to PostgreSQL). You must connect to a specific database. Each database is isolated, though cross-database queries are possible (
db1.dbo.table1).Schema: A namespace within a database. Default schema is usually
dbo. Users can own schemas, and schemas provide organizational and security boundaries.
Last updated