Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
2k views

CHECK constraint in MySQL not working

First I create a table like CREATE TABLE Customer ( SD integer CHECK (SD > 0), Last_Name varchar (30), First_Name varchar(30) ); and then insert values in that table INSERT INTO Customer ...
6
votes
4answers
605 views

In SQL Server 2005, how do I set a column of integers to ensure values are greater than 0?

This is probably a simple answer but I can't find it. I have a table with a column of integers and I want to ensure that when a row is inserted that the value in this column is greater than zero. I ...
5
votes
2answers
46 views

How do I add a check constratint to a table?

I am having trouble with this table CREATE TABLE `Participants` ( `meetid` int(11) NOT NULL, `pid` varchar(15) NOT NULL, `status` char(1) DEFAULT NULL, PRIMARY KEY (`meetid`,`pid`), ...
5
votes
5answers
345 views

How do I have a check constraint that refers to another table?

I have the following tables in a SQL Server 2008 db: tblItem, which has an ItemID field; tblGoodItem, which also has an ItemID field, and has a foreign key pointing to tblItem; tblBadItem, which ...
4
votes
6answers
106 views

Checking sql unique value with constraint

I have a situation where a table has three columns ID, Value and status. For a distinct ID there should be only one status with value 1 and it should be allowed for ID to have more then one status ...
4
votes
2answers
298 views

How can I create a CHECK constraint on a VARCHAR column in MSSQL specifying a valid set of characters that may appear in the data?

I have a VARCHAR(30) column in a Microsoft SQL database representing a username. I'd like to add a CHECK constraint that allows only a certain range of characters to be used: specifically, a-z, A-Z, ...
4
votes
6answers
648 views

SQL can I have a “conditionally unique” constraint on a table?

I've had this come up a couple times in my career, and none of my local peers seems to be able to answer it. Say I have a table that has a "Description" field which is a candidate key, except that ...
4
votes
3answers
2k views

How to create a check constraint between two columns in SQL?

I am trying to create a Basic pay (BP) table with CREATE TABLE bp ( bpid VARCHAR(5), FOREIGN KEY (bpid) REFERENCES designation(desigid), upperlimit DECIMAL(10,2) NOT NULL, ...
3
votes
2answers
47 views

Check Constraints in SQL- Specify a value could be null or a constraint

I am trying to incorporate a check constraint in SQLite where the requirement is the following: The value could be null If the value is not null then it should be greater than 3. So, in my create ...
3
votes
3answers
97 views

How are my SQL Server constraints being bypassed?

We have found a handful of rows in our DB that violate an active constraint. How is this possible? The constraint is active, as we can't just manually add a row that bypasses this constraint. ...
3
votes
2answers
477 views

How to reference other tables in check constraints?

I have a table, ProductSupportArticles: ProductSupportArticleID int NOT NULL <primary key> ParentArticleID int NULL ProductID int NOT NULL Title varchar(100) NOT NULL Content varchar(MAX) NOT ...
3
votes
3answers
475 views

plsql oracle check in constraint error

Im getting this error: ORA-00904: "M": invalid identifier --> if I put ('M','F') //single quotation i got this error message: PLS-00103: Encountered the symbol "M" when expecting one of the following: ...
3
votes
1answer
347 views

How can I create a CHECK constraint on a VARCHAR column in SQL Server specifying a minimum data length?

I have a VARCHAR(30) column in a Microsoft SQL Server database. I'd like to add a CHECK constraint that does not allow a value in the column to be less than 3 characters. What is the expression I must ...
3
votes
2answers
162 views

Constraints in SQL Database

I need to have a table in T-SQL which will have the following structure KEY Various_Columns Flag 1 row 1 F 2 row_2 F 3 row_3 ...
3
votes
2answers
292 views

SQL CHECK constraint issues

I'm using SQL Server 2008 and I have a table with three columns: Length, StartTime and EndTime. I want to make a CHECK constraint on this table which says that: if Length == NULL then StartTime ...
3
votes
4answers
1k views

How do I create a multiple-table check constraint?

Please imagine this small database... Diagram Tables Volunteer Event Shift EventVolunteer ========= ===== ===== ============== Id Id ...
3
votes
4answers
76 views

Is it possible to a db constraint in for this rule?

I wish to make sure that my data has a constraint the following check (constraint?) in place This table can only have one BorderColour per hub/category. (eg. #FFAABB) But it can have multiple nulls. ...
3
votes
2answers
645 views

One check constraint or multiple check constraints?

Any suggestions on whether fewer check constraints are better, or more? How should they be grouped if at all? Suppose I have 3 columns which are VARCHAR2(1 BYTE), each of which is a 'T'/'F' flag. I ...
3
votes
3answers
2k views

SQL Server: How to make server check all its check constraints?

It seems that some scripts generated by Enterprise Manager* (or not, it doesn't matter) created check constraints WITH NOCHECK. Now when anyone modifies the table, SQL Server is stumbling across ...
3
votes
6answers
2k views

How do I check constraints between two tables when inserting into a third table that references the other two tables?

Consider this example schema: Customer ( int CustomerId pk, .... ) Employee ( int EmployeeId pk, int CustomerId references Customer.CustomerId, .... ) WorkItem ( int WorkItemId pk, ...
2
votes
1answer
65 views

Create custom error message in check constraints in SQL SERVER 2008

I'd like to see the ability to attach custom error messages to CONSTRAINT objects, specifically CHECK constrints. Either directly or via a custom error number in sysmessages. I've seen developers ...
2
votes
1answer
55 views

Oracle SQL - can CASE be used in a check constraint to determine data attributes?

I'm using Oracle 10g and I want to apply a constraint to a table where the value entered for one column determines whether another column IS NULL or IS NOT NULL. Column1 can only contain 1 or 0; ...
2
votes
2answers
79 views

A nicer way to write a CHECK CONSTRAINT that checks that exactly one value is not null

Imagine that I have a table with integer columns Col1, Col2, Col3, Col4. Each column is nullable and a valid row must contain a value in exactly 1 columns (i.e. all nulls is invalid and more than 1 ...
2
votes
1answer
72 views

Why aren'y my CHECK CONSTRAINTS on child tables being utilized by the planner to reduce the size of the plan?

I have a table that is partitioned by month and is used for holding apache log information. When I run EXPLAIN for a simple query which has a WHERE clause on the same field as the partition CHECKs, I ...
2
votes
4answers
590 views

What SQL databases support subqueries in CHECK constraints?

What SQL databases, if any, support subqueries in CHECK constraints? At present and as far as I know, Oracle, MySQL, PostgreSQL, and Firebird do not. EDIT (Clarification based on initial answers.) ...
2
votes
1answer
138 views

How to recheck primary/foreign key constraint for data already in the table in sql server?

I have a table in SQL Server 2005 with a foreign key and it was disable for huge data loading, and then re-enabled: Example: alter table table1 nocheck constraint fk_1 go lots of inserts... go alter ...
2
votes
2answers
213 views

Check constraint over two columns

I want to add a Check Constraint to a table for server 2005 but cannot work it out. MemberId ClubId MeetingId 1 100 10 2 100 10 3 100 10 7 101 10 <-This ...
2
votes
1answer
126 views

Please explain the syntax the SQLServer uses to create a check constraint

When I right click on a default constraint and I ask SQL Server to create a CREATE script for it, it generates the following code: ALTER TABLE [dbo].[tblEventTurnJudgeStartValues] WITH NOCHECK ...
2
votes
1answer
328 views

Does MySQL support check constraint?

Does MySQL support check constraint? I am able to execute the following script in MySQL without error. ALTER TABLE EMP_DB_DESIGN_EXCEL ADD ( CONSTRAINT CHK_EMP_IS_ACTIVE CHECK (IS_ACTIVE IN ...
2
votes
2answers
105 views

SQL Server Constraints Across Tables

I have a SQL Server database with an Apartment table (which has columns FloorNum and BuildingID) and an ApartmentBuilding table (with column NumFloors). Is there any way to set up a constraint (using ...
2
votes
2answers
431 views

TSQL Constraints on Temp Tables

Very quick and simple question. I am running a script to import data and have declared a temp table and applied check constraints to that table. Obviously if the script is run more than once I check ...
2
votes
3answers
676 views

TSQL - How to check a value against a value in a different column before inserting?

Is there a way to implement a CHECK constraint that checks a value against another value in a different column in the same table? Specifically, I want to ensure that a "checkout" date value to be ...
1
vote
2answers
62 views

Simple CHECK Constraint not so simple

2nd Edit: The source code for the involved function is as follows: ALTER FUNCTION [Fileserver].[fn_CheckSingleFileSource] ( @fileId INT ) RETURNS INT AS BEGIN -- Declare the return ...
1
vote
3answers
76 views

Can an SQL constraint be used to prevent a particular value being changed when a condition holds?

I know that SQL constraints can force data to meet validity criteria. However, what about criteria such as "Student's grade can only be updated when the 'finalised' flag is false"? Do such update ...
1
vote
1answer
169 views

T-SQL: CHECK constraint not working

I have the following T-SQL schema. The problem I am having is that the check constraint on the Download table is not working. I am still able to insert records into that table that contain NULL values ...
1
vote
1answer
69 views

Tests with constraint checking errors not caught when using AbstractTransactionalSpringContextTests (rollback)

The majority of my integration tests use spring's AbstractTransactionalSpringContextTests to do a rollback instead of commiting to the database. This works well normally but because foreign key ...
1
vote
1answer
162 views

Are regex check constraints possible in SQL Server

I am trying to find a way to validate data in my columns using regex CHECK constraints but have so far only come across the LIKE keyword that has an extremely limited subset of regex syntax. I'd like ...
1
vote
4answers
184 views

oracle compound Check constraint

Say I want to allow in a table column only strings that begin with a numeral and should not contain '$' in it. How would a check constraint on this table look like?
1
vote
3answers
252 views

Hibernate non-negative value constraint

I have the table, the snippet below. package test; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import ...
1
vote
1answer
668 views

Adding an email check constraint in APEX

I'm fairly new to Oracle and very new to APEX. I'm trying to add a constraint on a table to validate the email: REGEXP_LIKE(CALLER_EMAIL, '[a-zA-Z0-9._%-]+@[a-zA-Z0-9._%-]+\.[a-zA-Z]{2,4}') Now if ...
1
vote
4answers
314 views

Check constraint to validate IP address field

I'm working on a project involving C# and a SQL Server 2008 database. In one of the tables, I have a field (nvarchar(15)) which will contain an IP address. I'd like to add a check constraint which ...
1
vote
2answers
579 views

SQL Server - CHECK constraint on a column where values come from another table

How does one put a CHECK constraint on a column such that its range of acceptable values come from another table, without hardcoding? Here's a simplified example: OneManyTable RoleID TaskID 10 ...
1
vote
1answer
412 views

Using a check contraint in MySQL for controlling string length

I'm tumbled with a problem! I've set up my first check constraint using MySQL, but unfortunately I'm having a problem. When inserting a row that should fail the test, the row is inserted anyway. The ...
1
vote
1answer
54 views

How to find the entity with the greatest primary key?

I've an entity LearningUnit that has an int primary key. Actually, it has nothing more. Entity Concept has the following relationship with it: @ManyToOne @Size(min=1,max=7) private ...
1
vote
1answer
763 views

How to specify the cardinality of a @OneToMany in EclipseLink/JPA

I'm trying to impose a @Oneto7 association. I'd have imagined an attribute that specifies the target many value, but have found none. If there is no such attribute, how else, in JPA/EclipseLink would ...
1
vote
2answers
77 views

SQL Server Check Contraint and checking Signed In/Out state

I have a table that functions as an event log and stores the users signed in state, 'In', 'Out', or 'Rejected' (sometimes users my be 'Rejected' based on external criteria). Here is some sample data ...
0
votes
1answer
36 views

How do I create a DOMAIN that accept NULL?

I can't seem to figure out how to get a custom domain to accept a NULL value. Notice, for shits and giggles I've tried it many different ways: DROP SCHEMA census CASCADE; CREATE SCHEMA census; -- ...
0
votes
1answer
18 views

Is it possible to add a check constraint that calls a user defined function in a different database?

I'm trying to add a user defined function that actually calls the SQL# CLR function RegEx_IsMatch to a column, but I get this error: A user-defined function name cannot be prefixed with a database ...
0
votes
1answer
54 views

Multiple Column Constraint

I have a table with three columns, the ID of the relation, the ID of the object related and the value of the object. The table may have as many repeated ID-Value relations except when the Value is 0 ...
0
votes
1answer
173 views

How to constrain the number of records allowed in an SQL table?

Say I have two tables, Parent and Child. Parent has a MaxChildren (int) field and Child has an Enabled (bit) field and a ParentID (int) field linking back to the parent record. I'd like to have a ...

1 2