이 에러는 사용자의 인증 방식 문제로 발생한다.
T-sql 로 잘 안되기 때문에, Enterprise Manager를 사용하기를 권장한다.(결국 필자도 이것을 이용해 1시간 정도 걸렸다.)
security - Logins 에서 사용자 추가를 누르고 login name을 적은 후, SQL Server authentication으로 하면 된다.
접근할 db에 추가한 사용자를 등록해 준다.
그렇게 하면, ODBC에서도 With SQL Server authenticaition을 사용해 직접 id/pw를 입력해 생성할 수 있다.
커넥션 코드는
<% Application("strConnection") = "Provider=SQLOLEDB.1;Password=[pw];Persist Security Info=True;User ID=[id];Initial Catalog=[db명];Data Source=(local)"%>
위와 같이 활용된다.
댓글 달기