반응형

http://map.ipviking.com/

반응형
Posted by FeliZ_하늘..
,
반응형

http://stackoverflow.com/questions/11763996/output-window-of-intellij-idea-cuts-output


텍스트 편집기 열고


idea.cycle.buffer.size


속성을 바꿔준다


기본 1024 인데 나는 10240 으로 수정했음


읽기 전용이라고 못바꿀 땐 텍스트 편집기를 관리자권한으로 실행한다


그리고나서 intellij 를 재시작한다

반응형
Posted by FeliZ_하늘..
,
반응형

내부적으로 postgresql 을 사용하고 있으므로

hawq 매뉴얼에 없는 기능들은

postgresql 명령어를 검색하면 됨

mysql: SHOW TABLES
postgresql: \d
postgresql: SELECT table_name FROM information_schema.tables WHERE table_schema = 'public';

mysql: SHOW DATABASES
postgresql: \l
postgresql: SELECT datname FROM pg_database;

mysql: SHOW COLUMNS
postgresql: \d table
postgresql: SELECT column_name FROM information_schema.columns WHERE table_name ='table';

mysql: DESCRIBE TABLE
postgresql: \d+ table
postgresql: SELECT column_name FROM information_schema.columns WHERE table_name ='table';




반응형

'[BigData] > [Pivotal HAWQ]' 카테고리의 다른 글

metadata 관리 쿼리 manage query  (0) 2015.07.02
pivotal hawq download  (0) 2015.02.24
Posted by FeliZ_하늘..
,