2014-10-01 2 views
0

VB 스크립트로 PowerDesigner에서 열 데이터 형식을 변경하는 방법은 무엇입니까? 모델에서 varchar에서 varbinary로 데이터 유형을 전역 적으로 변경하려고하지만 VB 스크립트의 도움말을 사용하여 수행 할 수 없습니다.Power Designer에서 vbscript로 데이터 유형 조작

+0

"글로벌로 변경"이란 무엇을 의미합니까? – pascal

답변

0

작동하지 않는 코드의 예를 제공해야합니다. 당신이 더 도메인을 사용하는 것, 여러 컬럼의 데이터 유형을 변경하려는 경우, 관계없이 VBScript를의

option explicit 
dim mdl : set mdl = activemodel 
dim tbl : set tbl = mdl.tables.createnew 
dim col : set col = tbl.columns.createnew 
col.datatype = "varbinary" 

: 여기

작동 예이며, 데이터 유형을 varbinary와 열을 생성 :

option explicit 
dim mdl : set mdl = activemodel 
dim tbl : set tbl = mdl.tables.createnew 
dim dom : set dom = mdl.domains.createnew 
dim col : set col = tbl.columns.createnew 
set col.domain = dom 
dom.datatype = "varbinary"