Вы находитесь на странице: 1из 10

4/6/2017 Oracle 11g New Features

Yusata Infotech Blogs  Bringing Technology … search

Classic  Flipcard  Magazine  Mosaic  Sidebar  Snapshot  Timeslide

Implementing Multiple T…
Oracle 11g New Features
StringJoiner Class
Feature­1
Control l i ng  Mul ti pl e  Tri ggers 
Image Switcher In Android
Orac le  allows   more  t han  one  t rigger  t o  be  c reat ed  f or  t he  s ame  t iming
point ,   but   it   has   nev er  guarant eed  t he  ex ec ut ion  order  of   t hos e
Oracle 11g New Features t riggers .   The  Orac le  11g  t rigger  s y nt ax   now  inc ludes   t he  FOLLOWS
c laus e  t o  guarant ee  ex ec ut ion  order  f or  t riggers   def ined  wit h  t he  s ame
t iming  point .   The  f ollowing  ex ample  c reat es   a  t able  wit h  t wo  t riggers
NSLayoutConstraints Pr…
f or  t he  s ame  t iming  point .

Use of XStream in Java
CREATE TABLE trigger_follows_test ( 
id NUMBER, 
WebView in Android description VARCHAR2(50) 
); 

REGULAR EXPRESION…
CREATE OR REPLACE TRIGGER trigger_follows_test_trg_1 
BEFORE INSERT ON trigger_follows_test 
Android Text To Speech FOR EACH ROW 
BEGIN 
DBMS_OUTPUT.put_line('TRIGGER_FOLLOWS_TEST_TRG_1 ‐ Executed');
AWR Report Advance
END; 

Build your own languag…
CREATE OR REPLACE TRIGGER trigger_follows_test_trg_2 
BEFORE INSERT ON trigger_follows_test 
Generate Alarm as Spec…
FOR EACH ROW 
FOLLOWS trigger_follows_test_trg_1
TYPE Object In ORACLE BEGIN 
DBMS_OUTPUT.put_line('TRIGGER_FOLLOWS_TEST_TRG_2 ‐ Executed');
END; 
Android Here map Adva…

UIPageController in swift
Feature­2
Oracle Transaction E NABLE   &  DI S ABLE   TRI GGE RS
A bout :   P rior  t o  11g  it   was   only   pos s ible  t o  c reat e  t riggers   in  t he
enabled  s t at e, t hen  s ubs equent ly   dis able  t hem  us ing  A LTE R  TA B LE   or
Lambda Expression in J… A LTE R  TRI GGE R  c ommands .   Now  t hey   c an  be  ex plic it ly   enabled  or
dis abled  at   c reat ion  t ime,   wit h  t he  enabled  s t at e  as   t he  def ault .
Android Here map A dv ant age:   Wit h  t his   f eat ure,   we  c an  c ont rol  t he  t rigger  ex ec ut ion
us ing  t he  k ey words   E NA B LE   and  DI S A B LE .   E nable  is   t he  def ault
opt ion.   We  c an  dis able  a  t rigger  while  c reat ing  it   on  a  t able  and  c an
Fetching data from sour… be  enable  when  ev er  want ed  t o  implement / ex ec ut e  t he  t rigger

Dynamic Views theme. Powered by Blogger.
Reclaim space used by …
http://aboutyusata.blogspot.in/2017/03/oracle­11g­new­features.html 1/10
4/6/2017 Oracle 11g New Features
Reclaim space used by …
v alidat ion  c ode.

Yusata Infotech Blogs
Storing images in datab…
S t ep1:   Creat e  a  t able
  Bringing Technology … search

CREATE TABLE trigger_control_test ( 
Classic  Flipcard  Magazine  Mosaic id NUMBER, 
Post on Facebook
Sidebar  Snapshot  Timeslide
description VARCHAR2(50) 
Implementing Multiple T… ); 
Multipeer Connectivity in…

StringJoiner Class E nabl e  Tri gger   


Introduction to Backup S t ep2:   Creat e  enable  t rigger  on  t he  t able

Image Switcher In Android
Insert Image In Excel Sh… CREATE OR REPLACE TRIGGER trigger_control_test_trg 
BEFORE INSERT ON trigger_control_test 
Oracle 11g New Features FOR EACH ROW 
Global Temporary Table …
ENABLE 
NSLayoutConstraints Pr… BEGIN 
Registration process usi… DBMS_OUTPUT.put_line('TRIGGER_CONTROL_TEST_TRG ‐ Executed');
END; 
Use of XStream in Java / 
Excel Creation Using Ap…

WebView in Android
Container View Controll… S t ep3:   I ns ert   dat a  int o  t he  t able  t o  t es t   t he  t rigger  ex ec ut ion  s inc e
t he  t rigger  c reat ed  as   enable
REGULAR EXPRESION…
Android working with Re…
SQL> SET SERVEROUTPUT ON 
Android Text To Speech
Internationalizatio… 1
SQL> INSERT INTO trigger_control_test VALUES (1, 'ONE'); 
TRIGGER_CONTROL_TEST_TRG ‐ Executed 
AWR Report Advance
Create PDF using iText l… 1 row created. 

Build your own languag…
External Table in Oracle
Di sabl e  Tri gger 
Generate Alarm as Spec… S t ep1:   Creat e  dis able  t rigger  on  t he  t able
Reflection in java 1

