hmmm....i don't know if this applies in this case but MS Sql server has two different authentification methods:
1) windows authentification (in this case sa most probably will not work and you get your error message even though from your machine it looks like you don't need a username and password to connect to the server...)
Hope this helps
the-one
Main Topics
Browse All Topics





by: davekyPosted on 2002-12-17 at 01:54:07ID: 7594142
If you don't know a username and password perhaps you not supposed to have access? If you are get in touch with someone who can tell you the appropriate details. You should not be using 'sa' in any case - this has probably been changed for security reasons anyway. A simple sql connection string in .net should look like:
Data Source=SERVER;Initail Catalog:DATABASE;User ID:NAME;Password:PASSWORD;