랜덤 캐릭터 생성하기

jevida(강성욱) 2017.01.11 08:42 Views : 2487

랜덤 캐릭터 생성하기

 

  • Version : SQL Server 2005, 2008, 2008R2, 2012, 2014

 

무작위로 패스워드를 생성해야 하거나 쿠폰번호 등을 생성해야 할 때 일정한 범위내에서 랜덤한 문자열을 생성하는 코드를 만들어 본다.

 

랜덤한 문자열을 만들기 위해서 이전에 다루었던 RAND BETWEEN 함수를 사용하여 일정한 범위 내에서 난수를 발생 시킬 수 있도록 한다.

 

RAND BETWEEN 생성

create view vRandomNumber

as

    select rand() as RandomNumber

go

 

create function randbetween(@bottom int, @top int)

returns int

as

begin

return (select cast(round((@top-@bottom)* RandomNumber + @bottom,0) as integer) from vRandomNumber)

end

go

 

RANDBWTWEEN을 활용한 랜덤 캐릭터 생성

CREATE FUNCTION dbo.GeneratePassword ()

RETURNS varchar(10)

AS

BEGIN

DECLARE @randInt int;

DECLARE @NewCharacter varchar(1);

DECLARE @NewPassword varchar(10);

SET @NewPassword='';

 

--6 random characters

WHILE (LEN(@NewPassword) <6)

BEGIN

select @randInt=dbo.randbetween(48,122)

    -- 0-9 < = > ? @ A-Z [ \ ] a-z

IF @randInt<=57 OR (@randInt>=60 AND @randInt<=93) OR (@randInt>=97 AND @randInt<=122)

Begin

select @NewCharacter=CHAR(@randInt)

select @NewPassword=CONCAT(@NewPassword, @NewCharacter)

END

END

 

--Ensure a lowercase

select @NewCharacter=CHAR(dbo.randbetween(97,122))

select @NewPassword=CONCAT(@NewPassword, @NewCharacter)

 

--Ensure an upper case

select @NewCharacter=CHAR(dbo.randbetween(65,90))

select @NewPassword=CONCAT(@NewPassword, @NewCharacter)

 

--Ensure a number

select @NewCharacter=CHAR(dbo.randbetween(48,57))

select @NewPassword=CONCAT(@NewPassword, @NewCharacter)

 

--Ensure a symbol

WHILE (LEN(@NewPassword) <10)

BEGIN

select @randInt=dbo.randbetween(33,64)

    -- ! # $ % & < = > ? @

IF @randInt=33 OR (@randInt>=35 AND @randInt<=38) OR (@randInt>=60 AND @randInt<=64)

Begin

select @NewCharacter=CHAR(@randInt)

select @NewPassword=CONCAT(@NewPassword, @NewCharacter)

END

END

 

RETURN(@NewPassword);

END;

GO

 

랜덤하게 생성되는 캐릭터를 확인한다.

SELECT dbo.GeneratePassword() AS 'NewPassword';

SELECT dbo.GeneratePassword() AS 'NewPassword';

SELECT dbo.GeneratePassword() AS 'NewPassword';

 

 

 



강성욱 / jevida@naver.com
Microsoft SQL Server MVP
Blog : http://sqlmvp.kr
Facebook : http://facebook.com/sqlmvp

No. Subject Author Date Views
Notice SQL강좌: 챗GPT와 함께 배우는 SQL Server 무료 강좌 목차와 소개 (2023년 9월 업데이트) 코난(김대우) 2023.08.18 33995
Notice Python 무료 강좌 - 기초, 중급, 머신러닝(2023년 6월 업데이트) 코난(김대우) 2021.01.01 17166
2014 트랜잭션로그 파일이 손상된 데이터베이스 복원 하기 jevida(강성욱) 2017.01.11 4714
2013 트랜잭션 로그 백업을 읽고 트랜잭션 발생 시간 및 사용자 찾기 jevida(강성욱) 2017.01.11 3367
2012 RESOURCE_GOVERNOR_IDLE과 쿼리 성능 jevida(강성욱) 2017.01.11 2086
2011 TDE 암호화된 데이터베이스 복원 jevida(강성욱) 2017.01.11 2559
2010 재해복구를 위한 SQL Server 역할 가져오기 jevida(강성욱) 2017.01.11 2345
2009 비관리자 계정에 Profiler 실행 권한 부여하기 jevida(강성욱) 2017.01.11 3342
2008 SQL Server Agent 공유 일정 생성하기 jevida(강성욱) 2017.01.11 2224
2007 인덱스 리빌드는 통계를 업데이트 할까? jevida(강성욱) 2017.01.11 2564
2006 인덱스 유지관리 작업과 SQL Server 쿼리 성능 jevida(강성욱) 2017.01.11 3455
2005 네트워크 드라이브에 데이터베이스 복원하기 jevida(강성욱) 2017.01.11 4333
2004 확장 저장 프로시저를 활용한 논리디스크 용량 확인 jevida(강성욱) 2017.01.11 2541
2003 날짜 참조 테이블 만들기 jevida(강성욱) 2017.01.11 3268
2002 인덱스 상세 정보 확인 jevida(강성욱) 2017.01.11 3843
2001 DTC Transacntion 오버헤드 jevida(강성욱) 2017.01.11 1339
2000 대용량 로드를 위한 BULK INSERT 옵션 jevida(강성욱) 2017.01.11 5607
1999 SQL Server 2014 Diagnostic Information Queries jevida(강성욱) 2017.01.11 1662
1998 SQL Server 2012 Contained Database jevida(강성욱) 2017.01.11 1077
1997 SQL Server 2008R2 Diagnostic Information Queries jevida(강성욱) 2017.01.11 1465
1996 SQL Server 2005 Diagnostic Information Queries jevida(강성욱) 2017.01.11 1404
1995 601 Error, Could not continue scan with NOLOCK due to SQL Server data Movement jevida(강성욱) 2017.01.11 4184





XE Login