A constraint is a condition that has to be fulfilled in a given context. Constraints are typically used in databases and programming languages to detect errors, ensure data consistency, accuracy, and to enforce business requirements.
0
votes
1answer
28 views
insert ignoring duplicates using TSQL
I have a table with unique constraint on 2 columns:
CREATE TABLE MIGRATION_DICTIONARIES.dbo._TableQueue_ (
Id INT IDENTITY PRIMARY KEY,
TableName VARCHAR(250),
TableFrom VARCHAR(250),
...
0
votes
0answers
23 views
MYSQL UNIQUE for date part of a date field
I have the field sync_date (type DATETIME) in my table visit. I would like that sync_date can not repeat in the same day. So, I have the idea to have sync_date as an UNIQUE field. But it doesn't work ...
1
vote
3answers
40 views
Mysql delete constraint
I have a table with below structure :
CREATE TABLE `Lm_help` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`section` int(10) NOT NULL,
`language` int(10) NOT NULL,
`title` varchar(255) NOT NULL,
...
0
votes
0answers
19 views
Represent the state of a Highschool schedule
I am trying to schedule a large amount of students across 6 periods. Students have already chosen the courses they want to take (each take 5-6 classes). Courses have been created and teachers assigned ...
0
votes
1answer
25 views
Creating a check constraint for multiple specific inputs
I assumed it would be fine to execute SQL ommand something like this
ALTER TABLE PURCHASE
ADD CONSTRAINT CK_SERVICETYPE
CHECK(ServiceType ='Training' OR 'Data_Recovery' OR 'Consultation' OR 'Software ...
1
vote
0answers
38 views
Using Matlab GA for optimization of expensive fitness function with Constraints
I am using Genetic Algorithm in Matlab for optimization of a computationally expensive fitness function which also has constraints . I am right now imposing constraints in the form of penalty in to ...
0
votes
1answer
26 views
Finding constraints enforced across multiple tables in orcale
I have a database, with the following tables EMP, DEPT, CLIENT and PURCHASE. I am using Oracle 11g express edition
I have executed the following SQL statement to find out constraints on table : EMP
...
0
votes
1answer
37 views
Resizing for 3.5 and 4inch screen
wondering if anyone can help, I've always struggled with resizing for both screen sizes.? What is the best way to do it?
At the moment with the 4 inch screen all my layout is perfect then when I view ...
0
votes
1answer
36 views
Putting equality constraint in z3
I am using z3's python API to solve see if a set of constraint is satisfiable or not.
I have the conditions as string and I want to directly pass them to z3 whenever possible, just to save processing ...
-1
votes
2answers
28 views
In Oracle, how would I begin to create the tables when all the needed tables have both foreign and primary key constraint?
In Oracle,
Lets say there are 3 tables with primary key and foreign key on each table. So, If i were to start creating the tables, how would i start. I started to create a first table with primary ...
0
votes
0answers
25 views
Rails 3 Routes - Redirect When Constraint Not Met
On the advice given in the question "Rails 3 SSL routing redirects from https to http", I have some routes that look something like this:
ROUTES_PROTOCOL = Rails.env.production? ? 'https://' : ...
0
votes
0answers
19 views
Fast enumeration crash on updating constraints
I have a UICollectionView with a lot of cells that contain a UIImageView.
I use SDWebImage to load images into them.
When I scroll really fast, the application crashes. LLDB doesn't do me any good, ...
-1
votes
0answers
24 views
DatabaseException Contraint failed in Blackberry
I am trying to insert a row in my database:-
insert into ZCATEGORYLIST values (1,1,1,"Peter House","Oxford Street","","Other"," EPC ASSURE LTD - ...
0
votes
1answer
112 views
fast and simple constraint programming involving vectors (arrays)
I have many,many, many vectors that I need to check for duplicates of numbers with some very basic first order logic.
I can use intersections, but that is proving to be too slow. I thought I could ...
0
votes
0answers
17 views
Custom collation to not differentiate between a solidus and backslash
I want to make a custom collation/constraint for a column in my database table, which will also have a unique constraint, such that it doesn't differentiate between between a solidus / and a backslash ...
0
votes
1answer
20 views
MySQL Constraints/Cascades: Will This Work?
I have a table - threads - and another - posts.
Each thread is like a subject with the posts being replies. If a thread is deleted, all related posts need to be deleted.
All posts have an id and a ...
8
votes
2answers
54 views
How to conditionally invoke a generic method with constraints?
Suppose I have an unconstrained generic method that works on all types supporting equality. It performs pairwise equality checks and so works in O(n2):
public static int ...
0
votes
1answer
26 views
Logic Programming: Solve the term constraint f(X; Y; g(a)) = f(g(Y ); Z; X)
I was not able to attend my programming language class the other day due to my wonderful car crapping out on me. I am working on our homework assignment, I am doing pretty good till I got to this ...
0
votes
2answers
30 views
CHECK CONSTRAINT in Oracle SQL
I have the following table Goods_In_Wagon(Goods_ID,Wagon_ID,Total_Weight).
I need to create a number of if statement check constraint that says
"IF WAGON_ID is between 90 and 99 THEN Total_Weight ...
0
votes
1answer
26 views
Clamp rotatation angle of a rigid body
I recently attached a rigid body to the camera in my 3d game, so that it can collide with the environment. By now mouse movement directly rotates the rigid body.
#include ...
0
votes
2answers
33 views
insert foreign key constraint failed
i want to insert data to database, but my app get force closed because foreign key constraint failed. i have try to fix but i can't solve that error.
dbHelper.java
public class dbHelper {
private ...
0
votes
0answers
21 views
Mysql Error Cannot add or update a child row:
Hi i was doing my assignment when i go this error while trying to insert data into a table
#1452 - Cannot add or update a child row: a foreign key constraint fails (waget.customer, CONSTRAINT ...
0
votes
1answer
31 views
Constrain database to hold one value or the other never both
Is it possible to add a database constraint to limit a row to have a single value in one of two columns, never more and never less? Let me illustrate:
Sales Order Table
...
2
votes
2answers
102 views
Existing Algorithm for Scheduling Problems?
Let's say I want to build a function that would properly schedule three bus drivers to drive in a week with the following constraints:
Each driver must not drive more than five times per week
There ...
1
vote
0answers
33 views
Ragdoll joint angle constraints
I am doing a C# project on ragdolls based on Thomas Jakobsen's article http://www.gpgstudy.com/gpgiki/GDC%202001%3A%20Advanced%20Character%20Physics
I have converted the logic to 2D and everything ...
2
votes
3answers
46 views
check constraint with if logic oracle sql
Is there a way to use if logic in an oracle sql check constraints?
This is my pseudo table:
create table child
(
name,
behaviour,
treat,
);
Now what i want is that if the behaviour of ...
0
votes
1answer
48 views
How To Create Constraint between one field of one table, to two field of two table in sql
Table1:
field:ID1
Table2:
field:ID2
Table3:
field:ID3
I want constraint: ID3 in (ID1 + ID2)
Actually Should ID3 exist in ID1 , if not exist, Should ID3 exist in ID2
Example:
...
1
vote
1answer
32 views
OpenErp - External Id Bulk Update
I need a way to add, some external ID's in the system without having to add them manually or by .csv
Is there any way to do this by a module, that maybe updates all the ir.model.data tables of the ...
-1
votes
2answers
26 views
SQL: In Oracle, how do you add a constraint so that the first character is a 0? [closed]
I'm creating a table which needs a column for phone numbers.
A restriction I have to make is that the first character has to be '0'.
How exactly can I go about doing this?
0
votes
1answer
29 views
Oracle foreign key
I need to add two constrains WORK_ADDRESS_ID and HOME_ADDRESS_ID in STAFF table references ADDRESS_ID in ADDRESS table, but it appears The TABLE operation was not successful for the following reason: ...
0
votes
2answers
91 views
UICollection View Adjust Cell Size for Screen Size
Currently i have a collection view which takes up most of my screen at the 3.5 inch screen size.The collection view is 51 pixels from the top and 20 pixels from the bottom of the screen. I am using ...
-3
votes
0answers
19 views
How to set a constraint for an attribute in SQL [closed]
I am making a library database and need to specify a constraint. For example a student can only check out two books out at a time.
0
votes
1answer
14 views
How to create rails route with constrants for numbers-only that accepts empty parameter?
I have created some route like this:
get 'foo/:offset' => 'foo#action', :as => :foo, :constraint => { id: /\d+/ }
It works fine, but: I want rails to route /foo to foo#action if no ...
0
votes
0answers
25 views
Lock while Oracle constraints are enabled with VALIDATE?
Is there a lock:
While the constraint is being changed from disabled to enabled?
And while it is being changed from novalidate to validate?
The documentation says no lock:
If you change the ...
0
votes
2answers
89 views
android.database.sqlite.SQLiteConstraintException: foreign key constraint failed (code 19)
I've this code for creating my sqlLite DB in anroid application:
private static final String CREATE_TABELLA_PERSONE = "CREATE TABLE TB_PERSONE "
+ "(_ID integer,"
+ "CODICE_PERSONA text not null, ...
0
votes
1answer
32 views
Why can primary key column be empty in SQLite?
I have a table with only 1 primary column (nvarchar), as in the designer, it's marked as primary key and not allow nulls. But by somehow, there is a row in that table with the key value being empty, ...
2
votes
1answer
49 views
Postgresql: Conditionally unique constraint
I'd like to add a constraint which enforces uniqueness on a column only in a portion of a table.
ALTER TABLE stop ADD CONSTRAINT myc UNIQUE (col_a) WHERE (col_b is null);
The WHERE part above is ...
2
votes
1answer
60 views
Oracle sql loader validation
I am using sql loader to load a csv file. One of the columns should be a Boolean. But Oracle does not support a Boolean datatype. So I need to add validation or a constraint. When I add a constraint ...
0
votes
1answer
81 views
Resize UITextView inside a UITableViewCell with iOS Autolayout
My Goal
I'm creating a custom UITableViewCell (MessageCell), and I'd wish to have my UITextView resizing both in width and height whenever the cell changes its size, while keeping some basic ...
-3
votes
1answer
55 views
Check for empty fields in form [duplicate]
Is it possible to check a form for any empty text boxes rather than having to put a check on each individual text box with an if? Any help would be much appreciated.
0
votes
1answer
48 views
How to constrait a generic class to work with just two classes
I have a generic class modeling a protocol that encapsulates other protocols. All the protocols implement a specific interface but this generic class must contain only one of two of these protocols as ...
0
votes
1answer
58 views
SQL Constraint that one column value cannot be greater than another in a different table
This probably isn't a very nice question as its blending business logic with DB structure, but its not my decision so:
Is it possible to define a constraint the infers the value of one column (Table ...
0
votes
1answer
37 views
Excel Solver: Decision variables as absolute values
I am using the Excel 2010 solver to do some optimizations. Everything is running well except that I would like to run the solver to find a solution such that my decision variables, $A$1:$A$10, are ...
0
votes
2answers
36 views
How to treat unique constraint violations in a data migration script?
Here I'm trying to migrate some data from a table column to a brand new table in which destination column have an unique constraint. Basically I'm trying to:
INSERT INTO FooTable VALUES (SELECT ...
0
votes
0answers
38 views
Resetting dijit.form.dateTextBox constraints
I have a specific requirement. Where if i am selecting From date between 1st January to 31st May, i should not allow the user to select To Date after 31st May. But in case if i am selecting any date ...
0
votes
0answers
27 views
mysql change constraint name, how?
create table Foo(
userId bigint(20) not null,
KEY `Foo_userId` (`userId`),
CONSTRAINT `Foo_userId` FOREIGN KEY (`userId`) REFERENCES `User` (`id`)
);
How to change the Key/constraint name from ...
1
vote
0answers
40 views
Xcode constraints?
I am trying to understand and work with the constraint feature for Xcode. I can see how it can be really useful if you are a few views, since you can really specify how each one should align itself.
...
1
vote
0answers
34 views
Arbitrary user-defined constraints on database results
In a survey framework, where user input (ie "asking" survey questions, not answering them) is fairly trusted, my predecessor went with building a MySQL query pretty much straight from user-defined ...
2
votes
0answers
40 views
Polynomial Constrained Least Squares curve fitting with matlab
I want to fitted and draw a curve that constrained with below boundary condition:
diff (yfit)<=0
That yfit is polynomial fitted function in degree n.
The condition ensure that the polynomial ...
0
votes
1answer
149 views
iOS UITableView override autolayout constraints programatically after setTableHeaderView
Okey so this is my dilemma atm.
I have a storyboard with a UITableView (tableView) and UIView (viewForTableHeader) that contains several other objects like a UIImag a label and such.
Programatically ...



