Search
 
SCRIPT & CODE EXAMPLE
 

SQL

Patch Applied to the Oracle Database

-- For upto 11g
COLUMN action_time FORMAT A20
COLUMN action FORMAT A20

COLUMN version FORMAT A10
COLUMN comments FORMAT A30
COLUMN bundle_series FORMAT A10

SELECT TO_CHAR(action_time, 'DD-MON-YYYY HH24:MI:SS') AS action_time,
action,
 version, id, comments, bundle_series
FROM   sys.registry$history
ORDER by action_time;

--From 12c onwards
col action_time for a28
col action for a8
col version for a8
col comments for a30
col status for a10
set line 999 pages 999
select patch_id,  version, status, Action,Action_time from dba_registry_sqlpatch order by action_time;
Comment

PREVIOUS NEXT
Code Example
Sql :: how to create an SQL save method in ruby 
Sql :: ring get a list of tables inside the database using the odbc_tables() 
Sql :: get who is hired in month in sql 
Sql :: oracle test if 0 
Sql :: Second Step in installing SQL workbench 
Sql :: pl/ sql change currency 
Sql :: minecraft duping allowed servers 
Sql :: child row: a foreign key constraint fails 
Sql :: mysql set user password for a range of ips 
Sql :: which takes more space in a database a datetime or separate date and time columns? 
Sql :: hoq to import database source 
Sql :: restore backup 
Sql :: download mysql database to excel in android studio 
Sql :: select month from date in sql 
Sql :: syntac for creating view in dbbrowser 
Sql :: no query unable to fetch row sqlite 
Sql :: chAnge TABLE name apex oracle 
Sql :: find Overlapping sql 
Sql :: mysql et python 
Sql :: How to take sum of column with same id in "JPQL?" 
Sql :: for each row trigger postgresql 
Sql :: SQL Equal to Operator (=) 
Sql :: groupby sort sql hive 
Sql :: Join base on multiple and conditions 
Sql :: execute stored procedure without db set 
Sql :: connecting to my cloud sql server with c# 
Sql :: select-groups-of-row-only-having-specific-value 
Sql :: SQL Creating a Table to Store Date and Time 
Sql :: Reduce size of SQL server log file truncate - Source :NAYCode.com 
Sql :: including parameters in OPENQUERY 
ADD CONTENT
Topic
Content
Source link
Name
5+3 =