1.what is activity count?
2.what is skew factor?
how it's working explain brefily
Answer Posted / yuvaevergreen
1. >> activity count indicates the no of rows affected/processed by the last request(no of rows returned to bteq from teradata).
2. >> skewness refers to the distribution of rows on the amps.
>> If some AMPs are having more rows and some very less, then skewness would be high. This would affect the parallelism.
3. Following query gives the skewness for all tables.
SELECT ts.DatabaseName
,ts.TableName
,td.CreateTimeStamp AS Created
,td.LastAlterTimeStamp AS LastAltered
,td.AccessCount
,td.LastAccessTimeStamp AS LastAccess
,SUM(ts.CurrentPerm) AS CurrentPerm
,SUM(ts.PeakPerm) AS PeakPerm,
(100 - (AVG(ts.CurrentPerm)/MAX(ts.CurrentPerm)*100)) AS SkewFactor
FROM DBC.TableSize ts
JOIN DBC.Tables td
ON ts.DatabaseName = td.DatabaseName
AND ts.TableName = td.TableName
GROUP BY 1,2,3,4,5,6;
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
Which is more efficient group by or distinct to find duplicates?
Hi Friends, Please send me Teradata Materials for certifications Thanks in advance !!
What is the meaning of Caching in Teradata?
What is teradata and why it is used?
What are the joins in teradata?
Explain the term 'columns' related to relational database management system?
What is node? How many nodes and amps used in your previous project?
What is the use of stored procedures in teradata?
Explain teradata utilities?
Backup Script was blocked you are unable to archive the data now. how do you analyze it and where do you identify ?
How teradata makes sure that there are no duplicate rows being inserted when its a set table?
What are the available primary index types?
What are the main components of teradata system?
During the Display time, how is the sequence generated by Teradata?
What is called partitioned primary index (ppi)?