Search
 
SCRIPT & CODE EXAMPLE
 

SQL

redo files log oracle

-- Show log files
select * from v$logfile;
-- Load file
EXECUTE DBMS_LOGMNR.add_logfile('/path/to/file.log');
-- Start Session
EXECUTE DBMS_LOGMNR.START_LOGMNR(
  -- Add dictionary (if not, you will get sql's like "UNKNOWN"."OBJ# and HEXTORAW('45465f4748'))
  options => dbms_logmnr.dict_from_online_catalog
);
-- Check your file 
select * from v$logmnr_contents;
-- End session
EXECUTE DBMS_LOGMNR.end_logmnr();
Comment

PREVIOUS NEXT
Code Example
Sql :: sql statement to change a field value 
Sql :: create table postgresql 
Sql :: select into insert sql server 
Sql :: generate sql from specific migration ef core 
Sql :: symfony Integrity constraint violation: 1451 Cannot delete or update a parent row: a foreign key constraint fails 
Sql :: mysql updating multiple column values from array variable 
Sql :: add primary key to database sql 
Sql :: delete table in mysql 
Sql :: how-to-remove-mysql-root-password 
Sql :: mysql delete from where like 
Sql :: finish transaction sql 
Sql :: sql server check for value in multiple columns 
Sql :: return the number of records in a single table mysql 
Sql :: dublicate row sql 
Sql :: mysql unique constraint 
Sql :: sql server remove 0 from left 
Sql :: SQL Server OPENQUERY WITH result SETS 
Sql :: postgresql powershell query 
Sql :: sql if function 
Sql :: timestamp datatype in sql 
Sql :: coalesce function in sql server 
Sql :: Select All From A Table In A MySQL Database 
Sql :: oracle cpu metric 
Sql :: sum row in sql 
Sql :: sql store procedure 
Sql :: mysqli_free_result 
Sql :: How to take sum of column with same id and different table in SQL? 
Sql :: mysql dependency for spring boot 
Sql :: mysql varchar length 
Sql :: update query in sql 
ADD CONTENT
Topic
Content
Source link
Name
4+4 =