Oracle® Timesten In-Memory Database Release Notes 11G Release 2 (11.2.2)

Total Page:16

File Type:pdf, Size:1020Kb

Oracle® Timesten In-Memory Database Release Notes 11G Release 2 (11.2.2) Oracle® TimesTen In-Memory Database Release Notes 11g Release 2 (11.2.2) E21630-12 December 2011 This document provides late-breaking information for TimesTen release 11.2.2.2.0, as well as information that is not yet part of the formal documentation. The latest version of this document is the readme.html file in your installation directory. Release notes may also be updated from time to time in the documentation library at http://www.oracle.com/technetwork/database/timesten/documentation/ To install the Oracle TimesTen In-Memory Database, run setup from the installation media pack. For installation information, see Oracle TimesTen In-Memory Database Installation Guide. This guide can be accessed from install_dir/doc/ in the installation. This document contains the following sections: ■ Changes in this release ■ Platforms and configurations ■ Software requirements ■ Deliverables ■ Advance notice ■ Known problems and limitations ■ Documentation Accessibility 1 Changes in this release This section lists changes between releases: ■ Changes for Release 11.2.2.2.0 from Release 11.2.2.1.0 ■ Changes for Release 11.2.2.1.0 from Release 11.2.1 1.1 Changes for Release 11.2.2.2.0 from Release 11.2.2.1.0 Changes in this release include: ■ New features ■ Behavior changes 1 1.1.1 New features ■ The new Automatic parallel replication allows for the parallel replication and application of transactions changes to the receiving nodes in a replication scheme. See the Oracle TimesTen In-Memory Database Replication Guide for more details. ■ The ttIsql utility now supports autovariables, showcurrenttime as a set/show attribute, the IF command, WHENEVER error handling and SQLCancel. ■ Added support for ODBC SQLCancel. 1.1.2 Behavior changes ■ Passthrough levels other than 0 are not supported with the utilities ttMigrate, ttBulkCp and ttSchema. Now an error is returned if the PassThrough connection attribute is set to a level other than 0. ■ In Release 11.2.2.1.0, we documented the requirement that unique or foreign key constraints on Oracle must have a corresponding TimesTen unique or foreign key constraint. If the constraint cannot be added to TimesTen, then Parallel AWT should not be enabled. In Release 11.2.2.2.0, TimesTen checks if there are any cached columns within an AWT table that belong to an Oracle unique index or a unique constraint that don't have a corresponding unique index on TimesTen. If any columns are found when creating a cache group, TimesTen returns a warning, at which time the user can fix this issue. If any columns are found when the replication agent is started, TimesTen returns an error and shuts down the replication agent. ■ The SQLCancel ODBC function can now perform a statement cancel on an hstmt from a different thread. In this case, the SQLCancel issues the cancel request and returns immediately. Previously, SQLCancel would block, waiting for the original SQL operation to complete. TimesTen still does not support an asynchronous cancel on an hstmt executed with the SQL_ASYNC_ENABLE flag set. ■ When the ttIsql utility receives the signal SIGINT while running an ODBC statement, ttIsql attempts to interrupt the statement using SQLCancel. Previously ttIsql needed to wait until the statement completed before ttIsql could interrupt the given command. The ttIsql utility no longer exits if it receives two SIGINT signals during an ODBC call. ■ Some mixes of DML and DDL statements in the same transaction while using DDLCommitBehavior=1 are no longer allowed. For example, transactions that update rows in a table and then create an index on that same table, or that update rows in a table and then resize that table's hash index with an ALTER TABLE ... PAGES = n now return an error. The error can be prevented if you do not mix DML and DDL statements in the same transaction. 1.2 Changes for Release 11.2.2.1.0 from Release 11.2.1 Changes in this release include: ■ New features ■ Behavior changes ■ Bug Fixes 2 1.2.1 New features ■ In-memory columnar compression of tables. ■ Large objects (LOBs), including CLOBs (character LOBs), NCLOBs (national character LOBs), and BLOBs (binary LOBs). ■ Associative arrays, formerly known as index-by tables or PL/SQL tables, are supported as bind parameters in TimesTen PL/SQL, such as from an OCI, Pro*C, or JDBC application. ■ TimesTen now supports some wide-character ("W") versions of ODBC functions. For example, SQLGetConnectOptionW is supported in addition to SQLGetConnectOption. See the Oracle TimesTen In-Memory Database C Developer's Guide for more details. ■ PL/SQL anonymous blocks and procedure or function calls, in addition to SQL statements, are supported in an EXECUTE IMMEDIATE statement or DBMS_SQL procedure or function call. ■ A global query (a query executed on multiple members of an Oracle In-Memory Database Cache grid) can reference more than one table. ■ The ability to determine the current space usage of a table using the ttComputeTabSizes built-in procedure. ■ The maximum number of indexes per table has increased to 500. The previous maximum was 32. ■ You can configure parallel propagation of changes in AWT cache tables to the corresponding Oracle tables. ■ The maximum value of the LogBufMB and LogFileSize connection attributes has increased to 64GB on 64-bit systems. ■ You have additional control over TimesTen application failover behavior when Oracle Clusterware is managing a TimesTen active standby pair. The AppFailureInterval, AppRestartAttempts and AppUptimeThreshold Clusterware attributes are new. See the Oracle TimesTen In-Memory Database Replication Guide for more information. 1.2.1.1 Additional SQL functionality for analytics workloads and complex queries See Oracle TimesTen In-Memory Database SQL Reference for more information. ■ Analytic functions and clauses: - Analytic functions: AVG, SUM, COUNT, MAX, MIN, DENSE_RANK, RANK, ROW_NUMBER, FIRST_VALUE and LAST_VALUE - Analytic clauses: OVER PARTITION BY and OVER ORDER BY ■ Multidimensional grouping operators: - Grouping clauses: GROUP BY CUBE, GROUP BY ROLLUP, GROUP BY GROUPING SETS - Grouping functions: GROUP, GROUPING_ID, GROUP_ID ■ WITH clause, which allows repeated references to a named subquery block ■ Aggregate expressions over DISTINCT expressions ■ General expressions that return a character string in the source or a pattern within the LIKE predicate 3 ■ Ability to order nulls first or last in a sort result (NULLS FIRST or NULLS LAST in the ORDER BY clause) 1.2.1.2 Implicit data type conversion See Oracle TimesTen In-Memory Database SQL Reference for more information. ■ TimesTen implicitly converts data types in many cases. For example: SELECT 1 + '1' FROM dual; 1.2.1.3 Support for arithmetic operations on date and time values See Oracle TimesTen In-Memory Database SQL Reference for more information. ■ TimesTen allows arithmetic operations on date and timestamp expressions. For example: SELECT SYSDATE + 1 FROM dual; 1.2.1.4 New SQL scalar functions See Oracle TimesTen In-Memory Database SQL Reference for more information. ■ LOBs: EMPTY_CLOB, EMPTY_BLOB, TO_BLOB, TO_CLOB, TO_LOB, TO_NCLOB ■ National Language Support (NLS) properties: NLS_CHARSET_ID and NLS_CHARSET_NAME ■ Cache grid properties: TTGRIDMEMBERID, TTGRIDNODENAME, TTGRIDUSERASSIGNEDNAME ■ Timestamp arithmetic: TIMESTAMPADD and TIMESTAMPDIFF ■ Other SQL scalar functions: SOUNDEX, REPLACE, MONTHS_BETWEEN, NULLIF 1.2.1.5 New system views See Oracle TimesTen In-Memory Database System Tables and Views Reference for more information. ■ SYS.ALL_TABLES, SYS.DBA_TABLES, SYS.USER_TABLES ■ SYS.ALL_VIEWS, SYS.DBA_VIEWS, SYS.USER_VIEWS ■ SYS.ALL_TAB_SIZES, SYS.DBA_TAB_SIZES, SYS.USER_TAB_SIZES 1.2.1.6 New built-in procedures See Oracle TimesTen In-Memory Database Reference for more information. ■ ttComputeTabSizes computes the current size of a table. 1.2.1.7 Utility enhancements See Oracle TimesTen In-Memory Database Reference for more information. ■ ttStatus has a new option for displaying the status of a single database. ■ ttIsql has new commands to support LOBs, table compression, table size reporting and PL/SQL associative binds. ■ ttsize has been enhanced to report more information. ■ ttVersion has a new option to generate information only about a specified attribute. 4 1.2.2 Behavior changes ■ PreparedStatement.setBoolean(int parameter, false) sets the column to 0 regardless of the data type. In previous releases, PreparedStatement.setBoolean(int parameter, false) set CHAR, VARCHAR, NCHAR, and NVARCHAR columns to null. ■ When DURABLE COMMITS ON is specified as part of the return services STORE clause for a replication scheme, durable commits are issued when return service blocking is disabled regardless of whether the replication agent is running or stopped. They are also issued for an active standby pair in which the ttRepStateSave built-in procedure has marked the standby database as failed. ■ When creating a cache group, a WHERE clause must be placed on an individual table. In previous releases, the WHERE clause could reference any table within the cache group. In the current release, it can only reference a specific table. ■ The default setting for the DDLReplicationLevel general connection attribute has changed from 1 to 2. See Oracle TimesTen In-Memory Database Reference for more details. ■ The default value for the CacheAWTMethod first connection attribute is changed. 1 (PL/SQL method) is the default now. ■ In this release, WITH is a reserved word. ■ The Connections attribute is changed in this release. The default value is the lesser of 2000 or the number of semaphores specified in the SEMMSL kernel parameter. The value of this attribute specifies only the number of user connections. Previously, the value needed to include the user connections and the connections by the subdaemon, replication agent, etc. In previous releases, TimesTen returned a warning if the number of connections exceeded the value of the Connections attribute. In this release, TimesTen returns an error and the connection fails. See the Oracle TimesTen In-Memory Database Reference for more details. ■ The prefix of daemon log messages for IMDB Cache has changed from ORA to CAC. ■ Hex literals with odd lengths are now prefixed with 0.
Recommended publications
  • Cache Connect to Oracle
    ORACLE DATA SHEET CACHE CONNECT TO ORACLE OVERVIEW Cache Connect to Oracle is an option to the Oracle TimesTen In- Memory Database that provides real-time, updatable caching for Oracle Database. The cache tables reside in the application tier and • Real-time performance for offload computing cycles from backend systems, enabling Oracle data • Unlimited read/write caching remarkably responsive and scalable real-time applications. Cache • Oracle Database integration Connect to Oracle manages the cache tables in the Oracle TimesTen • Flexible “cache group” definitions database, provides update propagation in both directions, enables • Automated data loading and pass through of SQL requests for non-cached data in Oracle refresh • Transactional update Database, and automatically resynchronizes data after failures. propagation Cache Connect to Oracle is fully compatible with the Replication – • Synchronous and asynchronous write-through to TimesTen to TimesTen option. Oracle • Transparent SQL pass through Real-Time Performance for Oracle Data • High availability and The majority of data in corporate databases is historical and infrequently accessed. automatic resynchronization But, buried within this data are pockets of information that should be instantly • Dynamic data caching and data aging accessible when requested. Your best customers, open orders, recent transactions • Web-based configuration and product catalog are examples. Cache Connect to Oracle enables such utility information to be automatically copied and managed in Oracle TimesTen In- Memory Databases for real-time access. Cache Connect to Oracle provides the connection and bi-directional transfer of data between an Oracle Database and an Oracle TimesTen In-Memory Database. By managing data in memory, and optimizing data structures and access algorithms accordingly, database operations execute with maximum efficiency, achieving dramatic gains in performance, even compared to a fully cached disk-based RDBMS.
    [Show full text]
  • Accelerate Oracle Database Using Oracle Timesten As an Application-Tier Cache
    Accelerate Oracle Database using Oracle TimesTen as an Application-Tier Cache Using Oracle Real Application Clusters 19c, Oracle TimesTen Application-Tier Database Cache 18c, Intel Optane Persistent Memory, and Dell EMC Enterprise Infrastructure June 2021 H18733 Reference Architecture Guide Abstract This document showcases how Oracle TimesTen, used as an application-tier cache with a backend Oracle RAC database, can accelerate performance and efficiency in specific application scenarios when deployed on a Dell EMC infrastructure. It also demonstrates the advantages of using Intel Optane PMem in an Oracle TimesTen In- Memory Database environment. Dell Technologies Solutions Restricted - Confidential Copyright The information in this publication is provided as is. Dell Inc. makes no representations or warranties of any kind with respect to the information in this publication, and specifically disclaims implied warranties of merchantability or fitness for a particular purpose. Use, copying, and distribution of any software described in this publication requires an applicable software license. Copyright © 2021 Dell Inc. or its subsidiaries. All Rights Reserved. Dell Technologies, Dell, EMC, Dell EMC and other trademarks are trademarks of Dell Inc. or its subsidiaries. Intel, the Intel logo, the Intel Inside logo and Xeon are trademarks of Intel Corporation in the U.S. and/or other countries. Oracle, Java, and MySQL are registered trademarks of Oracle and/or its affiliates. Other trademarks may be trademarks of their respective owners. Published in the USA June 2021 Reference Architecture Guide H18733. Dell Inc. believes the information in this document is accurate as of its publication date. The information is subject to change without notice. 2 Accelerate Oracle Database using Oracle TimesTen as an Application-Tier Cache Reference Architecture Guide Contents Contents Executive summary ..........................................................................................................................
    [Show full text]
  • Release Notes
    RTI Real-Time Connect Release Notes Version 5.1.0 © 2013 Real-Time Innovations, Inc. All rights reserved. Printed in U.S.A. First printing. December 2013. Trademarks Real-Time Innovations, RTI, and Connext are trademarks or registered trademarks of Real-Time Innovations, Inc. All other trademarks used in this document are the property of their respective owners. Third Party Copyright Notices The Oracle® TimesTen® In-Memory Database and the Oracle® Database are products of Oracle. Copy and Use Restrictions No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form (including electronic, mechanical, photocopy, and facsimile) without the prior written permission of Real- Time Innovations, Inc. All software and documentation (whether in hard copy or electronic form) enclosed are subject to the license agreement. The software and documentation may be used or copied only under the terms of the license agreement. Technical Support Real-Time Innovations, Inc. 232 E. Java Drive Sunnyvale, CA 94089 Phone: (408) 990-7444 Email: [email protected] Website: https://support.rti.com/ Contents 1 Supported Platforms and System Requirements ................................................................................1 1.1 ODBC Driver Requirements............................................................................................................2 2 Compatibility .............................................................................................................................................2
    [Show full text]
  • Zerohack Zer0pwn Youranonnews Yevgeniy Anikin Yes Men
    Zerohack Zer0Pwn YourAnonNews Yevgeniy Anikin Yes Men YamaTough Xtreme x-Leader xenu xen0nymous www.oem.com.mx www.nytimes.com/pages/world/asia/index.html www.informador.com.mx www.futuregov.asia www.cronica.com.mx www.asiapacificsecuritymagazine.com Worm Wolfy Withdrawal* WillyFoReal Wikileaks IRC 88.80.16.13/9999 IRC Channel WikiLeaks WiiSpellWhy whitekidney Wells Fargo weed WallRoad w0rmware Vulnerability Vladislav Khorokhorin Visa Inc. Virus Virgin Islands "Viewpointe Archive Services, LLC" Versability Verizon Venezuela Vegas Vatican City USB US Trust US Bankcorp Uruguay Uran0n unusedcrayon United Kingdom UnicormCr3w unfittoprint unelected.org UndisclosedAnon Ukraine UGNazi ua_musti_1905 U.S. Bankcorp TYLER Turkey trosec113 Trojan Horse Trojan Trivette TriCk Tribalzer0 Transnistria transaction Traitor traffic court Tradecraft Trade Secrets "Total System Services, Inc." Topiary Top Secret Tom Stracener TibitXimer Thumb Drive Thomson Reuters TheWikiBoat thepeoplescause the_infecti0n The Unknowns The UnderTaker The Syrian electronic army The Jokerhack Thailand ThaCosmo th3j35t3r testeux1 TEST Telecomix TehWongZ Teddy Bigglesworth TeaMp0isoN TeamHav0k Team Ghost Shell Team Digi7al tdl4 taxes TARP tango down Tampa Tammy Shapiro Taiwan Tabu T0x1c t0wN T.A.R.P. Syrian Electronic Army syndiv Symantec Corporation Switzerland Swingers Club SWIFT Sweden Swan SwaggSec Swagg Security "SunGard Data Systems, Inc." Stuxnet Stringer Streamroller Stole* Sterlok SteelAnne st0rm SQLi Spyware Spying Spydevilz Spy Camera Sposed Spook Spoofing Splendide
    [Show full text]
  • Timesten Release Notes
    Oracle® TimesTen In-Memory Database Release Notes 11g Release 2 (11.2.2) E61818-06 April 2015 This document provides late-breaking information for TimesTen 11.2.2.8.3, as well as information that is not yet part of the formal documentation. The latest version of this document is the readme.html file in your installation directory. Release notes may also be updated from time to time in the documentation library at http://www.oracle.com/technetwork/database/database-technologies/timesten/document ation/index.html Information about TimesTen 11.2.2 releases before 11.2.2.6.0 can be found at http://www.oracle.com/technetwork/products/timesten/documentation/1122-historic-18 86173.html To install the Oracle TimesTen In-Memory Database, run setup from the installation media pack. For installation information, see Oracle TimesTen In-Memory Database Installation Guide. This guide can be accessed from install_dir/doc/ in the installation, if you opted to install the TimesTen Documentation. This document contains the following sections: ■ Changes in this release ■ Platforms and configurations ■ Software requirements ■ Deliverables ■ Advance notice ■ Known problems and limitations ■ Documentation Accessibility 1 Changes in this release This section lists changes between releases: ■ Changes for Release 11.2.2.8.3 from Release 11.2.2.8.2 ■ Changes for Release 11.2.2.8.2 from Release 11.2.2.8.1 ■ Changes for Release 11.2.2.8.1 from Release 11.2.2.8.0 ■ Changes for Release 11.2.2.8.0 from Release 11.2.2.7.10 ■ Changes for Release 11.2.2.7.10 from Release
    [Show full text]
  • Improving Application Performance Through Database Caching at Application Tier Level
    Annals of DAAAM for 2010 & Proceedings of the 21st International DAAAM Symposium, Volume 21, No. 1, ISSN 1726-9679 ISBN 978-3-901509-73-5, Editor B. Katalinic, Published by DAAAM International, Vienna, Austria, EU, 2010 Make Harmony Between Technology and Nature, and Your Mind will Fly Free as a Bird Annals of DAAAM International IMPROVING APPLICATION PERFORMANCE THROUGH DATABASE CACHING AT APPLICATION TIER LEVEL BOICEA, A[lexandru]; BADALAU, C[ezar] B[ogdan]; RADULESCU, F[lorin] & NICULA, A[drian] I[onut] Abstract: This paper analyses a technique for improving A collection of database tables related through foreign keys that application performance through the implementation of are transformed to IMDB Cache tables represents a cache group database caching at the level of the application tier. The focus which may be defined through SQL Syntax. is Oracle In-memory database caching option for Oracle 11g For example, taking into account the diagram in Fig. 2, one and analyses the procedure of implementing Oracle TimesTen may define a cache group composed of projects with a start In-Memory Database as a database cache at the application date of 1st of January 2000 with an eHealth theme and a tier for reduction of workload for Oracle database and project duration larger then 36 months and a second cache shortening the application response time. group made up by FP7 projects with a total project cost higher Key words: database, cache, application, tier, grid then 5 million euro and ongoing status. The aforementioned cache groups may be cached on different nodes that run IMDB 1. INTRODUCTION Cache enabling a distributed access to data that would result to a more efficient load balancing, therefore a faster response The increasing usage of on-line services led to the growth of time.
    [Show full text]
  • Oracle Timesten In-Memory Database 7.0 Features Overview
    Oracle TimesTen In-Memory Database 7.0 Features Overview Updated September 2007 to include new features in 7.0.3 Oracle TimesTen In-Memory Database New Features in Release 7.0.3 September 2007 1 What‘s New in Oracle TimesTen 7.0.3 This section provides an overview of the new functionality added to the Oracle TimesTen In- Memory Database release 7.0.3. Enhancements for this release include: • Support for IPv6 on Linux and Solaris • Support for Oracle Database 11g release on Linux x86 platform • Enhancements for Replication host name specification and resolution • Improvements on client/server connection handling • New SQL features and 15 new SQL functions • Cache group parallel loading from Oracle database • Mechanisms to monitor read-only cache group status and operations • Support for NFS on Linux clients • Support for new platforms Sections 2-13 below describe the supported platforms, features and functionality in more details. 2 Supported Platforms The matrix below describes the supported platforms for the Oracle TimesTen In-Memory Database release 7.0.3. New platforms are highlighted in bold. Oracle TimesTen In-Memory Database, Replication, Cache Connect - Supported Platforms Operating System JVM Processor Type AIX 5L 5.2, 5.3 (32/64 bit) JDK 1.4.2, 5.0 (IBM) IBM Power HP-UX 11i v2 & 11i v3 (32/64 bit) JDK 1.4.2, 5.0 (HP) HP PA-RISC , IA64 - Asianux 2.0 (32/64 bits) JDK 1.4, 5.0 (Sun, Intel IA-32, EM64T, - MontaVista Linux CGE 4.0 (32/64 bit) BEA JRockit); JVM Itanium-2, AMD - Oracle Enterprise Linux 4.0, 5.0 (32/64 bits) 5.0 required
    [Show full text]
  • Developing and Deploying High Performance PHP Applications
    Developing and Deploying High Performance PHP Applications http://joind.in/3396 php|tek 2011 http://blogs.oracle.com/opal Christopher Jones [email protected] Oracle Development http://twitter.com/ghrd 1 This Talk - What to Expect • “State of the Nation” overview of PHP & Oracle Technology • (Some) Best Practices with Oracle Database – With live demos 2 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. 3 About Me • Work in Oracle's Linux & Virtualization Group • Focus on scripting languages – mostly PHP – Have PHP code check-in privileges • Also work on Oracle features that help scripting languages 4 <Insert Picture Here> In The News 5 In the News: NetBeans IDE • Free – GPL / CDDL • NetBeans is very popular for PHP – Strong, passionate community of users • Zend Framework, Symfony, XDebug, PHPUnit, PhpDoc • New! NetBeans 7.0 just released – Generate PhpDoc – Rename refactoring, Safe delete refactoring – Support for PHP 5.3 namespace aliases • See http://netbeans.org/features/php 6 In the News: Oracle Database • Beta Oracle 11.2 “XE” is available – Free – Windows 32 & 64, Linux 64 – Subset of Enterprise Edition features – Same code base as EE – XE
    [Show full text]
  • Hands-On Oracle Database 11G Application Development
    OTN Developer Day: Hands-on Oracle Database 11g Application Development Abstracts Keynotes Keynote Part 1: Application Development Frameworks The common thread for all application is the database. Oracle cares about all application development communities including Java, .Net, APEX, SQL Dev, PHP and other open source scripting languages. This demo packed part 1 of the keynote will look at application development frameworks, their corresponding Oracle extensions and what makes successful application development through examples such as Oracle store. Keynote Part 2: Building Innovative Applications with Oracle Database 11g This second part of the keynote will cover built-in database mechanisms for innovative application development such as: Performance o Top best SQL things to know: SQL optimization, recursive subquery factoring, analytic functions o Reduce Network roundtrip with Stored Procedures: PL/SQL, Java in the database and PreFetching o Compression / Partitioning Caching Strategy o Continuous query notification and mid-tier cache invalidation o In-Memory Database (TimesTen) Scalability: DRCP Information Management, Advanced Data Types: XMLDB, Text, Spatial Application Life Cycle: Edition-Based Redefinition Networking: Net Services. Java Track Simpler Enterprise Java Development with Oracle In this two-hour lab you'll see how Oracle simplify developing enterprise Java applications on top of the Oracle database. Create web-based applications that interact with your database and provide rich and dynamic user interface. Learn how to use JSF and the rich ADF Faces set of components to create Ajax-enabled rich internet applications. Work with Oracle JDeveloper and Oracle ADF to learn how to simplify database access from your Java applications. This lab uses the same technology stack used to develop the Oracle Fusion Applications.
    [Show full text]
  • Oracle Timesten In-Memory Database and Oracle  Export and Import Data In-Memory Database Cache
    ORACLE DATA SHEET ORACLE TIMESTEN® IN-MEMORY DATABASE SUPPORT IN ORACLE SQL DEVELOPER KEY FEATURES AND BENEFITS Oracle SQL Developer is a graphical tool that enhances productivity and Browse, create and edit TimesTen database objects using a graphical user simplifies development tasks for database application developers. Using SQL interface Developer, TimesTen database users can browse, create, and edit database Automate caching of Oracle Database objects and PL/SQL subprograms; automate cache group operations; manage tables in TimesTen database users and their privileges; manipulate and export data; execute SQL and PL/SQL Create, compile and run PL/SQL packages, procedures and functions statements and scripts; and view and create reports. Support concurrent connections to TimesTen and Oracle Database Overview Support Oracle Database compatible Oracle SQL Developer is a graphical tool designed for Oracle database application developers. data types including LOB data types SQL Developer integrates seamlessly with Oracle TimesTen In-Memory Database and Oracle Export and import data In-Memory Database Cache. SQL Developer provides a tree-based object browser. Navigation to database connections and objects are visually intuitive with tabbed display of details specific to each object type. From the reports navigator, users can run predefined reports or create and add their own reports. SQL Developer complements the TimesTen ttIsql command line utility, by simplifying the development tasks using a graphical user interface. Support for Data Objects SQL Developer offers developers the ability to browse, create, and alter TimesTen database objects including tables, views, indexes, sequences, synonyms, materialized views, materialized view logs, PL/SQL packages, procedures and functions. Oracle Database compatible data types are supported, including the LOB data types.
    [Show full text]
  • Oracle Exalytics In-Memory Machine: a Brief Introduction
    Oracle White Paper – Oracle Exalytics In-Memory Machine: A Brief Introduction An Oracle White Paper January, 2014 ORACLE EXALYTICS IN-MEMORY MACHINE: A BRIEF INTRODUCTION 1 Oracle White Paper – Oracle Exalytics In-Memory Machine: A Brief Introduction Contents Oracle Exalytics Overview .................................................................. 5 Oracle Exalytics Hardware Architecture .......................................... 6 Oracle Exalytics Software Overview ............................................... 7 Oracle Business Intelligence Foundation Suite ...................................... 7 Oracle TimesTen In-Memory Database for Exalytics ............................. 7 Oracle Endeca Information Discovery .................................................... 8 Exalytics In-memory Software ......................................................... 8 OBIEE In-Memory Accelerator ............................................................... 9 Essbase In-Memory Acclerator ............................................................... 9 In-Memory Data Caching ........................................................................ 9 BI Publisher In-Memory Accelerator ..................................................... 11 The Engineered System Value ......................................................... 11 Ideal Platform for Business Analytics Consolidation ......................... 11 An Entirely New User Experience ..................................................... 12 Interactivity and Responsiveness .................................................
    [Show full text]
  • Timesten Operations Guide
    Oracle® TimesTen In-Memory Database Operations Guide 11g Release 2 (11.2.2) E21633-12 October 2014 Oracle TimesTen In-Memory Database Operations Guide, 11g Release 2 (11.2.2) E21633-12 Copyright © 1996, 2014, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions on use and disclosure and are protected by intellectual property laws. Except as expressly permitted in your license agreement or allowed by law, you may not use, copy, reproduce, translate, broadcast, modify, license, transmit, distribute, exhibit, perform, publish, or display any part, in any form, or by any means. Reverse engineering, disassembly, or decompilation of this software, unless required by law for interoperability, is prohibited. The information contained herein is subject to change without notice and is not warranted to be error-free. If you find any errors, please report them to us in writing. If this is software or related documentation that is delivered to the U.S. Government or anyone licensing it on behalf of the U.S. Government, the following notice is applicable: U.S. GOVERNMENT END USERS: Oracle programs, including any operating system, integrated software, any programs installed on the hardware, and/or documentation, delivered to U.S. Government end users are "commercial computer software" pursuant to the applicable Federal Acquisition Regulation and agency-specific supplemental regulations. As such, use, duplication, disclosure, modification, and adaptation of the programs, including any operating system, integrated software, any programs installed on the hardware, and/or documentation, shall be subject to license terms and license restrictions applicable to the programs.
    [Show full text]