TYPE Object In ORACLE CREATE OR REPLACE TRIGGER trigger_control_test_trg 
Gallery App in Android BEFORE INSERT ON trigger_control_test 
FOR EACH ROW 
Android Here map Adva…
Audio recording in iOS u… DISABLE 
BEGIN 
UIPageController in swift DBMS_OUTPUT.put_line('TRIGGER_CONTROL_TEST_TRG ‐ Executed');
How to recreate a contro… END; 

Oracle Transaction
Swipe action for U… 1

Lambda Expression in J… Feature­3
Signal strength in Android
Com pound  Tri gger 
Android Here map Orac le  11g  int roduc es   Compound  Triggers   t o  deal  wit h  mult iple
Register a report using … problems .   B eing  only   a  DML  t riggers ,   it   not   only   it   s av es   lot   of   c ode
writ ing,   but   als o  res olv es   t he  is s ue  where  s ame  s et   of   s es s ion
Fetching data from sour… v ariables   s hare  c ommon  dat a  and  t he  f amous   mut at ing  t able
Spring JDBC Template
error(ORA ­04091).   I n  c ompound  t rigger  logic ,   all  t iming  point   logic s
Dynamic Views theme. Powered by Blogger.
Reclaim space used by …
http://aboutyusata.blogspot.in/2017/03/oracle­11g­new­features.html 2/10
4/6/2017 Oracle 11g New Features
Reclaim space used by …
Content share on… 1 are  c lubbed  in  one  s ingle  body.   A s   s hown  in  t he  below  s y nt ax ,   order

Yusata Infotech Blogs
Storing images in datab…
of   t iming  point s   mus t   be  ret ained.
  Bringing Technology … search
Activating GPS directly
CREATE TRIGGER trigger_name 
Classic  Flipcard  Magazine  Mosaic FOR [INSERT | UPDATE | DELETE] OF [COLUMN] ON [TABLE] 
Post on Facebook
Sidebar  Snapshot  Timeslide
Steps to Setup Oracle C… COMPOUND TRIGGER 
Implementing Multiple T… BEFORE STATEMENT IS 
Multipeer Connectivity in…
Internationalization Usin… BEGIN 
... 
StringJoiner Class
Introduction to Backup END BEFORE STATEMENT; 
Create table using Liqui… BEFORE EACH ROW IS 
Image Switcher In Android BEGIN 
Insert Image In Excel Sh…
Using JPA to store data i…
... 
Oracle 11g New Features
Global Temporary Table … END BEFORE EACH ROW; 
Show and hide passwor… AFTER EACH ROW IS 
NSLayoutConstraints Pr… BEGIN 
Registration process usi…
Bridging Header
... 
Use of XStream in Java
Excel Creation Using Ap… END AFTER EACH ROW; 
Shifting Map Under Mar… AFTER STATEMENT IS 
WebView in Android BEGIN 
Container View Controll…

... 
REGULAR EXPRESION…
Android working with Re… END AFTER STATEMENT; 

Android Text To Speech END; 
Internationalizatio… 1

AWR Report Advance Feature­4
Create PDF using iText l… Read  Onl y  Tabl es   
I n  Orac le  11g,   a  t able  c an  be  s et   RE A D  ONLY   mode  t o  res t ric t   writ e
Build your own languag…
External Table in Oracle operat ions   on  t he  t able.   A   t able  c an  be  alt ered  t o  t oggle  ov er  RE A D
ONLY   and  RE A D  WRI TE   modes .   Ref er  E x ample  c ode  (3)  and  (4).
Generate Alarm as Spec…
Reflection in java 1
SQL> ALTER TABLE EMP READ ONLY; 
TYPE Object In ORACLE SQL> ALTER TABLE EMP READ WRITE; 
Gallery App in Android

Feature­5
Android Here map Adva…
Audio recording in iOS u… New  data  types
Orac le  11g  has   des igned  a  new  dat a  t y pe  S I MP LE _I NTE GE R,
UIPageController in swift S I MP LE _FLOAT,   and  S I MP LE _DOUB LE   k eeping  in  v iew  t he  hardware
How to recreate a contro…
requirement s   and  ex pec t at ions   wit h  an  I nt eger  v alue.   They   are
c ompat ible  wit h  t he  nat iv e  c ompilat ion  f eat ure  of   Orac le  11g,   whic h
Oracle Transaction
Swipe action for U… 1 mak es   s upport s   t heir  f as t er  implement at ion.
S I MP LE _I NTE GE R  res t ric t s   NULL  v alues   and  prov ide  number  range
Lambda Expression in J… f rom  ­2147483648  t o  2147483647.   S imilarly,   t he  ot her  t wo  dat a  t y pes
Signal strength in Android
av oid  NULL  c hec k   and  dat a  ov erf low  c hec k s ,   t hereby   enhanc ing
perf ormanc e  t o  a  not able  ex t ent .
Android Here map
Register a report using …
Feature­6
Fetching data from sour… Nati ve  Dynam i c  S QL  enhancem ents
Spring JDBC Template Orac le  11g  s aw  t hrough  mult iple  c hanges   in  Dy namic   S QL
implement at ion.   Few  of   t hem  are  lis t ed  below.  
Dynamic Views theme. Powered by Blogger.
Reclaim space used by …
http://aboutyusata.blogspot.in/2017/03/oracle­11g­new­features.html 3/10
4/6/2017 Oracle 11g New Features
Reclaim space used by …
Content share on… 1 E X E CUTE   I MME DI ATE ,   DB MS _S QL. PA RS E ()  and  Ref   Curs ors   c an

Yusata Infotech Blogs
Storing images in datab…
ac c ept   S t ring  S E LE CT  s t at ement s   as   CLOB .   This   lif t s   t he  32k b
  Bringing Technology … search
