+ All Categories
Home > Technology > Oracle Database 12c Feature Support in Oracle SQL Developer

Oracle Database 12c Feature Support in Oracle SQL Developer

Date post: 09-May-2015
Category:
Upload: jeff-smith
View: 1,583 times
Download: 2 times
Share this document with a friend
Description:
A brief overview of Database 12c feature support in Oracle SQL Developer with a focus on using the SQL Translation Framework to fix problematic application SQL in production with ZERO application re-writes or changes.
27
Transcript
Page 1: Oracle Database 12c Feature Support in Oracle SQL Developer
Page 2: Oracle Database 12c Feature Support in Oracle SQL Developer

Copyright © 2014 Oracle and/or its affiliates. All rights reserved. | Oracle Confidential – Internal/Restricted/Highly Restricted

Oracle Database 12c And SQL Developer Stuff

Jeff [email protected] || @thatjeffsmithSenior Principal Product ManagerDatabase Development Tools Group

Page 3: Oracle Database 12c Feature Support in Oracle SQL Developer

Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |

Agenda

Database 12c New Features SQL Developer support Some Demo + Q&A

Improve application developers experience

Page 4: Oracle Database 12c Feature Support in Oracle SQL Developer

Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |

THE FOLLOWING IS INTENDED TO OUTLINE OUR GENERAL PRODUCT DIRECTION. IT IS INTENDED FOR INFORMATION PURPOSES ONLY, AND MAY NOT BE INCORPORATED INTO ANY CONTRACT. IT IS NOT A COMMITMENT TO DELIVER ANY MATERIAL, CODE, OR FUNCTIONALITY, AND SHOULD NOT BE RELIED UPON IN MAKING PURCHASING DECISIONS. THE DEVELOPMENT, RELEASE, AND TIMING OF ANY FEATURES OR FUNCTIONALITY DESCRIBED FOR ORACLE'S PRODUCTS REMAINS AT THE SOLE DISCRETION OF ORACLE.

Safe Harbor Statement/Legal

Page 5: Oracle Database 12c Feature Support in Oracle SQL Developer

Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |

Oracle SQL Developer

FREE Oracle Database IDE/GUI Windows, OS X, *NIX More than 3,500,000 users worldwide My Oracle Support available via your DB license

Page 6: Oracle Database 12c Feature Support in Oracle SQL Developer

Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |

SQL Developer Data ModelerIncluded for free, also available as a separate download/program

Strategy and Analysis

Relational

Database Design

Data Type

Star Schema Physical

MultidimensionalERD DFD

Logical

Reporting

Import Models

Domains

Page 7: Oracle Database 12c Feature Support in Oracle SQL Developer

Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |

Database 12c Topics

Multitenant Redaction Identity Columns Row Limit Offset Fetch Migration Stuff

Page 8: Oracle Database 12c Feature Support in Oracle SQL Developer

Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |

Or…I can show you how to ‘trick’ your applications

Need to tune a hard-coded query? Wish you could substitute your own? SQL Translation Framework

Page 9: Oracle Database 12c Feature Support in Oracle SQL Developer

Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |

Page 10: Oracle Database 12c Feature Support in Oracle SQL Developer

Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |

Silly Chet Example

Page 11: Oracle Database 12c Feature Support in Oracle SQL Developer

Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |

SQL Translation Framework in SQL Developer The realm of DBAs ONLY Create a Translation Profile Enter Bad > Good SQL Test with Worksheet tied to Profile

Page 12: Oracle Database 12c Feature Support in Oracle SQL Developer

Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |

Meanwhile, in our app and…

Hard-coded SQL No can change until ??

Page 13: Oracle Database 12c Feature Support in Oracle SQL Developer

Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |

Another Example, Top Players ROWNUM Predicate

Page 14: Oracle Database 12c Feature Support in Oracle SQL Developer

Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |

Oh wait, this is Database 12c

SQL Translation Framework 12c Docs Kerry’s Blog Post

Fetch First Syntax (Docs)

Page 15: Oracle Database 12c Feature Support in Oracle SQL Developer

Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |

The Query Could Be Better…

select SUM(POINTS), PLAYERfrom HOCKEY_STATSgroup by PLAYERorder by SUM(POINTS) descfetch first 15 rows only;

The old way The new way – analytics ;)

Page 16: Oracle Database 12c Feature Support in Oracle SQL Developer

Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |

Add Query to the Translation Profile

Page 17: Oracle Database 12c Feature Support in Oracle SQL Developer

Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |

A Trace Capture Running the ‘Bad’ Code w/Translation

Page 18: Oracle Database 12c Feature Support in Oracle SQL Developer

Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |

That Example Used a Literal, What About Binds?

Page 19: Oracle Database 12c Feature Support in Oracle SQL Developer

Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |

Other 12c Slides

Page 20: Oracle Database 12c Feature Support in Oracle SQL Developer

Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |

DBMS_UTIL.EXPAND_SQL()*

Page 21: Oracle Database 12c Feature Support in Oracle SQL Developer

Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |

Multitenant

Page 22: Oracle Database 12c Feature Support in Oracle SQL Developer

Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |

Redaction

Page 23: Oracle Database 12c Feature Support in Oracle SQL Developer

Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |

Identity Columns

SQL Developer SQL Developer Data Modeler

Page 24: Oracle Database 12c Feature Support in Oracle SQL Developer

Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |

Go Play!

Page 26: Oracle Database 12c Feature Support in Oracle SQL Developer

Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |

Page 27: Oracle Database 12c Feature Support in Oracle SQL Developer

Recommended