목록Programming/SQL 기초 (22)
59doit
JDK 8 버전 http://www.oracle.com/ Oracle | Cloud Applications and Cloud Platform The new Oracle Cloud Infrastructure platform, announced by Oracle Executive VP Clay Magouyrk at Oracle CloudWorld, lets providers offer a full range of cloud services to their customers alongside their own offerings. www.oracle.com 윈도우 환경 변수 설정 환경 변수는 시스템의 실행 파일이 있는 디렉터리를 지정한다. 환경 변수는 운영체제에서 동작하는 응용 소프트웨어가 참조하기 위한 설정이..
데이터베이스 조직의 여러 응용 시스템들이 공동으로 사용하기 위해 통합하고 저장한 데이터들로써 중복을 최소화하여 컴퓨터 기억 장치에 모아 놓은 집합체 데이터베이스는 유용한 데이터의 집합으로 다양한 데이터들을 관리하기 위해서 데이터를 저장하고 사용자가 원하는 정보를 쉽게 찾을 수 있어야 한다. 데이터베이스는 조직에 필요한 정보를 얻기 위해 논리적으로 연관된 데이터를 모아 구조적으로 통합해 놓은 것 데이터베이스가 유용한 데이터가 되기 위해서는 원하는 정보를 쉽게 얻거나 수정 삭제가 가능해야 한다. 개별 객체인 개체(entity)를 가지고 있다. - 도메인 : 하나의 속성이 취할 수 있는 모든 값 - 개체 인스턴스 : 하나이ㅡ 개체에 개체 값을 갖는 실제 레코드 - 객체 집합 : 개체..
Python 1. C:드라이브에 OracleTest 폴더 생성 2. OracleTest폴더에 driver ojdbc6 저장 ojdbc6 위치 : # C:\oraclexe\app\oracle\product\11.2.0\server\jdbc\lib 3. SQL developer에서 scott계정으로 table 생성 ID : sys / PW : 1234 create table py_table( id varchar(50) primary key, pass varchar(30) not null, name varchar(25) not null, age number(2) ); insert into test_table values('hong', '1234', '홍길동', 35); insert into test_table..
R version 3.6.3 1. C:드라이브에 OracleTest 폴더 생성 2. OracleTest폴더에 driver ojdbc6 저장 ojdbc6 위치 : # C:\oraclexe\app\oracle\product\11.2.0\server\jdbc\lib 3. SQL developer에서 scott계정으로 table 생성 ID : sys / PW : 1234 ID : scott / PW : tiger create table test_table( id varchar(50) primary key, pass varchar(30) not null, name varchar(25) not null, age number(2) ); insert into test_table values('hong', '1234',..