oracle에서 table을 생성했던 SQL문을 MS-SQL의 T-SQL로 바꾸고 싶습니다..
초보라서 잘 몰라서 통째로 올리니까 고수님들께서 많이 도와주세요...
CREATE TABLE BCWUser ( seqID number not null , userID varchar2 ( 20 ) not null , companyID number not null , valid number ( 1 ) default 1 not null , cDate date default sysdate not null , constraint BCWUser_PK primary key( seqid, userID ) using index pctfree 5 tablespace BCW_INDEX1 storage(initial 1M next 1M pctincrease 0) ) tablespace BCW_DATA1 storage(initial 10M next 1M freelists 10 pctincrease 0 ) PCTFREE 20 PCTUSED 65 |