s iz ing  res t ric t ions   f rom  S QL  s t at ement s   t o  be  dy namic ally   ex ec ut ed.
Activating GPS directly
DB MS _S QL  c urs or  and  a  Ref   c urs or  are  int er  c onv ert ible.
Classic  Flipcard  Magazine  Mosaic  Sidebar  Snapshot  Timeslide
Post on Facebook Feature­7
Steps to Setup Oracle C…
Use  conti nue  statem ent
Implementing Multiple T…
Multipeer Connectivity in… Mos t   programming  languages   hav e  mult iple  c ont rol  c ommands   t hat
Internationalization Usin… enable  us   t o  c ont rol  program­f low  wit hin  a  loop.   P L/ S QL  has
StringJoiner Class s upport ed  t he  GOTO  and  E X I T  s t at ement s   f or  many   y ears ,   but   in  11g,
Introduction to Backup Orac le  has   added  t he  CONTI NUE   s t at ement .   This   s t at ement   enables
Create table using Liqui…
us   t o  t erminat e  t he  c urrent   it erat ion  of   a  loop  and  ret urn  t o  t he  s t art
Image Switcher In Android
Insert Image In Excel Sh… of   t he  nex t   c y c le.
Using JPA to store data i… The  eas ies t   way   t o  unders t and  t he  CONTI NUE   s t at ement   is   by
Oracle 11g New Features ex ample.   We  will  begin  by   c oding  a  s imple  FOR  loop  wit h  f iv e
Global Temporary Table … it erat ions .   A t   t he  end  of   eac h  it erat ion  we  will  out put   a  mes s age,   but
Show and hide passwor…
on  t he  ev en­numbered  it erat ions ,   we  will  s k ip  t o  t he  s t art   of   t he  nex t
NSLayoutConstraints Pr…
Registration process usi… it erat ion.
Bridging Header
Use of XStream in Java E x ample  1
Excel Creation Using Ap…
Shifting Map Under Mar…
BEGIN 
WebView in Android
Container View Controll… FOR i IN 1 .. 5 LOOP 
CONTINUE WHEN i IN (2,4); 
REGULAR EXPRESION… DBMS_OUTPUT.PUT_LINE('Reached on line ' || TO_CHAR(i)); 
Android working with Re… END LOOP; 
END; 
Android Text To Speech
Internationalizatio… 1 / 

AWR Report Advance
Create PDF using iText l…
E x ample  2

Build your own languag…
External Table in Oracle
BEGIN 
Generate Alarm as Spec… < < main_loop > > 
Reflection in java 1 FOR i IN 1 .. 5 LOOP 
DBMS_OUTPUT.PUT_LINE('Starting main_loop ' || i || '...');
TYPE Object In ORACLE
Gallery App in Android
< < inner_loop > > 
FOR ii IN 1 .. 5 LOOP 
Android Here map Adva… CONTINUE main_loop WHEN i IN (2,4); 
Audio recording in iOS u… CONTINUE inner_loop WHEN ii NOT IN (1,2,3); 
DBMS_OUTPUT.PUT_LINE('   Inner loop ' || i || '.' || ii); 
UIPageController in swift
How to recreate a contro…
END LOOP; 
END LOOP; 
Oracle Transaction END; 
Swipe action for U… 1 / 

Lambda Expression in J…
Signal strength in Android
Use  conti nue  when  statem ent
Android Here map When  a  CONTI NUE ­WHE N  s t at ement   is   enc ount ered,   t he  c ondit ion  in
Register a report using …
t he  WHE N  c laus e  is   ev aluat ed.   I f   t he  c ondit ion  is   t rue,   t he  c urrent
it erat ion  of   t he  loop  c omplet es   and  c ont rol  pas s es   t o  t he  nex t
Fetching data from sour…
Spring JDBC Template it erat ion.   The  prev ious   ex ample  c an  be  alt ered  as   in  t he  f ollowing
c ode:Dynamic Views theme. Powered by Blogger.
Reclaim space used by …
http://aboutyusata.blogspot.in/2017/03/oracle­11g­new­features.html 4/10
4/6/2017 Oracle 11g New Features
Reclaim space used by …
Content share on… 1
DECLARE  
Yusata Infotech Blogs
Storing images in datab…   Bringing Technology …
x NUMBER := 0;   search
Activating GPS directly BEGIN  
LOOP ‐‐ After CONTINUE statement, control resumes here  
Classic  Flipcard  Magazine  Mosaic  Sidebar  Snapshot  Timeslide
Post on Facebook DBMS_OUTPUT.PUT_LINE ('Inside loop: x = ' || TO_CHAR(x)); 
Steps to Setup Oracle C…
x := x + 1;  
Implementing Multiple T… CONTINUE WHEN x < 3;  
Multipeer Connectivity in…
Internationalization Usin…
StringJoiner Class DBMS_OUTPUT.PUT_LINE ('Inside loop, after CONTINUE: x = ' || TO_C
Introduction to Backup EXIT WHEN x = 5;  
Create table using Liqui…
END LOOP;  
Image Switcher In Android DBMS_OUTPUT.PUT_LINE (' After loop: x = ' || TO_CHAR(x)); 
Insert Image In Excel Sh…
Using JPA to store data i… END;  
Oracle 11g New Features
Global Temporary Table …
Show and hide passwor…
Feature­8
NSLayoutConstraints Pr…
Registration process usi… Vi rtual   col um ns  i n  11g 
Bridging Header Orac le  has   s upport ed  s t ored  ex pres s ions   f or  many   y ears ,   in  v iews
Use of XStream in Java and  f unc t ion­bas ed  index es .   Mos t   c ommonly,   v iews   enable  us   t o
Excel Creation Using Ap…
Shifting Map Under Mar…
s t ore  and  modularis e  c omput at ions   and  ex pres s ions   bas ed  on  t heir
underly ing  t ables '  c olumns .   I n  more  rec ent   v ers ions   (s inc e  around  t he
WebView in Android
Container View Controll… 8i  t imef rame),   we  hav e  been  able  t o  index   ex pres s ions   us ing  f unc t ion­
bas ed  index es .   Now,   wit h  t he  releas e  of   11g,   Orac le  enables   us   t o
REGULAR EXPRESION… s t ore  ex pres s ions   direc t ly   in  t he  bas e  t ables   t hems elv es   as   v irt ual
Android working with Re…
c olumns .
A s   we  will  s ee  in  t his   art ic le,   v irt ual  c olumns   are  more  f lex ible  t han
Android Text To Speech
Internationalizatio… 1 any   of   t heir  prior  alt ernat iv es .   We  will  ex amine  t heir  bas ic   us age  and
als o  c ons ider  s ome  of   t he  perf ormanc e  as pec t s   of   t he  new  f eat ure.
AWR Report Advance
Create PDF using iText l…
CREATE TABLE t 
Build your own languag… ( n1 INT 
External Table in Oracle , n2 INT 
, n3 INT GENERATED ALWAYS AS (n1 + n2) VIRTUAL 
Generate Alarm as Spec… ); 
Reflection in java 1

