본문 바로가기
728x90
반응형
SMALL

SQL7

Hackers Rank : SQL Oracle : Weather Observation Station 5 solution # Q Query the two cities in STATION with the shortest and longest CITY names, as well as their respective lengths (i.e.: number of characters in the name). If there is more than one smallest or largest city, choose the one that comes first when ordered alphabetically. # A SELECT CITY, LENGTH(CITY) FROM (SELECT CITY, LENGTH(CITY) FROM STATION ORDER BY LENGTH(CITY), CITY) WHERE ROWNUM=1; SELECT CI.. 2022. 6. 1.
Oracle 관리자 계정 SYSTEM 비밀번호 변경 및 비밀번호 락타임 에러 해결 (oracle system/sys account password change & password locktime error) 1. 관리자 계정 비밀번호 변경 oracle system account password change 2. 패스워드 락타임 에러시 oracle password locktime error 2022. 5. 23.
Oracle Database 21c express edition, 19c enterprise edition installation error 설치 오류 oracle database 21c express edition 설치 시 이 단계에서 다음 단계로 넘어가지 않고, 특정 폴더의 로그를 확인 또는 재시도 하라는 에러가 뜸. 해당 폴더 로그 확인 시 [FATAL] [DBT-50000] 사용 가능한 시스템 메모리를 확인할 수 없습니다. 관련 폴더 및 파일 전부 삭제했음에도 문제가 해결 되지 않음. 19c enterprise edition 설치 시도할 때는 setup.exe 파일이 실행 안되거나, 설치가 되다가 중간에 보류하는 문제 발생 함. 이것 저것 계속 시도했으나 끝까지 되지 않았고, 찾아보니 오라클은 한번 설치 잘못하면 포맷 외에는 방법을 찾기 어렵다는 언급을 발견. 결국 초기화 하였음... 추측건대 아마 노트북 교체 후 이것저것 설치하면서 oracle.. 2022. 5. 3.
728x90
반응형
LIST