Francois Pepin wrote: > Hi, > > Is there anyone who could tell me if MSDE can be accessed by TCP/IP like > MS-SQL (in the view of the recent worm)?
Yes, it can. Basically, MSDE is a stripped-down version of MS SQL server, and offers true client-server capabilities. > If so, is there any way to tell it to change the sa password in it? Try this: osql -U sa -Q "sp_password NULL, '<substitute for your intended password>'" Jan