what is referential constraints?how do you implement RI in
teradata?
Answers were Sorted based on User's Feedback
Answer / tdguy
Referential Integrity is based upon how Primary and Foreign
keys are defined. Because of this rule, a referenced column
must be a Primary Key or must be Unique and Not Null. Using
create or alter statement, FK can be created.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / yuvaevergreen
Referential constraints define a relationship between two or
more attributes between two tables. RI can be implemented
between two tables using FOREIGN KEY option in create table.
FOREIGN KEY (b) REFERENCES WITH NO CHECK OPTION tb1(a));
CHECK or NO CHECK option can be used.
CHECK option - batch RI constraint.
| Is This Answer Correct ? | 3 Yes | 0 No |
Highlight a few of the advantages that ETL tools have over Teradata.
What is meant by MATCHTAG in multiload utility?
Give the sizes of SMALLINT, BYTEINT and INTEGER.
Hello all, There is a table with 4 columns in that 3 columns has been already loaded with 5 million records.4th column is empty,Now I have got 5 million records data which has to be loaded into 4th column.How can I load this data fastly in to the 4th column with out using update
I Have Name field in a Table Name ------------- abcde;fgh;ijk; abc;def;jklm;no I want to write a sql to display name field data with out ';'.so i want to replace ; with '' how will write in Teradata
how do you handle ET and UV errors ?
How to run a query in teradata?
How to relege locks in fastload and multiload? example?
What is the use of stored procedures in teradata?
What is meant by a node?
How to write the query . eid enm doj dob i want to display the names who worked more than 25 years .
List out all forms of LOCKS that are available in Teradata.