can we join volatile table with general table an global
temporary table with general table
?
Answer Posted / rkraju
yes we can join volatile to general table;
>> first we create volatile table
syntax:
create volatile table vt1(x int,y int)on commit preserve rows;
>> we can create general table
syntax:
create table t1(x int,y int,z int);
>>now we can join volatile table and general table
Eg:
select a.x,b.x from vt1 a,t1 b where a.x=b.x;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is meant by Teradata Gateway?
What is the use of fallback?
What is node? How many nodes and amps used in your previous project?
What is teradata? Also, list out some of the primary characteristics of teradata.
What are the various etl tools in the market?
What is TPD?
What are the functions involved in shared information architecture?
what are the day to day activities of teradata DBA ?
What does sleep function does in fast load?
How many codd's rules are satisfied by teradata database?
Describe primary index in teradata. And what are the available primary index types?
How will you solve the problem that occurs during update?
What are the various indexes in teradata? How to use them? Why are they preferred?
Let us say there is a file that consists of 100 records out of which we need to skip the first and the last 20 records. What will the code snippet?
Discuss the advantages of using partitioned primary index in a query?