오류해결 15

ORA-00979: GROUP BY 표현식이 아닙니다

오류 내용) ORA-00979: GROUP BY 표현식이 아닙니다 오류 상황) select * from table where 1=1 group by colum1, column2 해결) group by 에 있는 컬럼을 select 구문에 모두 적어야한다. 라고 하지만.. 아래 쿼리의 경우 정상 동작했다. select count(*) from table where 1=1 group by colum1, column2 select column1 from table where 1=1 group by colum1, column2 select column1, column2 from table where 1=1 group by colum1, column2

오류관리 2023.04.10

Recv faijlure: Connection was reset

intellij unable to access 'bitbucket 주소' : recv failure connection was reset 어느날 갑자기 Eclipse에서는 git이 잘되는데 intellij에서만 Git이 안됐다. CMD에서도 git명령어가 먹히지 않는다. Intellij 재설치해도 안됨 Git Repository 삭제했다 다시 Clone해도 안됨 해결 방법 1. 시스템 환경변수 설정에서 HTTP_PROXY 변수 제거 2. 다시 git fetch를하면 로그인 창이 뜬다. 이후 정상동작 가능! 3. 안되면 intelliJ를 완전히 껐다 킨다

오류관리 2022.09.20

TS2355: A function whose declared type is neither 'void' nor 'any' must return a value.

오류 TS2355: A function whose declared type is neither 'void' nor 'any' must return a value. 오류 상황 에러난 부분들 아무것도 건드린적 없는데 값자기.. 오류 원인 아래 사이트를 참고해 보면return 값의 type이 명확하지 않아서 ts가 js로 변환되면서 생기는 오류인 듯하다. 오류 해결 http://codeinreview.com/184/not-all-code-paths-return-a-value-in-typescript/

오류관리 2016.08.04

[NodeJS] throw er; // Unhandled 'error' event

오류상황 인터넷에 있는 예제 따라쳤는데 안됨 var http= require('http');http.createServer(function (req,res){res.writeHead(200,{'Content-Type':'text/plain'});res.end('Hello world');}).listen(1337,'127.0.01');console.log('server running at http://127.0.0.1:1337'); 오류원인 코드의 IP 잘못 잡아줘서!근데 127.0.0.1은 Localhost 얘기하는거니까 상관없는거 아닌가...? [ 2016년08월02 추가내용 ]127.0.0.1 == localhostbut 나는 127.0.01 오타!!

오류관리 2016.07.19
반응형