TYPE Object In ORACLE Feature­9:
Gallery App in Android
Use  Transacti on  Com m ands  (com m i t, rol l back, savepoi nt)  wi thi n
Android Here map Adva…
Tri gger 
Audio recording in iOS u… To  us e  t rans ac t ion  c ommand  wit h  in  t rigger  we  hav e  t o  dec lare   
P RA GMA   A UTONOMOUS _TRA NS A CTI ON  in  dec lare  bloc k .  
UIPageController in swift t hen  we  c an  us e  rollbac k ,   c ommit   s t at ement   wit h  in  t rigger.
How to recreate a contro…

Oracle Transaction CREATE OR REPLACE TRIGGER EMP_TRIG
Swipe action for U… 1
BEFORE INSERT 
ON EMP 
Lambda Expression in J…
Signal strength in Android FOR EACH ROW 
DECLARE 
Android Here map PRAGMA AUTONOMOUS_TRANSACTION; 
Register a report using …
BEGIN 
:NEW.EMP_ID :=EMP_SEQ.NEXTVAL; 
Fetching data from sour…
Spring JDBC Template :NEW.J_DATE := SYSDATE; 
IF  :NEW.STATUS='A' 
Dynamic Views theme. Powered by Blogger.
Reclaim space used by …
http://aboutyusata.blogspot.in/2017/03/oracle­11g­new­features.html 5/10
4/6/2017 Oracle 11g New Features
Reclaim space used by …
Content share on… 1 THEN 

Yusata Infotech Blogs
Storing images in datab…
COMMIT; 
ELSE  
  Bringing Technology … search
Activating GPS directly
ROLLBACK; 
Classic  Flipcard  Magazine  Mosaic END IF; 
Post on Facebook Sidebar  Snapshot  Timeslide
Steps to Setup Oracle C… END; 
Implementing Multiple T…
Multipeer Connectivity in…
Internationalization Usin… Feature­10:
E nhanced  TRUNCATE   S tatem ent 
StringJoiner Class
Introduction to Backup DROP   A LL  S TORA GE   is   a  new  opt ion  added  t o  TRUNCATE   s t at ement
Create table using Liqui… in  Orac le  11g  R2.   I t   drops   t he  whole  s egment .   I n  addit ion  t o  t he
Image Switcher In Android TRUNCATE   TA B LE   s t at ement ,   DROP   A LL  S TORA GE   als o  applies   t o
Insert Image In Excel Sh…
Using JPA to store data i… t he  A LTE R  TA B LE   TRUNCATE   (S UB )PA RTI TI ON  s t at ement .
Oracle 11g New Features
Global Temporary Table … TRUNCATE TABLE  DROP ALL STORAGE; 
Show and hide passwor…
NSLayoutConstraints Pr…
Registration process usi… Feature­11: 
Bridging Header
Droppi ng  Unused  Obj ect  S torage
Use of XStream in Java I n  Orac le  Dat abas e  11g  releas e  2  (11. 2. 0. 2),   t he
Excel Creation Using Ap…
Shifting Map Under Mar… DB MS _S PA CE _A DMI N. DROP _E MP TY _S E GME NTS   proc edure
WebView in Android enables   y ou  t o  drop  s egment s   f or  empt y   t ables   and  part it ions   t hat
Container View Controll… hav e  been  migrat ed  f rom  prev ious   releas es .   ­­  t o  drop  empt y
s egment s   f rom  ev ery   t able  in  t he  dat abas e:
REGULAR EXPRESION…
Android working with Re…
BEGIN  
Android Text To Speech DBMS_SPACE_ADMIN.DROP_EMPTY_SEGMENTS();  
Internationalizatio… 1
END;  
‐‐ to drop empty segments from the HR.EMPLOYEES table  
AWR Report Advance
Create PDF using iText l… ‐‐ including dependent objects  
BEGIN  
Build your own languag… DBMS_SPACE_ADMIN.DROP_EMPTY_SEGMENTS(  
External Table in Oracle
schema_name => 'HR',  
table_name => 'EMPLOYEES');  
Generate Alarm as Spec…
Reflection in java 1 END;  

