sql problem

DeathsDoor

Golden Oldie
Golden Oldie
Aug 9, 2004
1,468
32
155
Kurdistan
i have a sql problem i dont know how 2 fix >< it says

StartTimer exception: [Microsoft][ODBC SQL Server Driver][SQL Server]Login failed for user 'sa'. Reason: Not associated with a trusted SQL


/paperoga
 

noisound

Golden Oldie
Golden Oldie
Jul 23, 2004
1,332
7
145
u set the Ini's correct?

as in the right names for

sqldatabase
and the id and password?
 
Upvote 0

samhag

Dedicated Member
Dedicated Member
Jul 31, 2008
213
0
62
Change the Authentication Mode of the SQL server from “Windows Authentication Mode (Windows Authentication)”
to “Mixed Mode (Windows Authentication and SQL Server Authentication)”. Run following script in SQL Analyzer to change the authentication
ALTER LOGIN sa ENABLE
GO
ALTER LOGIN sa WITH PASSWORD = '<password>'
GO
 
Upvote 0