Oracle과 SpringBoot
1. oracle 권한 주는 법 1) sqlplus system/12345 관리자 모드로 접속 2) @C:\oraclexe\app\oracle\product\11.2.0\server\rdbms\admin\scott.sql (2번 하기) 3) ctrl + C 4) sqlplus system/12345 5) alter user scott account unlock; 6) alter user scott identified by tiger; 7) ctrl + C c:\>sqlplus scott Enter password:tiger 2. oracle create table하는 법 oracle에는 auto_increment 기능이 없다. 그래서 코드 상에서 해주어야 하고, 날짜 타입은 timestamp 만 있다. ..
JAVA/Spring
2021. 8. 28. 16:15