TYPE Object In ORACLE
Gallery App in Android Feature­12:
P erform ance  Tuni ng  usi ng  P L/ S QL  Nati ve  Com pi l ati on 
Android Here map Adva… Nat iv e  c ompilat ion  is   t he  proc es s   by   whic h  a  s t ored  P L/ S QL  program
Audio recording in iOS u… is   c ompiled  int o  nat iv e  c ode  t hat   does   not   need  t o  be  int erpret ed  at
runt ime.
UIPageController in swift
How to recreate a contro… Nat iv ely   c ompiled  c ode  does   not   need  t o  be  int erpret ed  at   runt ime,
t he  ex pec t at ion  is   t hat   it   will  ex ec ut e  f as t er.   Howev er,   t he  nat iv e
Oracle Transaction c ompilat ion  only   applies   t o  t he  proc edural  c ode  in  a  P L/ S QL  program
Swipe action for U… 1 unit ,   not   any   embedded  S QL  s t at ement s .   A s   a  res ult ,   t he
perf ormanc e  gains   t o  be  realiz ed  really   depend  upon  how  muc h
Lambda Expression in J…
Signal strength in Android proc edural  c ode  ex is t s   in  relat ion  t o  S QL  c ode.   A t   a  bare  minimum,   a
nat iv ely   c ompiled  program  unit   t hat   is   S QL  heav y   s hould  ex ec ut e  at
Android Here map leas t   as   f as t   as   it s   non­nat iv ely   c ompiled  c ount erpart .   A s   t he  v olume
Register a report using … of   proc edural  c ode  inc reas es ,   t he  f as t er  t he  nat iv ely   c ompiled  c ode
s hould  be.
Fetching data from sour…
Spring JDBC Template The  P L/ S QL  c ompiler  may   now  generat e  proc es s or­s pec if ic   nat iv e
c ode  direc t ly   f rom  t he  P L/ S QL  s ourc e  c ode  wit hout   needing  t o  us e  a
Dynamic Views theme. Powered by Blogger.
Reclaim space used by …
http://aboutyusata.blogspot.in/2017/03/oracle­11g­new­features.html 6/10
4/6/2017 Oracle 11g New Features
Reclaim space used by …
Content share on… 1 t hird­part y   C  c ompiler  and,   as   in  Orac le  10g,   s t ores   t he  c ode  in  t he

Yusata Infotech Blogs
Storing images in datab…
dat abas e  c at alog.   When  a  unit   is   needed,   t he  Orac le  ex ec ut able  loads
  Bringing Technology … search
t he  c ode  direc t ly   f rom  t he  c at alog  int o  memory,   wit hout   f irs t   s t aging
Activating GPS directly
t he  unit   t hrough  a  . DLL  or  . s o  f ile.   This   leads   t o  t he  f ollowing
Classic  adv ant
Flipcard  Magazine  Mosaic  ages :   Snapshot  Timeslide
Sidebar 
Post on Facebook
Steps to Setup Oracle C… Advanatages
Implementing Multiple T… No  t hird­part y   C  c ompiler.    
Multipeer Connectivity in… Fas t er  in  c ompilat ion  (Orac le  c laims   by   t wo­and­a­half   t imes ).  
Internationalization Usin…
Fas t er  in  ex ec ut ion  (by   20  t imes ).  
StringJoiner Class Not e  t hat   t his   f eat ure  may   not   be  av ailable  on  all  plat f orms   in  t he  f irs t
Introduction to Backup
Create table using Liqui… releas e  of   Orac le  11g 
Image Switcher In Android Usi ng  Nati ve  Com pi l ati on
Insert Image In Excel Sh… Nat iv e  c ompilat ion  howev er  is   s t ill  not   t he  def ault   c ompilat ion
Using JPA to store data i…
met hod.   I f   y ou  want   t o  us e  it   y ou  need  t o  s et   t he  v alue  f or  t he
Oracle 11g New Features P LS QL_CODE _TY P E   paramet er  t o  NATI V E .   The  def ault   v alue  is
Global Temporary Table …
Show and hide passwor… I NTE RP RE TE D.   The  def ault   as s umes   t hat   dat abas e  engine  will  only
NSLayoutConstraints Pr… int erpret   t he  P L/ S QL  c ode  and  will  not   c ompile  it   int o  by t e  c ode.   I t
Registration process usi… will  be  done  lat er  us ing  C  c ompiler.   Howev er  when  t he  v alue  is   s et   t o
Bridging Header
NATI V E   t hen  int erpret at ion  and  c ompilat ion  is   done  wit hout   t he  C
Use of XStream in Java c ompiler.  
Excel Creation Using Ap…
Shifting Map Under Mar… The  f ollowing  c ommand  will  s how  t he  c urrent   v alue  of   t he  paramet er.
WebView in Android
Container View Controll…
SQL> show parameter PLSQL_CODE_TYPE; 
REGULAR EXPRESION…
Android working with Re… Confi guri ng  the  Database  or  S essi on  to  Autom ati c  P L/ S QL  Nati ve
Com pi l ati on 
Android Text To Speech
Internationalizatio… 1 The  new  dy namic   paramet er  P LS QL_CODE _TY P E   is   us ed  t o  mak e
any   newly   c ompiled  P L/ S QL  program  unit   us e  nat iv e  P L/ S QL
AWR Report Advance c ompilat ion.   The  paramet er  t ak es   on  of   t wo  v alues :
Create PDF using iText l…
E xecute  the  fol l owi ng  query  to  determ i ne  how  m any  obj ects  are
Build your own languag… com pi l ed  NATI V E   and  I NTE RP RE TE D.
External Table in Oracle

