IT/review
Oracle DB 생성
SHLEE™
2017. 6. 22. 16:04
Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation. All rights reserved.
C:\Windows\system32>sqlplus /nolog
SQL*Plus: Release 11.2.0.2.0 Production on 목 6월 22 16:00:56 2017
Copyright (c) 1982, 2014, Oracle. All rights reserved.
SQL> conn /as sysdba
Connected.
SQL> create user zipcode identified by 1234;
User created.
SQL> grant connect, resource to zipcode;
Grant succeeded.
SQL>