Find User who dropped table in teradata DB


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Find User who dropped table in teradata DB
# 1  
Old 11-17-2015
Find User who dropped table in teradata DB

HI Team

Is there a way to track which user dropped the table in Teradata ?
Please share the query or approach .

Thanks
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Records not dropped from UNIX Script

Hi All, As per my biz requirement, I need to drop the partition from our PROD table based on the retention period. Hence I have written the script and called the drop partition procedure within the script. The procedure is working fine and droped the partition from the table when I execute... (4 Replies)
Discussion started by: suresh_target
4 Replies

2. News, Links, Events and Announcements

MySQL dropped in favor of MariaDB

Fedora and openSUSE will replace MySQL with MariaDB: Oracle who? Fedora & openSUSE will replace MySQL with MariaDB | ZDNet The article also has a comment that Chakra is planning on doing the same. No doubt the Fedora based distributions are planning to do the same. (7 Replies)
Discussion started by: figaro
7 Replies

3. Shell Programming and Scripting

Find highest records in table

Dear All, I have table files with different measurements for the same sensors. The first column indicate the sensor (7 different sensors and 16 measurements in the example below). I would like to find the best measurement for each sensor. The best measurement is determined by the higher value of... (10 Replies)
Discussion started by: GDC
10 Replies

4. Ubuntu

System chrashe , dropped into Busybox

This is the mistake that i've done : First of all go to /etc/apt/sources.list folder from terminal or using file manager ... than copy the content of sources.list in to your adequate source.list. Create a file named sources.list.bt and paste the same content In the end open the... (0 Replies)
Discussion started by: dud3
0 Replies

5. Shell Programming and Scripting

Number of processes per each user in a table

Hello guys, what i want to do is to print a table with two columns (user :: #procs) on the stdout. The first column should show the users and the second one the number of processes the respective user runs. I think I need something like the count() - function in sql, don't i? Shell: Bash ... (2 Replies)
Discussion started by: tiptop
2 Replies

6. SuSE

Recover dropped database

I have deleted a database. I restored it again with a backup. Now we lost some data of two days. Is it possible to restore this lost data? (5 Replies)
Discussion started by: Eastme
5 Replies

7. UNIX for Dummies Questions & Answers

are dropped packets a sign of network problem?

in a xen environment , i see a lot op dropped packets via netstat -i Is this a sign of network problems, or is it normal to see this kind of numbers? i'm not sure how to interprete the data. is this normal, bad, critical. What are your stats on this? I guess i have a xen issue of some sort,... (1 Reply)
Discussion started by: progressdll
1 Replies
Login or Register to Ask a Question
DROP 
TRIGGER(7) SQL Commands DROP TRIGGER(7) NAME
DROP TRIGGER - remove a trigger SYNOPSIS
DROP TRIGGER name ON table [ CASCADE | RESTRICT ] INPUTS name The name of an existing trigger. table The name (optionally schema-qualified) of a table. CASCADE Automatically drop objects that depend on the trigger. RESTRICT Refuse to drop the trigger if there are any dependent objects. This is the default. OUTPUTS DROP TRIGGER The message returned if the trigger is successfully dropped. ERROR: DropTrigger: there is no trigger name on relation "table" This message occurs if the trigger specified does not exist. DESCRIPTION
DROP TRIGGER will remove an existing trigger definition. To execute this command the current user must be the owner of the table for which the trigger is defined. EXAMPLES
Destroy the if_dist_exists trigger on table films: DROP TRIGGER if_dist_exists ON films; COMPATIBILITY
SQL92 There is no DROP TRIGGER statement in SQL92. SQL99 The DROP TRIGGER statement in PostgreSQL is incompatible with SQL99. In SQL99, trigger names are not local to tables, so the command is simply DROP TRIGGER name. SEE ALSO
CREATE TRIGGER [create_trigger(7)] SQL - Language Statements 2002-11-22 DROP TRIGGER(7)