Generate Alarm as Spec… SELECT TYPE, PLSQL_CODE_TYPE, COUNT(*) FROM DBA_PLSQL_OBJECT_SETT
Reflection in java 1
WHERE PLSQL_CODE_TYPE IS NOT NULL 
GROUP BY TYPE, PLSQL_CODE_TYPE 
TYPE Object In ORACLE
Gallery App in Android ORDER BY TYPE, PLSQL_CODE_TYPE; 

Android Here map Adva…
Audio recording in iOS u…
Usi ng  P L/ S QL  Nati ve  Com pi l ati on  i n  the  P rogram   Uni t  Level  
UIPageController in swift You  c an  rec ompile  a  program  unit   in  t he  nat iv e  mode  us ing  t he  A LTE R
How to recreate a contro… . .   COMP I LE   c ommand  as   illus t rat ed  in  t he  f ollowing  ex ample:

Oracle Transaction
Swipe action for U… 1 select PLSQL_CODE_TYPE from ALL_PLSQL_OBJECT_SETTINGS where name=
ALTER PROCEDURE MY_PROC COMPILE PLSQL_CODE_TYPE=NATIVE;  
Lambda Expression in J…
Signal strength in Android

Android Here map Recom pi l i ng  Database  P L/ S QL  P rogram   Uni ts  Usi ng  P L/ S QL
Register a report using … Nati ve  Com pi l ati on
To  rec ompile  all  program  unit s   in  a  dat abas e  us ing  t he  nat iv e  P L/ S QL
Fetching data from sour…
Spring JDBC Template c ompilat ion  and  mak e  t he  nat iv e  c ompilat ion  as   t he  def ault ,   perf orm
t he  f ollowing  s t eps :
Dynamic Views theme. Powered by Blogger.
Reclaim space used by …
http://aboutyusata.blogspot.in/2017/03/oracle­11g­new­features.html 7/10
4/6/2017 Oracle 11g New Features
Reclaim space used by …
Content share on… 1 S TE P ­1:   S et   t he  paramet er  P LS QL_CODE _TY P E   as   f ollows :  

Yusata Infotech Blogs
Storing images in datab…
A LTE R  S Y S TE M  S E T  P LS QL_CODE _TY P E = 'NATI V E '  S COP E = bot h;  
  Bringing Technology … search
S TE P   2:   Mak e  s ure  t he  P LS QL_OP TI MI ZE R_LE V E L  paramet er  v alue
Activating GPS directly
is   at   leas t   2.  
Classic  S HOW 
Flipcard  Magazine  Mosaic  PA RA ME
Sidebar  TE R  P LSTimeslide
Snapshot  QL_OP TI MI ZE R_LE V E L   
Post on Facebook
Steps to Setup Oracle C… A LTE R  S Y S TE M  S E T  P LS QL_OP TI MI ZE R_LE V E L= 2  S COP E = bot h;    
Implementing Multiple T… S TE P   3:   Cleanly   s hut down  t he  dat abas e 
Multipeer Connectivity in… S TE P   4: S t art   t he  dat abas e  in  upgrade  mode.  
Internationalization Usin…
S TE P   5: E x ec ut e  t he  f ollowing  s c ript   will  rec ompile  all  ex is t ing
StringJoiner Class P L/ S QL  unit s   us ing  nat iv e  c ompilat ion:  
Introduction to Backup
Create table using Liqui… @ORA CLE _HOME / rdbms / admin/ dbms upgnv. s ql   
Image Switcher In Android S TE P   7:   Res t art   t he  dat abas e.   and  rec ompile  all  t he
Insert Image In Excel Sh… objec t s (proc edures , f unc t ions , t y pes , t riggers , pac k ages   et c ).
Using JPA to store data i…
Oracle 11g New Features Feature­13:
Global Temporary Table … A lt er  t able  t o  add  c olumns   wit h  def ault   v alue 
Show and hide passwor…
I n  orac le  11g  we  c an  alt er  a  t able  t o  add  a  c olumn  wit h  a  def ault
NSLayoutConstraints Pr…
Registration process usi… v alue.   E arlier,   a  dev eloper  us ed  t o  updat e  t he  v alue  f or  t he  new
Bridging Header c olumn  us ing  UP DATE   s t at ement .   Ref er  t he  ex ample  c ode  [ 1] .    
Use of XStream in Java E x ample  Code  [ 1]
Excel Creation Using Ap…
Shifting Map Under Mar…
WebView in Android ALTER TABLE EMPLOYEES 
Container View Controll… ADD EMP_STATUS VARCHAR2(1)  DEFAULT 'D' NOT NULL 

