전체 글(137)
-
Spring4 Scheduling - 환경설정
4.0.0 com.intercast SuhyupSchedule 0.0.1-SNAPSHOT KigamSchedule SuhyupSchedule 4.1.6.RELEASE 3.2.8 1.2.2 D:/Repository/deploy/shuhyup lib Suhyupchedule mvn2 http://repo1.maven.org/maven2/ true true jasterxml http://repo1.maven.org/maven2/com/fasterxml/jackson/ org.springframework spring-context ${spring.maven.artifact.version} org.springframework spring-core ${spring.maven.artifact.version} org...
2015.05.19 -
Spring4 Scheduling - 폴더구조
전체 폴더 구조 사용 Framework - Spring 4.1.8 - Mybatis 3.2.8 ( mybatis-spring-1.2.2 ) 폴더 설명 config : Spring 설정파일 경로 stater : main Method를 포함하고 있는 시작 Application 파일 경로 다른 폴더들은 설명하지 않도록 하겠습니다...^ ^
2015.05.19 -
Datepicker 시간 선택 Plugin
Adding a Timepicker to jQuery UI Datepicker http://trentrichardson.com/examples/timepicker/ 쓸만한듯하네..ㅡㅡ;;
2015.05.18 -
트리구조 쿼리문
CREATE TABLE [dbo].[tblcommon]( [SEQ] [int] IDENTITY(1,1) NOT NULL, [GUBUN] [varchar](30) NOT NULL, [TITLE] [varchar](150) NOT NULL, [DEPTH] [int] NOT NULL, [PARENT_SEQ] [int] NULL, [SORT] [int] NOT NULL, CONSTRAINT [PK_tblcommon] PRIMARY KEY CLUSTERED ([SEQ] ASC) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ..
2015.04.23 -
Session 확인
select machine "hostname", username "username", osuser "OS User", program "Program", sid||','||serial# "ID", last_call_et "Last Activity", status from v$session where username is not null order by status desc, last_call_et desc;
2015.04.23 -
행걸린 사용자 찾기
select b.machine "hostname", b.username "username", b.osuser "OS User", b.program "Program", a.tablespace_name "TableSpace", row_wait_file# "File Number", row_wait_block# "Block Number", c.owner, c.segment_name, c.segment_type from dba_data_files a, v$session b, dba_extents c where b.row_wait_file# = a.file_id and c.file_id = row_wait_file# and row_wait_block# between c.block_id and c.block_id +..
2015.04.23