생계/Sybase2017. 9. 8. 23:56

-- 컬럼 타입 변경
alter table TESTTB modify colA VARCHAR(1)

 

-- 컬럼 이름 변경 
sp_rename 'TESTTB.colA', 'colB'

 

=> colA 를 colB 로 변경

 

-- 컬럼 추가
ALTER TABLE sample.dbo.employee ADD new_col char(25) DEFAULT '22' NOT NULL

 

-- 특정 컬럼이름 찾기

 

select distinct object_name(id)
from syscolumns
where name = 'colA'
order by object_name(id)

 

 

 

* 테이블 생성

 

--drop table TESTTB

 

create table TESTTB (
colA CHAR(2) not null,
colB CHAR(4) not null,
colC CHAR(6) not null,
colD VARCHAR(20) not null
)
lock datarows
with dml_logging = full
on 'default'
go

 

Grant Insert on dbo.TESTTB to test_user_role Granted by dbo
go

 

반응형

'생계 > Sybase' 카테고리의 다른 글

Sybase 성능분석 로그 편집 쉘  (0) 2017.09.09
Sybase DB사용량  (0) 2017.09.09
Sybase session kill  (0) 2017.09.09
Sybase User resource 제한  (0) 2017.09.08
Sybase Role관련  (0) 2017.09.08
Posted by 돌고래트레이너