REGULAR EXPRESION…
Android working with Re… The  new  f eat ure  s urely   reduc es   t he  ov erhead  of   UP DATE   s t at ement .    
The  t able  t o  be  alt ered  mus t   not   be  a  t emporary   t able,   objec t   t able  or
Android Text To Speech I ndex   organiz ed  t able  and  als o  it   mus t   not   c ont ain  LOB   c olumns .
Internationalizatio… 1
Feature­14:
AWR Report Advance
Create PDF using iText l… I nvi si bl e  I ndexes 
A n  index   c an  now  be  c reat ed  in  inv is ible  mode.   A   new  init ializ at ion
Build your own languag… paramet er  OP TI MI ZE R_US E _I NV I S I B LE _I NDE X E S   has   been
External Table in Oracle int roduc ed  t o  indic at e  Orac le  opt imiz er  t o  us e  inv is ible  index es   or
not .   I t   c an  be  s et   at   s y s t em  lev el  as   TRUE   or  FA LS E .
Generate Alarm as Spec…
Reflection in java 1
Syntax  Create an Invisible Index 
TYPE Object In ORACLE CREATE OR REPLACE INDEX INDEX_NAME ON TABLE_NAME (COLUMN_NAME) IN
Gallery App in Android
Syntax ALTER INDEX command to toggle the visibility mode  
Android Here map Adva… ALTER INDEX INDEX_NAME [VISIBLE | INVISIBLE] 
Audio recording in iOS u…

UIPageController in swift
How to recreate a contro… Feature­15:
S QL*  P l us  S tepped  Down  and  P asswords  m ade  Case  S ensi ti ve
Oracle Transaction Dat abas e  c onnec t ion  pas s words   c ould  be  c as e  s ens it iv e.   Two  new
Swipe action for U… 1
paramet ers   S E C_CA S E _S E NS I TI V E _LOGON  and
S E C_MA X _FA I LE D_LOGI N_ATTE MP TS   are  int roduc ed  to
Lambda Expression in J…
Signal strength in Android enable/ dis able  t he  c as e  s ens it iv e  f eat ure  and  s et   t he  max imum
f ailure  at t empt s .
Android Here map
Register a report using … Feature­16:
P L/ S QL  Functi on  Resul t  Cache
Fetching data from sour… Orac le  11g  has   alloc at ed  a  part   of   S GA   dedic at edly   f or  t he  s t orage  of
Spring JDBC Template
s ome  f requent ly   us ed  res ult s .   This   is   k nown  as   Cac he  memory   and
Dynamic Views theme. Powered by Blogger.
Reclaim space used by …
http://aboutyusata.blogspot.in/2017/03/oracle­11g­new­features.html 8/10
4/6/2017 Oracle 11g New Features
Reclaim space used by …
Content share on… 1 proc es s   of   c ac hing  t he  res ult s   is   named  as   Res ult   Cac he.   Orac le  11g

Yusata Infotech Blogs
Storing images in datab…
has   enabled  t his   prov is ion  in  S QL  as   well  as   P L/ S QL.   I n  S QL,
  Bringing Technology … search
c ac hing  is   ac hiev ed  by   an  opt imiz er  hint   (RE S ULT_CA CHE )  while  in
Activating GPS directly
P L/ S QL,   t he  RE S ULT  CA CHE   k ey word  has   t o  be  s pec if ied  wit h  t he
Classic  s t ored 
Flipcard  Magazine  Mosaic  f unc t ion.
Sidebar  Snapshot  Timeslide
Post on Facebook
Steps to Setup Oracle C… I f   a  f unc t ion,   mark ed  f or  res ult   c ac he,   is   ex ec ut ed,   s erv er  res t ores   it s
Implementing Multiple T… res ult   wit h  t he  s et   of   input   paramet ers   and  s ignat ure  of   t he  f unc t ion
Multipeer Connectivity in… and  dependent   objec t s   lik e  t ables   or  v iews .   Now,   on  t he  s ubs equent
Internationalization Usin…
inv ok ing  of   t he  f unc t ion  f or  t he  s ame  s et   of   input   paramet ers ,   s erv er
StringJoiner Class would  f et c h  t he  res ult   f rom  c ac he,   ins t ead  of   re­ex ec ut ing  t he
Introduction to Backup
Create table using Liqui… f unc t ion  body   again.   This   enhanc es   t he  c ode  perf ormanc e  by   almos t
Image Switcher In Android 40% ,   if   t he  f unc t ion  inv olv es   S QL  s t at ement s .   For  pure  P L/ S QL  c ode,
Insert Image In Excel Sh… ex pec t ed  res ult s   may   go  high  up  t o  100% .
Using JPA to store data i…
I f   t he  f unc t ion  is   inv ok ed  wit h  diff erent   s et   of   input   paramet ers ,
Oracle 11g New Features Orac le  would  ex ec ut e  t he  c omplet e  f unc t ion  body,   arriv e  at   t he
Global Temporary Table …
Show and hide passwor… res ult s   and  c ac he  t hem.
NSLayoutConstraints Pr… Cert ain  init ializ at ion  paramet ers   need  t o  be  s et   t o  enable  t he  f eat ure
Registration process usi… as   lis t ed  below.  
Bridging Header
1.   RE S ULT_CA CHE _MODE   ­  Mode  of   Res ult   c ac he  [ FORCE   |MA NUA L
Use of XStream in Java (def ault )] .
Excel Creation Using Ap…
Shifting Map Under Mar… 2.   RE S ULT_CA CHE _MA X _S I ZE   ­  I t   is   part   of   S GA   alloc at ed  f or
WebView in Android c ac he  memory   t o  s t ore  t he  c ac hed  res ult s .   I f   t he  f eat ure  is   dis abled,
Container View Controll… it s   v alue  is   z ero.   I t   c an  be  s et   as   0. 25%   of   memory _t arget   paramet er
v alue,   0. 5%   of   s ga_t arget   paramet er  v alue,   or  1%   of
REGULAR EXPRESION… s hared_pool_s iz e.
Android working with Re…
3.   RE S ULT_CA CHE _MA X _RE S ULT  ­  P erc ent age  memory   alloc at ion
Android Text To Speech f or  one  c ac he  res ult   (def ault   5% ).
Internationalizatio… 1 4.   RE S ULT_CA CHE _RE MOTE _E X P I RATI ON  ­  Ret aining  t ime  f or  t he
c ac hed  res ult .
AWR Report Advance The  f unc t ion  F_AV G_S A L  ret urns   t he  av erage  s alary   of   a  depart ment ,
Create PDF using iText l…
whos e  id  is   pas s ed  as   a  paramet er.
Build your own languag…
External Table in Oracle
CREATE OR REPLACE FUNCTION F_AVG_SAL (P_DEPTID NUMBER)  
RETURN VARCHAR2 
Generate Alarm as Spec…
Reflection in java 1 RESULT_CACHE 
IS 
TYPE Object In ORACLE L_AVG_SAL NUMBER; 
Gallery App in Android
BEGIN 
SELECT AVG(SALARY ) 
Android Here map Adva…
Audio recording in iOS u… INTO L_AVG_SAL 
FROM EMPLOYEES 
UIPageController in swift WHERE DEPARTMENT_ID=P_DEPTID 
How to recreate a contro…
GROUP BY DEPARTMENT_ID; 
RETURN L_AVG_SAL; 
Oracle Transaction
Swipe action for U… 1 END; 

