오라클 하고 PostgreSQL 가 서로 다른 SQL 문법을 정리 중입니다.

 

오라클 PostgreSQL
명령어 명령어 예제
NVL COALESCE SELECT COALESCE(컬럼명, 널값일때 대체할 값) FROM 테이블명;
SYSDATE now() SELECT to_char(now(), 'YYYY-MM-DD')
DUAL   SELECT 1 ;
ROWNUM LIMIT SELECT * FROM 테이블명 LIMIT 100;
DECODE 지원안함. CASE 문으로 사용
SELECT case when 컬럼명 = '1' then '일' else '기타' end FROM 테이블명 ;
     

 

MATERIALIZED VIEW는 CREATE OR REPLACE MATERIALIZED VIEW 가 아닌

 

뷰를 삭제 후 재생성해야 합니다.

 

예제)

DROP MATERIALIZED VIEW 뷰 이름;

 

디스크 용량 확인

# df -g

 

시스템 리소스 확인 

# topas

'OS > 리눅스' 카테고리의 다른 글

nas mout 방법  (0) 2021.07.19

MySQL

 

MySQL

Over 2000 ISVs, OEMs, and VARs rely on MySQL as their products' embedded database to make their applications, hardware and appliances more competitive, bring them to market faster, and lower their cost of goods sold. Learn More »

www.mysql.com

MariaDB

 

MariaDB.org

Supporting continuity and open collaboration

mariadb.org

PostgreSQL

 

PostgreSQL: The world's most advanced open source database

PostgreSQL is a powerful, open source object-relational database system with over 30 years of active development that has earned it a strong reputation for reliability, feature robustness, and performance. There is a wealth of information to be found descr

www.postgresql.org

Redis

 

Redis

Try it Ready for a test drive? Check this interactive tutorial that will walk you through the most important features of Redis. Download it Redis 5.0.7 is the latest stable version. Interested in release candidates or unstable versions? Check the downloads

redis.io

Amazon DynamoDB

 

NoSQL 데이터베이스 | 데이터 관리 | Amazon Web Services

광고 기술 분야의 기업은 사용자 프로필, 사용자 이벤트, 클릭 및 방문한 링크와 같은 다양한 마케팅 데이터를 저장하기 위한 키-값 스토어로 DynamoDB를 사용합니다. 적용 가능한 사용 사례로는 실시간 입찰(RTB), 광고 타게팅, 속성 등이 있습니다. 이러한 사용 사례에는 높은 요청률(초당 수백만 건의 요청), 짧고 예측 가능한 지연 시간, 안정성이 필요합니다. 기업은 읽기 볼륨이 많거나 1밀리초 미만의 읽기 지연 시간이 필요한 경우 DynamoDB

aws.amazon.com

Apache Cassandra

 

Apache Cassandra

Proven Cassandra is in use at Constant Contact, CERN, Comcast, eBay, GitHub, GoDaddy, Hulu, Instagram, Intuit, Netflix, Reddit, The Weather Channel, and over 1500 more companies that have large, active data sets. Scalable Some of the largest production dep

cassandra.apache.org

HBase

 

Apache HBase – Apache HBase™ Home

Welcome to Apache HBase™ Apache HBase™ is the Hadoop database, a distributed, scalable, big data store. Use Apache HBase™ when you need random, realtime read/write access to your Big Data. This project's goal is the hosting of very large tables -- billions

hbase.apache.org

 

DBMS 인기 순위

 

 

DB-Engines Ranking

Popularity ranking of database management systems.

db-engines.com

 

'DBMS' 카테고리의 다른 글

오라클 테이블 LOGGING/NOLOGGING 옵션  (0) 2019.11.22

-- 재구축이 가능한 대용량 데이터를 인서트 할 경우 NOLOGGING 옵션 필수

ALTER TABLE 테이블명 NOLOGGING;

 

 

ALTER TABLE 테이블명 LOGGING;

'DBMS' 카테고리의 다른 글

오픈 DBMS  (0) 2019.11.22

 

imp userid=유저명/패스워드@아이피:포트/서비스명 file='E:\파일명.dmp' fromuser=export한db유저명 touser=import할db유저명 ignore=Y

 

imp userid=유저명/패스워드@아이피:포트:sid file='E:\파일명.dmp' fromuser=export한db유저명 touser=import할db유저명 ignore=Y

 

* 패스워드에 특수문자가 존재할 경우 ""로 감싸야함.

+ Recent posts