Datetime value is incorrect in Database

Hi,
when I checked the Jobs table data in database times are in correct , But they are correct in Orchestrator . Turkey time-zone is GMT+3. I database log time-zone is GMT.

How can i fix the problem?

Orch:

Database

Thanks

Update the select query with your time zone.

SELECT
StartTime AT TIME ZONE ‘Pacific Standard Time’ AS OrderDate_TimeZonePST

Ref - AT TIME ZONE (Transact-SQL) - SQL Server | Microsoft Learn

Regards,
Karthik Byggari

3 Likes

How can i fix the problem while inserting data to database.

Not sure about how insert works in this case.
Trail and error method.

Regards,
Karthik Byggari

3 Likes