본문 바로가기
  • 아하하

개발40

Oracle XE 설치시 http 8080포트 변경 Oracle XE 설치시 http 8080포트 변경 select dbms_xdb.getHttpPort() from dual; // 사용하는 포트 조회 exec dbms_xdb.sethttpport(9090) // 해당 포트로 변경 9090 2018. 6. 12.
ERWIN FTP 사이트 주소 ftp://ftp.ca.com/pub/erwin/ServicePacks/ 2018. 6. 5.
PyThon 기본설정 1. 아나콘다 업데이트 conda update conda 2. 파이썬 가상환경 세팅 set CONDA_FORCE_32BIT=1 \rightarrow→ 아나콘다 가상환경 변수를 32bit로 설정 (32비트 아나콘다를 설치한경우 pass)conda create -n py35_32 python=3.5 \rightarrow→ 가상환경 이름이 py35_32이고 python 3.5를 생성activate py35_32 \rightarrow→ 가상환경 py35_32 활성화(activate)python \rightarrow→ python 실행 3. 필요한 모듈(패키지) 설치 - win32comconda install pywin32 출처: http://excelsior-cjh.tistory.com/105 [EXCELSIOR] 2018. 5. 21.
[ERMaster] SQL Server 2005 연결하기 ERMaster 로 MS Sqlserver 2005 에 테이블 정보를 가져올때 오류... 오래된 버전이어서 mssql jdbc를 이용하면 아래와 같은 오류가 발생... 이 드라이버는 SQL Server 버전 8을(를) 지원하지 않습니다. jTDS JDBC Driver 를 이용하여 접속하여 테이블 정보를 가져온다. Microsoft JDBC Driver for SQL ServerThe Microsoft JDBC Driver for SQL Server is available to all SQL Server users at no additional charge from Microsoft. It provides access to SQL Server 2000-2016 from any Java application.. 2018. 4. 26.