오라클 에러 ORA-01727 numeric precision specifier is out of range (1 to 38)
Back-End/Problems 2020. 11. 11. 10:20테이블 생성중 에러가 발생함
오류 보고 -
ORA-01727: numeric precision specifier is out of range (1 to 38)
01727. 00000 - "numeric precision specifier is out of range (1 to 38)"
*Cause:
*Action:
1
2
3
4
5
6
7
8
9
10 |
CREATE TABLE MEMBER_BOARD(
bno number(20) not null primary key,
recommend varchar(20) not null,
user_id varchar(20) not null,
reg_date date default sysdate,
viewcnt number(50) not null, ▶ viewcnt number(20) not null 로 변경함
title varchar(20) not null,
rcnt number(20) not null,
content varchar(200) not null
); |
cs |
viewcnt number 데이터타입의 사이즈가 최대 38자리수까지 밖에 사용이 안되서 에러가 발생하였다.
38자릿수 이하로 설정하면 에러가 발생되지 않는다.
(오라클에서는 최대 38자리 이하로밖에 사용이 안되기 때문)
'Back-End > Problems' 카테고리의 다른 글
이클립스 톰캣 관련 에러 (The Tomcat server configuration at ........) (8) | 2020.12.15 |
---|---|
오라클 데이터베이스 에러 (상태: 실패 -테스트 실패: IO 오류: The Network Adapter could not establish the connection) (1) | 2020.11.11 |
스프링 에러 - url로 자료를 전송할때 한글깨짐 오류 (0) | 2020.11.10 |
XML에서 부등호 관련 에러 (The content of elements must consist of well-formed character data or markup.) (0) | 2020.11.10 |
카카오톡 로그인 관련 (0) | 2020.11.10 |