0% found this document useful (0 votes)
9 views

Mail

The document contains SQL queries for retrieving data from a specific partition of 'table56' based on various conditions. It also includes an update command for setting visibility in 'reportcolumn_master' and requests for the latest logs from a live environment. Additionally, it lists multiple queries to gather information from various tables related to job run details, upload status, and transactions.

Uploaded by

Saiful Islam
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views

Mail

The document contains SQL queries for retrieving data from a specific partition of 'table56' based on various conditions. It also includes an update command for setting visibility in 'reportcolumn_master' and requests for the latest logs from a live environment. Additionally, it lists multiple queries to gather information from various tables related to job run details, upload status, and transactions.

Uploaded by

Saiful Islam
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

1.

share below query output

select * from table56 PARTITION (SYS20250129) where T56C3 = 1


select * from table56 PARTITION (SYS20250129) where T56C3 = 6
select * from table56 PARTITION (SYS20250129) where T56C3 = 7
select * from table56 PARTITION (SYS20250129) where T56C3 = 8

select T56C3,T56C4,Count(TDR) from table56 PARTITION (SYS20250131) GROUP BY


T56C3,T56C4
select T56C3,T56C4,Count(TDR) from table56 PARTITION (SYS20250201) GROUP BY
T56C3,T56C4

2.Execute below Trace User


update reportcolumn_master set ISVISIBLE=1 where Channel = 1 and
Record_type='Unmatched';
COMMIT;

3.Please share the latest logs from LIVE

Run Below Query with Recon User

select * from all_scheduler_job_run_details where To_CHAR(ACTUAL_START_DATE,'MON-


RRRR') = 'JAN-2025' order by log_date desc;
select * from all_scheduler_job_run_details where To_CHAR(ACTUAL_START_DATE,'MON-
RRRR') = 'FEB-2025' order by log_date desc;

Run Below Query with TRACE User

select * from UploadStatus_count by Purge_Date desc;

select * from UploadCount_Unmatched by Purge_Date desc;

Select * from UploadStatus order by TxnsDate desc;

Select * from uploadstatus_purge order by Purge_Date desc;

select * from UploadStatusNetwork order by FileDate desc

Select * from UploadStatusEJ order by TxnsDate desc;

select .* from JOBLOGS;

select * from transactions order by create_date;

select * from user_tab_partitions;

select * from SOURCEDATASTATUS;

select * from dba_scheduler_jobs

You might also like