Advertisement

1 - 10 of 456 containing alltags:("constraint") (0.001 seconds)
Is there any way to prevent a Value from being deleted in a table that is being used as a foreign key.  Example: if a table called DEPT has a primary key of DeptNo (Dept list all the valid Dept...
Zones: OracleDate Answered: 05/21/2001 Grade: B Views: 0
Here's what's in the db: role_cd, with a CHECK (role_cd IN ('M','S','R','C','I'), I need this to be: CHECK (role_cd IN ('A','M','S','R','C','I') ---> note the addition of 'A'... Now this c...
Zones: OracleDate Answered: 08/25/2003 Grade: B Views: 0
http://msdn.microsoft.com/library/en-us/tsqlref/ts_create2_8g9x.asp?frame=true Almost at the end of this web site it shows an example of an employee table. CREATE TABLE employee (      emp_...
Zones: DatabasesDate Answered: 04/26/2004 Grade: A Views: 0
Hello guys and gals, I need to drop a PK in one of my table. Unfortunately, it need to be done automatically since most of the users dont have EM or QA. Im trying to read the result set of SP_H...
Zones: MS SQL ServerDate Answered: 09/14/2003 Grade: B Views: 13
SQL2000... I'm trying to make a check constraint expression to satisfy the following: - Username anywhere between 4 and 16 characters - Username consisting only of [A-Za-z0-9] or underscore ...
Zones: MS SQL ServerDate Answered: 10/31/2003 Grade: A Views: 0
I have this table: CREATE TABLE [dbo].[rateCategory] (       [rateCategoryId] [int] IDENTITY (1, 1) NOT NULL ,       [rateId] [int] NOT NULL ,       [categoryId] [int] NOT NULL ) ON [PRIMARY] GO I wou...
Zones: MS SQL ServerDate Answered: 01/14/2004 Grade: A Views: 0
I need to generate a cross-tab report for a travel and expense reporting system.  I have the following tables in a SQL Server 2000 database: CREATE TABLE [setTandEReport] (       [TandEReportID] [in...
Zones: .NETDate Answered: 02/11/2004 Grade: A Views: 0
Must I activate something in MySQL before I can use check contstraints? Cos it seems like my check constraints are useless. I can remove rows that are supposed to be bounded to a check constraint t...
Zones: MySQL ServerDate Answered: 01/16/2006 Grade: A Views: 0
I would like to have a vb app that will allow people to select an image and have it appear on a form later on. 1.  what kind of images can vb handle? 2.  Is there any sort of resolution const...
Zones: Visual Basic, GraphicsDate Answered: 04/08/2005 Grade: B Views: 0
Hey everyone, When creating a table can you force a constraint (or in access terms, an input mask) on a field. I need the field to have the format Mnnn where M is always just M, and n is a digit...
Zones: OracleDate Answered: 03/31/2005 Grade: A Views: 0