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 difference between user and database in teradata?
What are aggregate tables? How do you design them using teradata?
What are normalization, first normal form, second normal form and third normal form?
Briefly explain each of the following terms related to relational database management system (rdbms) – database, tables, columns, row, primary key and foreign key.
What is the command in bteq to check for session settings ?
What does sleep function does in fast load?
How do you see a ddl for an existing table?
What is the particular designated level at which a LOCK is liable to be applied in Teradata?
What are some commonly used bteq scripts?
How does hashing happens in teradata?
What are the different design perspectives used in teradata?
Describe primary index in teradata. And what are the available primary index types?
How many sessions of MAX is PE capable of handling at a particular time?
Explain the term 'primary key' related to relational database management system?
Explain teradata architecture in detail with a diagram.