Please tell me a query to find the Primary key,Foreign
key,primary Index,PPI for the Database?
Answer Posted / innocent
Hi Parsad,
I hope by running below query you'll get many part of your
answer.
_----------------------------------------------------------_
Select DatabaseName, TableName ,columnName,
Case When IndexType='K' Then 'Primary Key'
When IndexType='S' Then 'Secondary Index'
When IndexType='P' Then 'Primary Index'
When IndexType='Q' Then 'PPIndex'
When IndexType='J' Then 'Join Index'
End as implimented_Index
From DBC.Indices
Where TableName in
( Select distinct TableName
From DBC.Tablesize
Where DatabaseName <>'DBC'
And
CurrentPerm>0
)
Order by 1,2,3
_
Innocent
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
What is the difference between global temporary tables and volatile temporary tables?
What is dimensional modeling?
What are default access rights in teradata?
In BTEQ, how are the session-mode parameters being set?
What is the use of stored procedures in teradata?
What are the various indexes in teradata? How to use them?
Discuss the advantages of using partitioned primary index in a query?
What's the difference between timestamp (0) and timestamp (6)?
What is collect statistics?
Explain the term 'database' related to relational database management system?
What are the design features involved in teradata?
What are the various indexes in teradata?
What does Amp contain and what are all the operations that it performs?
What do you mean by teradata intelliflex?
What is meant by a dispatcher?