Saturday, December 2, 2023

Connection String

Örnek
unable to find valid certification path to requested target şeklinde bir hata alıyorsak connection string'e
encrypt=true;trustServerCertificate=true eklenir. Şöyle yaparız
jdbc:sqlserver://localhost:1433;encrypt=true;trustServerCertificate=true

Örnek
Schema belirtmek için şöyle yaparız
jdbc:sqlserver://localhost:1433;encrypt=true;trustServerCertificate=true;currentSchema=dbo

No comments:

Post a Comment

Table Partitioning

Giriş Data Loding yaparken kullanılabilecek yöntemler  şöyle 1. bcp 2. BULK INSERT 3. SQL Server Integration Services (SSIS) Açıklaması şöyl...