Posted by
zemna on May 10, 2010 in
ETC. |
0 comments
1. Table Space 생성
create tablespace OPPRA
datafile ‘/oracle/SAFEDB/oradata/Ora10g/oppra.dbf’
size 500m
autoextend on
next 100m
maxsize 700m;
2. 사용자 계정 생성
create user oppra identified by ocspgd
default tablespace OPPRA
3. 사용 권한
grant connect to jiwon;
grant resource to...
Posted by
zemna on Jan 12, 2010 in
ETC. |
0 comments
VisualSVN Server를 이용하면 아파치(Apache) 서버에서 서비스되는 SVN 서버를 손쉽게 구축할 수 있다.
1. VisualSVN 사이트에서 최신 버전의 VisualSVN Server 프로그램을 다운로드 한다.
VisualSVN Server 다운로드...
Posted by
zemna on Dec 30, 2009 in
ETC. |
0 comments
ASP.NET web application
SQL Server database back-end
Time-tracking and fully interactive web-based Project Gantt
Source control integration
Configurable email alert templates
Custom fields support
Gemini event sub system– event/listener model
Gemini Web Services
Automatic project road map and change...
Posted by
zemna on Dec 30, 2009 in
ETC. |
0 comments
어제 회식하던 중, 이슈 트래킹(Issue Tracking) 툴의 필요성이 다시 대두되었다. 기존에 Trac을 도입하려고 시도했으나, 이번에 새로오신 과장님의 소개로 Gemini라는 툴에 대해 알게 되었다. 처음 들어본 이슈 트래킹 툴이였으나 설치가...
Posted by
zemna on Jul 28, 2009 in
ETC. |
0 comments
http://channel9.msdn.com/pdc2008/TL33/
Posted by
zemna on Jul 28, 2009 in
ETC. |
0 comments
출처 : http://blogs.msdn.com/kcwalina/archive/2008/04/25/MEF.aspx
Several months ago we formed what we call Application Framework Core team. The charter of the team is to play the same role in the application frameworks space (WinForms, ASP.NET, WPF, Silverlight) as the Base Class Libraries (BCL) team...
Posted by
zemna on Jul 28, 2009 in
ETC. |
Comments Off
출처 : http://blogs.msdn.com/brada/archive/2008/09/29/simple-introduction-to-composite-applications-with-the-managed-extensions-framework.aspx
Recently my team has been working on the Managed Extensions Framework (MEF)… I have gotten a chance to explain the concept to folks and I think I...
Posted by
zemna on Jul 26, 2009 in
ETC. |
0 comments
출처 : http://vsts2010.net/101
MEF(Managed Extensibility Framework) 이 2009년 7월 13일에 릴리즈되어 14일에 공개가 되었습니다. 특히 MEF 는 .NET Framework 4.0 에 포함이 되어있으며, CodePlex 에서 굉장히 빠른 속도로 발전하고 있는 프레임워크 중에...
Posted by
zemna on Jul 26, 2009 in
ETC. |
0 comments
Querying the CompositionContainer
출처 : http://vsts2010.net/68
CompositionContainer 의 Exported 구성 요소를 취득하기 위해서는 컨테이너에 하나의 구성 요소만이 존재해야 합니다. 쿼리(Query) 를 통해 이러한 객체들이 여러 개 존재할 경우 MEF...
Posted by
zemna on Jul 26, 2009 in
ETC. |
0 comments
Recomposition
출처 : http://vsts2010.net/42
이전 포스트의 MEF 의 특징 중에 MEF 의 플러그인 모델(Plugin Model) 은 교체가 용이하다고 하였습니다. Composable Part 는 구성 요소로써 고유의 기능을 구현합니다. 그리고 MEF 는 각각의 Composable...