전체 글257 javascript 날짜 함수 정리 1. 8자리 날짜 string to date type function str_to_date(str) { var date_str = String(str); var year = date_str.substring(0,4); var month = date_str.substring(4,6); var date = date_str.substring(6,8); return new Date(Number(year), Number(month)-1, Number(date)); } 2-1. date type to string function date_to_str(date) { var year = date.getFullYear(); var month = date.getMonth() + 1; var date = date.getDa.. 2020. 10. 12. Hive 설치 해당 블로그에서는 하이브 2.3 버전을 받는 것을 설명하지만 2.3버전은 하둡 2버전에서 작동하는것을 확인함... 3버전은 "https://archive.apache.org/dist/hive/hive-3.1.2/apache-hive-3.1.2-bin.tar.gz" 해당 링크에서 다운이 가능함. oboki.net/workspace/bigdata/hadoop/hive-%EC%84%A4%EC%B9%98/ [Hadoop] Hive 설치 – oboki oboki.net hive-site.xml 수정할때 참고. 1. jdbc jar 파일 제대로 옮기고.. connectionURL -- localhost라고 쓰면 안됨... www.programmersought.com/article/3838566632/ 2. useS.. 2020. 9. 22. 하둡 설치 parksuseong.blogspot.com/2019/04/312-1-standalone-pseudo-distributed.html 하둡 3.1.2 설치 1편 - 독립실행모드(Standalone), 가상분산모드(Pseudo-distributed), 완전분산모드(Fully dist 하둡설치 방식에는 3가지가 존재한다. 독립실행모드, 가상분산모드, 완전분산모드이다. 실제 운영환경에서는 성능을 위해 완전분산모드로 설치해야할 것이고 기본 실행모드는 독립실행모드이� parksuseong.blogspot.com 2020. 9. 22. Mysql 비밀번호 정책 변경하기 kamang-it.tistory.com/entry/MySQL%ED%8C%A8%EC%8A%A4%EC%9B%8C%EB%93%9C-%EC%A0%95%EC%B1%85-%ED%99%95%EC%9D%B8-%EB%B3%80%EA%B2%BD%ED%95%98%EA%B8%B0 2020. 9. 22. Mysql 외부접근 허용하기(url) idchowto.com/?p=11068 2020. 9. 22. 이전 1 ··· 19 20 21 22 23 24 25 ··· 52 다음