Re: Login failed
| Newsgroups | gmane.comp.db.tds.freetds |
|---|---|
| Message-ID | <[email protected]> |
On Tue, Apr 12, 2011 at 09:19:58AM -0400, Robert Young wrote: > > tsql -S kcrsreport -U acct_dom1\roberty ... > Error 20017 (severity 9): > Unexpected EOF from the server > Error 20002 (severity 9): > Adaptive Server connection failed > There was a problem connecting to the server Not to belabor the obvious, but you would need to quote that backslash: tsql -S kcrsreport -U 'acct_dom1\roberty' or tsql -S kcrsreport -U acct_dom1\\roberty But normally that would result in simple "login failed" message, not an unepxected EOF from the server. HTH. --jkl