SQL> SELECT * FROM (
2 SELECT sequence#, archived, applied,
3 TO_CHAR(completion_time, 'RRRR/MM/DD HH24:MI') AS completed
4 FROM sys.v$archived_log
5 ORDER BY sequence# DESC)
6 WHERE ROWNUM <= 10
7 /
SEQUENCE# ARCHIVED APPLIED COMPLETED
---------- -------- ------- ----------------
11211 YES NO 2004/09/16 09:30
11210 YES YES 2004/09/16 09:00
11209 YES YES 2004/09/16 08:30
11208 YES YES 2004/09/16 08:00
11207 YES YES 2004/09/16 07:30
11206 YES YES 2004/09/16 07:00
11205 YES YES 2004/09/16 06:30
11204 YES YES 2004/09/16 06:30
11203 YES YES 2004/09/16 06:30
11202 YES YES 2004/09/16 06:00
10 rows selected.
Got this during the execution of following command in R > dat Error: could not find function "read.xlsx" Tried following command > install.packages("xlsx", dependencies = TRUE) Installing package into ‘C:/Users/amajumde/Documents/R/win-library/3.2’ (as ‘lib’ is unspecified) also installing the dependencies ‘rJava’, ‘xlsxjars’ trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.2/rJava_0.9-8.zip' Content type 'application/zip' length 766972 bytes (748 KB) downloaded 748 KB trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.2/xlsxjars_0.6.1.zip' Content type 'application/zip' length 9485170 bytes (9.0 MB) downloaded 9.0 MB trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.2/xlsx_0.5.7.zip' Content type 'application/zip' length 400968 bytes (391 KB) downloaded 391 KB package ‘rJava’ successfully unpacked and MD5 sums checked package ‘xlsxjars’ successfully unpacked ...
Comments