본문 바로가기

분류 전체보기

(286)
Mongo DB( window ) + Spring Test ==> window용 Mongo DB start - 테스트 해본결과 : Spring과 잘 연동 된다. Mongodb “대용량”을 지향하면서, “Document” 방식으로 데이터를 관리한다는 걸 알 수 있습니다. DB자체가 가볍고 또한 Nosql 특성에 대해서는 추후 대용량 데스트(Replication/Sharding)를 통해서 결과를 포스팅하겠다. 아래는 테스트 소스이다.
MongoDB MongoDB README Welcome to MongoDB! COMPONENTS bin/mongod - The database process. bin/mongos - Sharding controller. bin/mongo - The database shell (uses interactive javascript). UTILITIES bin/mongodump - MongoDB dump tool - for backups, snapshots, etc.. bin/mongorestore - MongoDB restore a dump bin/mongoexport - Export a single collection to test (JSON, CSV) bin/mongoimport - Import from JSON or ..
Create PostgreSQL Table Partitioning (Part 1) Five easy steps how to make a partitioned table in Postgresql Create master table Create child tables without overlapping table constraints Create indexes Create trigger function to inserting data to child tables Enable constraint exclusion Simple example of PostgreSQL table partitioningThe initial situation is such that we should make the database table, which is able to archive your data to ad..
How do I find the PID of the session I want to kill? How do I find the PID of the session I want to kill?To find out the PID of the current session, run SELECT pg_backend_pid(); but of course you cannot kill that one with this function. This query lists the PIDs of currently active processes, and the SQL commands they are running: SELECT procpid, current_query FROM pg_stat_activity; procpid | current_query ---------+-------------------------------..
Shrink UNDO tablespace Shrink UNDO tablespace Oracle 11g 10g 9i tablespace database undo How to shrink the undo tablespace in Oracle? We need to create a tablespace temporary so that we can redirect undo usage to this temperorary tablespace. Steps: 1. Create a temporary tablespace for swapping CREATE undo TABLESPACE undotbs2 DATAFILE '/dbora01/oradata/ORCL/ora02/undotbs2_01.dbf' size 100M; 2. Use it as default UNDO ta..
Shrink Temporary Tablespace Shrink Temporary Tablespace Steps: 1. Create a temporary tablespace for swapping create temporary tablespace temp_temp tempfile '/dbora01/oradata/ORCL/ora02/temp_temp01.dbf' size 100M extent management local uniform size 1m; 2. Use it as default temporary tablespace alter database default temporary tablespace temp_temp; 3. Drop the old temporary tablespace alter tablespace temp tempfile offline;..
Spring into the Cloud! LIVE WEBINAR TUESDAY, APRIL 12, 2011 Spring into the Cloud! WEBINAR: TUESDAY, APRIL 12, 2011 Join Rod Johnson and other industry leaders for an exciting announcement for cloud developers. On April 12th, the Spring community is invited to attend a special live webcast. Spring has already simplified enterprise Java development. Next up is cloud development. Attend this webcast to learn how you can..
http://www.springsource.com/products 다운로드 개발자 및 IT 전문가 사용하는 사랑의 선도적인 제품보기. 엔터 프라이즈 자바에 가장 적합한 개발 도구 스프링 도구 스위트 ™은 (STS) 애플 리케이션 환경을위한 건물 스프링 구동 기업 개발 전원 제공하는 최고의 이클립스. STS는. OSGi 개발에 모두 포함된 도구에 대한 최신 엔터 프라이즈 자바와 스프링 기반 기술 최첨단 금형을 사용할뿐만 아니라 기업 다운 스프링 도구 스위트 룸 최고의 장소를 빌드하고 봄 응용 프로그램을 실행 TC를 서버 일반용 그리고 봄 에디션 ™에서 사용할 수있는, TC를 서버는 최고의 장소는 빌드하고 실행하여 봄 응용 프로그램입니다. 는 경량의 발자국과 함께 그것은 이상과 현대적인 가상 환경에 적합합니다 극적으로 비용과 복잡도를 잘라냅니다. 개발자 무료 다운로드 스프..