Lambda Expression in J…
Signal strength in Android Current ly,   Orac le  11g  does   not   s upport   res ult   c ac hing  in  anony mous
P L/ S QL  bloc k s ,   pipelined  t able  f unc t ions ,   LOB s   and  c ollec t ion
Android Here map v ariables .
Register a report using …
Feature­17:
Fetching data from sour… S ecure  Fi l es
Spring JDBC Template
Orac le  11g  widened  t he  s c ope  of   Large  Objec t s   on  A NS I   s t andards
Dynamic Views theme. Powered by Blogger.
Reclaim space used by …
http://aboutyusata.blogspot.in/2017/03/oracle­11g­new­features.html 9/10
4/6/2017 Oracle 11g New Features
Reclaim space used by …
Content share on… 1 and  named  t hem  S ec ure  Files ,   s imilar  t o  LOB   but   not   t he  s ame.   Older

Yusata Infotech Blogs
Storing images in datab…
LOB s   would  be  brought   f orward  as   B as ic   Files .   The  reas on  behind
  Bringing Technology … search
diff erent   naming  c onv ent ion  is   t o  maint ain  diff erent   s t orage  s pec s
Activating GPS directly
as s oc iat ed  wit h  t hem  and  eas e  t he  migrat ion  t oo.
Classic  S ec ure 
Flipcard  Magazine  Mosaic  f iles   Snapshot 
Sidebar  hav e  upper  hand  in  perf ormanc e,   s pac e  c ons umpt ion,
Timeslide
Post on Facebook
Steps to Setup Oracle C… and  dat a  objec t   s ec urit y.   Dat abas es   us ing  S ec ure  Files   c ould  eas ily
Implementing Multiple T… be  managed  in  s ingle  s ec urit y   model  and  mak e  us e  of   adv anc ed
Multipeer Connectivity in… f eat ures   lik e  DE DUP LI CATI ON  and  COMP RE S S I ON.   S ec ure  f iles
Internationalization Usin…
s upport   bot h  s t ruc t ural  as   well  as   uns t ruc t ured  dat a  f or  s t orage.
StringJoiner Class This   f eat ure  c an  be  enabled  t hrough  a  paramet er  DB _S E CURE FI LE   as
Introduction to Backup
Create table using Liqui… s hown  in  t he  ex ample  s y nt ax   [ 3] .
Image Switcher In Android E x ample  S y nt ax   [ 3]
Insert Image In Excel Sh…
Using JPA to store data i…
ALTER SYSTEM SET DB_SECUREFILE = [PERMITTED | FORCE | ALWAYS | IG
Oracle 11g New Features
Global Temporary Table …
Show and hide passwor…
NSLayoutConstraints Pr… A   t able  c an  be  c reat ed  t o  s t ore  t he  S ec ure  Files   as   in  E x ample
Registration process usi…
Bridging Header S y nt ax
Use of XStream in Java E x ample  S y nt ax :   [ 4]
Excel Creation Using Ap…
Shifting Map Under Mar…
WebView in Android
CREATE TABLE employees 
Container View Controll… ( [COLUMN] BLOB ) 
TABLESPACE tools 
REGULAR EXPRESION… LOB ([COLUMN]) STORE AS SECUREFILE
Android working with Re…
(LOB storage parameters); 
Android Text To Speech
Storage parameters are CHUNK, [ENABLE | DISABLE] STORAGE IN ROW, 
Internationalizatio… 1

AWR Report Advance
Create PDF using iText l…

Build your own languag…
Posted 1 week ago by Yusata Infotech Private Limited
External Table in Oracle
Labels: 11g Features, database, Oracle
Generate Alarm as Spec…
Reflection in java 1 0   Add a comment

TYPE Object In ORACLE
Gallery App in Android
Enter your comment...
Android Here map Adva…
Audio recording in iOS u…

UIPageController in swift
How to recreate a contro…
Comment as:  Select profile...
Oracle Transaction
Swipe action for U… 1
Publish
  Preview
Lambda Expression in J…
Signal strength in Android

Android Here map
Register a report using …

Fetching data from sour…
Spring JDBC Template
Dynamic Views theme. Powered by Blogger.
Reclaim space used by …
http://aboutyusata.blogspot.in/2017/03/oracle­11g­new­features.html 10/10

Вам также может понравиться