MS SQL Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsDatabasesMS SQL Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
VeriSign Code Signing Digital Certificates provides assurance to end users. Read about this and more in the free white paper: “How to Digitally Sign Downloadable Code for Secure Content Transfer.” Learn More!
  #1  
Old January 19th, 2004, 11:40 PM
iso iso is offline
Contributing User
Dev Shed Novice (500 - 999 posts)
 
Join Date: Sep 2003
Posts: 506 iso User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 Day 10 h 14 m 25 sec
Reputation Power: 5
checking enum values

I want to write a procedure that will check that a variable that is passed in is one of the enumerated values that is allowed.

The line
if (Select Where @status IN ('Retired', 'Playing', 'Injured'))
is the one that I am trying to figure out a way to do it. I don't have a table that contains all the options, but instead I thought that it would be easier to simply check using an 'IN', but I am not sure if this is possible

Thanls for the help

Code:
-------------------------------------------------------------------------------------------------
-- isValidStatus
-------------------------------------------------------------------------------------------------
Create Procedure isValidStatus (@status as varchar(10) = null)
As
	Begin
		if (@status is null or @status = '')
			raiserror('isValidStatus - You must pass in a player status',16,1)
		else
			Begin
				if (Select Where @status IN ('Retired', 'Playing', 'Injured')) 
					Select 1 --return true -> the status exists in the available options
				else
					Select 0 --return false -> the position does not exist in the available options
			End
	End
Return

Reply With Quote
  #2  
Old January 20th, 2004, 01:03 AM
abombss abombss is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2004
Posts: 49 abombss User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 5
The procedure below should work for you, but you might want to consider putting a check constraint on the table instead. That way every time a row is inserted or updated the values are checked.

The other option is a UDF which can be used inline like any other function call.

Hope this answers your questions... Check out Books On Line (BOL) about check constraints... every db should use them.

Adam

Code:
create table fooBar(
    id int identity(1,1) primary key,
    stat varchar(10) not null check ( stat IN('Retired', 'Playing', 'Injured') )
)
go

-- this works
insert into dbo.foobar values( 'Retired' )
--this fails
insert into dbo.foobar values( 'NoValue' )

Code:
create function fIsValidStatus (
    @status varchar(10)
)
returns integer
as
begin
    if exists (select 1 from @status IN('Retired', 'Playing', 'Injured') )
        return 1

    return 0
end
go

-- test the function
select dbo.fIsValidStatus( 'Retired' )
go


Code:
Create Procedure sprocIsValidStatus (@status as varchar(10) = null)
As
Begin
    if (@status is null or @status = '')
      raiserror('isValidStatus - You must pass in a player status',16,1)
    --else you do not need the else
  
    if exists ( select 1 where @status IN('Retired', 'Playing', 'Injured') )
        select 1
    else
        select 0;
End
go

--test sproc
exec dbo.sprocIsValidStatus 'Retired'

Reply With Quote
Reply

Viewing: Dev Shed ForumsDatabasesMS SQL Development > checking enum values


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

 Free IT White Papers!
 
Accelerating Trading Partner Performance
One in five. That's how many partner transactions have at least one error. That is an amazing statistic, particularly given the extraordinary leaps in innovation across the global supply chain during the past two decades. Download this white paper to learn more.

 
Competing on Analytics
This Tech Analysis is designed to help identify characteristics shared by analytics competitors, and includes information about 32 organizations that have made a commitment to quantitative, fact-based analysis.

 
Cost Effective Scaling with Virtualization and Coyote Point Systems
An overview of the industry trend toward virtualization, how server consolidation has increased the importance of application uptime and the steps being taken to integrate load balancing technology with virtualized servers.

 
Five Checkpoints to Implementing IP Telephony
Implementation planning for IP PBX software and IP telephony has become vital as businesses replace discontinued legacy PBX phone systems. This informative whitepaper outlines five "checkpoints" for any implementation plan that will help make IP communications a successful proposition.

 
Hosted Email Security: Staying Ahead of New Threats
In the last two years, email has become a fierce battleground between the nefarious forces of spam and malware, and the heroes of messaging protection. The spam volumes increased alarmingly every month, bringing clever new forms of phishing and virus propagation attacks.

 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 4 hosted by Hostway