'MSSQL'에 해당되는 글 5건
- 2017.10.24 [MSSQL] For 문으로 데이터 넣기
- 2017.09.05 Try Catch 예제
- 2017.03.28 오전오후 -> datetime 변환
- 2017.02.23 index 방법
- 2015.12.02 [MSSQL] Password 분실
DECLARE @count INT
SET @count = 1
WHILE @count <= 1000
BEGIN
INSERT INTO T_TAGS (id, timeStamp, value) VALUES ('TEST', DATEADD(SECOND, @count,'2017-10-01 00:00:00') , @count)
SET @count = @count+1
END
'DB > MSSQL' 카테고리의 다른 글
기본 문법 중 자꾸 까먹는것들 위주로.. (0) | 2017.12.01 |
---|---|
외부 접속 허용 (0) | 2017.10.23 |
Try Catch 예제 (0) | 2017.09.05 |
오전오후 -> datetime 변환 (0) | 2017.03.28 |
index 방법 (0) | 2017.02.23 |
BEGIN TRY SELECT * FROM sys.messages WHERE message_id = 21; END TRY GO -- The previous GO breaks the script into two batches, -- generating syntax errors. The script runs if this GO -- is removed. BEGIN CATCH SELECT ERROR_NUMBER() AS ErrorNumber; END CATCH; GO
'DB > MSSQL' 카테고리의 다른 글
[MSSQL] For 문으로 데이터 넣기 (0) | 2017.10.24 |
---|---|
외부 접속 허용 (0) | 2017.10.23 |
오전오후 -> datetime 변환 (0) | 2017.03.28 |
index 방법 (0) | 2017.02.23 |
MSSQL express to standard upgrade (0) | 2016.11.18 |
set @eventdatetime = '2017-03-03 오전 10:20:30'
convert(datetime,
left(@eventdatetime,charindex(' ',@eventdatetime,1)-1)
+ ' '
+ right(@eventdatetime,charindex(' ',reverse(@eventdatetime),1)-1)
+ case when charindex('오전',@eventdatetime,1) > 0 then 'AM' else 'PM'
end
)
==========================================================
(convert(datetime,
left(@timeStamp, charindex(' ',@timeStamp, 1)-1)
+' '
+right(@timeStamp, charindex(' ',reverse(@timeStamp), 1)-1)
+case when charindex('오전', @timestamp, 1) > 0 then 'AM' else 'PM'
end)
'DB > MSSQL' 카테고리의 다른 글
외부 접속 허용 (0) | 2017.10.23 |
---|---|
Try Catch 예제 (0) | 2017.09.05 |
index 방법 (0) | 2017.02.23 |
MSSQL express to standard upgrade (0) | 2016.11.18 |
[MSSQL] MSSQL MANAGEMENT에서 테이블 수정 안되는 오류 (0) | 2015.12.14 |
1. table에 index 존재 여부 확인 방법
exec SP_HELPINDEX [table명]
ex) table명 : testTable인경우
exec SP_HELPINDEX [testTable]
2. table에 index 추가(*noncluster 방법임)
create index index명 on table명(Column1, Column2)
ex) table명 : testTable, index명 : testIndex, Column1 : id, Column2: name 인경우
create index testIndex on testTable(id, name)
'DB > MSSQL' 카테고리의 다른 글
Try Catch 예제 (0) | 2017.09.05 |
---|---|
오전오후 -> datetime 변환 (0) | 2017.03.28 |
MSSQL express to standard upgrade (0) | 2016.11.18 |
[MSSQL] MSSQL MANAGEMENT에서 테이블 수정 안되는 오류 (0) | 2015.12.14 |
[MSSQL] Password 분실 (0) | 2015.12.02 |
이 방법은 Microsoft SQL Server Management Studio로 Password를 변경하는 방법이다.
Admin 계정으로 로그인 후에 새쿼리 창을 열고 아래의 방법으로 입력하고 수정하려는 걔정과 Password를 입력하고 실행하면 된다.
sp_password
null, '변경할 패스워드 입력',
'계정정보 입력';
ex) sp_password null, 'Password', 'sa';
'DB > MSSQL' 카테고리의 다른 글
Try Catch 예제 (0) | 2017.09.05 |
---|---|
오전오후 -> datetime 변환 (0) | 2017.03.28 |
index 방법 (0) | 2017.02.23 |
MSSQL express to standard upgrade (0) | 2016.11.18 |
[MSSQL] MSSQL MANAGEMENT에서 테이블 수정 안되는 오류 (0) | 2015.12.14 |