Book Image

Teradata Cookbook

By : Abhinav Khandelwal, Viswanath Kasi, Rajsekhar Bhamidipati
Book Image

Teradata Cookbook

By: Abhinav Khandelwal, Viswanath Kasi, Rajsekhar Bhamidipati

Overview of this book

Teradata is an enterprise software company that develops and sells its eponymous relational database management system (RDBMS), which is considered to be a leading data warehousing solutions and provides data management solutions for analytics. This book will help you get all the practical information you need for the creation and implementation of your data warehousing solution using Teradata. The book begins with recipes on quickly setting up a development environment so you can work with different types of data structuring and manipulation function. You will tackle all problems related to efficient querying, stored procedure searching, and navigation techniques. Additionally, you’ll master various administrative tasks such as user and security management, workload management, high availability, performance tuning, and monitoring. This book is designed to take you through the best practices of performing the real daily tasks of a Teradata DBA, and will help you tackle any problem you might encounter in the process.
Table of Contents (19 chapters)
Title Page
Dedication
Packt Upsell
Contributors
Preface
Index

Creating a TASM exception


To maintain system availability at an optimal level all the time, TASM provides various tools to accomplish it. We have filters defined to block any request from coming onto the system, throttles to limit the number of requests coming onto the system, and then we have exceptions on the system. Exceptions are used to control any active work on the system. Once a query is active, there should be some way to control it; this is where exceptions come into play. 

Exceptions make sure that any request/query that is active on the system is controlled, and if at any step it crosses the threshold, it needs to be controlled, as a query has many steps and sometimes till run time we don't know actual resource consumption of the request. But once it starts consuming resources, it needs to be monitored.

Using exception processing, TASM can detect when an individual query crosses a defined threshold so that a targeted action can be taken with regards to the request. 

In this recipe...