AWS Marketplace Getting Started

Total Page:16

File Type:pdf, Size:1020Kb

AWS Marketplace Getting Started AWS Marketplace Getting Started Actian Vector VAWS-51-GS-14 Copyright © 2018 Actian Corporation. All Rights Reserved. This Documentation is for the end user’s informational purposes only and may be subject to change or withdrawal by Actian Corporation (“Actian”) at any time. This Documentation is the proprietary information of Actian and is protected by the copyright laws of the United States and international treaties. The software is furnished under a license agreement and may be used or copied only in accordance with the terms of that agreement. No part of this Documentation may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopying and recording, or for any purpose without the express written permission of Actian. To the extent permitted by applicable law, ACTIAN PROVIDES THIS DOCUMENTATION “AS IS” WITHOUT WARRANTY OF ANY KIND, AND ACTIAN DISCLAIMS ALL WARRANTIES AND CONDITIONS, WHETHER EXPRESS OR IMPLIED OR STATUTORY, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTY OF MERCHANTABILITY, OF FITNESS FOR A PARTICULAR PURPOSE, OR OF NON-INFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT WILL ACTIAN BE LIABLE TO THE END USER OR ANY THIRD PARTY FOR ANY LOSS OR DAMAGE, DIRECT OR INDIRECT, FROM THE USE OF THIS DOCUMENTATION, INCLUDING WITHOUT LIMITATION, LOST PROFITS, BUSINESS INTERRUPTION, GOODWILL, OR LOST DATA, EVEN IF ACTIAN IS EXPRESSLY ADVISED OF SUCH LOSS OR DAMAGE. The manufacturer of this Documentation is Actian Corporation. For government users, the Documentation is delivered with “Restricted Rights” as set forth in 48 C.F.R. Section 12.212, 48 C.F.R. Sections 52.227-19(c)(1) and (2) or DFARS Section 252.227-7013 or applicable successor provisions. Actian, Actian DataCloud, Actian DataConnect, Actian X, Versant, PSQL, Actian Director, Actian Vector, Actian Vector in Hadoop, EDBC, Enterprise Access, Ingres, OpenROAD, and Vectorwise are trademarks or registered trademarks of Actian Corporation and its subsidiaries. All other trademarks, trade names, service marks, and logos referenced herein belong to their respective companies. Contents 1. Introduction 5 What Is Actian Analytics Database - Vector?. 5 Vector Technology . 5 Vectorised Processing--Calculating Query Answers Fast . 5 Storage Innovations--Beating the Disk Bottleneck . 6 Vector Amazon Machine Image (AMI) . 7 2. Deploying Vector from the AWS Marketplace 9 Access the Vector AMI. 9 Launch and Deploy the Vector AMI. 9 3. Running Queries, Creating Databases and Tables, and Loading Data 15 Using Actian Director. 15 Download and Install Actian Director . 16 Start Director and Connect to the Vector EC2 Instance . 16 Run Queries with Actian Director . 18 Load Sample Data Using Vector CLI and Director . 20 Using the Vector Command Line Interface . 23 Start the Vector Command Line Interface . 24 Run Queries with Actian Vector CLI . 25 Load Sample Data Using the Vector CLI. 27 Remove the Sample Databases. 33 More About Actian Vector . 33 A. More Sample Queries 35 B. Configuring Actian Vector Enterprise Edition on AWS Marketplace 37 1. Choose an Instance Type . 37 2. Choose an Instance Size . 38 3. Select a Price Plan . 40 C. Configuring Storage for Vector on AWS 41 AWS EC2 Storage Concepts and Options . 41 AWS EC2 Root Device Volume. 41 Storage Options . 41 Tuning Volume Layout for Performance . 42 3 Instance Store Volumes . 42 EBS Volumes. 43 Configuring Vector to Use the Newly Set Up Disks. 44 D. Migrating Vector Databases Between AMIs 47 4 1. Introduction This section contains the following topics: What Is Actian Analytics Database - Vector? . 5 Vector Technology . 5 Vector Amazon Machine Image (AMI) . 7 What Is Actian Vector? Actian Vector (hereafter Vector) is a next generation database management system from the Actian family of database products. Vector is targeted at analytical database applications—applications that need to process large volumes of data and perform complex operations on it to derive useful information. Typical examples include data warehousing, data mining, and reporting. Vector is optimized to work with both memory- and disk-resident datasets, allowing it to efficiently process large amounts of data (hundreds of gigabytes). Note: Although it is fast for data analysis, Vector is not meant to be used for traditional transaction processing. For OLTP, you can use other products from Actian such as Ingres Database. Vector Technology Vector introduces a new way of storing data and a completely new mechanism for evaluating queries. Innovations such as vectorised processing, compression, and columnar data layout allow analytical queries to be run fast on a single server, even a laptop. Vectorised Processing--Calculating Query Answers Fast The most distinctive feature of Vector is the “vectorised” method it uses for evaluating queries. Rather than operating on single values from single table records at a time, Vector makes the CPU operate on “vectors,” which are arrays of values from many different records. Such vectorised execution brings out the best in modern CPU technology. It brings to the world of databases the Introduction 5 Vector Technology high performance that modern computers exhibit for scientific calculation, gaming, and multimedia applications. The technical basis for efficiency of vectorised processing is that modern chip technology (be it Intel, AMD, or IBM manufactured) now uses deeply pipelined CPU designs. Keeping all pipelines full—and thus efficiency near peak—is impossible for traditional database engines primarily due to code complexity. Similarly, crucial CPU features such as Intel's Streaming SIMD Extensions (SSE) and Advanced Vector Extensions (AVX) are not used well by traditional database systems. Vectorised processing changes that. It provides efficiency that traditionally is only obtained by computer programs handwritten for one particular task. Also, because of the high clock frequency of current CPUs, database systems now need to treat main memory access as a significant cost factor. Vector tackles this by ensuring that the vectors it operates on fit inside the CPU caches, avoiding unnecessary (and in multi-core systems, often contended) main memory access. Vector takes advantage of multi-core systems by handling multiple queries concurrently or by running single queries in parallel. The improved overall computational efficiency of Vector over traditional commercial relational database technology is at least an order of magnitude for long running analytical queries. Storage Innovations--Beating the Disk Bottleneck Any database system with such a high computational speed runs the risk of becoming I/O bound. For this reason, the second major component of Vector consists of storage innovations designed for high I/O throughput. These innovations include: • Columnar data layout • Advanced compression • Storage indexes The Vector storage mechanism uses columnar data layout, which allows analytical queries to avoid disk access for columns not involved in a query. While you can generally think of Vector storage as a column store, Vector can mix columnar and row-based storage so that certain columns that are always accessed together get stored in the same disk block. Layout decisions are handled automatically by the system, but can also be controlled by the user. To further avoid I/O becoming a performance bottleneck, Vector introduces a number of advanced compression schemes. These schemes are designed for fast decompression. Therefore, accessing compressed data in Vector means that less data needs to come from disk, yet queries do not slow down due to decompression. 6Introduction Vector Amazon Machine Image (AMI) Finally, Vector uses storage indexes. The storage indexes are small and store the minimum and maximum value per data block. The storage index, which is automatically created and maintained, enables the execution engine to rapidly identify candidate data blocks. Vector Amazon Machine Image (AMI) An Amazon Machine Image (AMI) is a special type of virtual appliance used to create a virtual machine within the Amazon Elastic Compute Cloud (“EC2”). The AMI serves as the basic unit of deployment for services delivered using EC2. An AMI is a template that contains a software configuration (for example, an operating system, an application server, and applications). An AMI provides the information required to launch an instance—a virtual server in the cloud. You specify an AMI when you launch an instance, and you can launch as many instances from the AMI as you need.1 The Vector AMI is a Linux image that contains: • Linux operating system—CentOS 7.4 • Vector Community Edition or Enterprise Edition • Sample database table • Sample data—real-world data from the U.S. Bureau of Transportation It is deployed in the Amazon Web Services (AWS) cloud. For more information, see Deploying Vector from the AWS Marketplace on page 9. 1. http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instances-and-amis.html Introduction 7 Vector Amazon Machine Image (AMI) 8Introduction 2. Deploying Vector from the AWS Marketplace This section contains the following topics: Access the Vector AMI . 9 Launch and Deploy the Vector AMI . 9 Access the Vector AMI The Actian Vector AMI is available from the AWS Marketplace at the following locations: • Community Edition: https://aws.amazon.com/marketplace/pp/B07FXYD6GX The Community Edition is limited in size to 100 GB. • Enterprise Edition: https://aws.amazon.com/marketplace/pp/B07FMYGCJL Vector Enterprise Edition has no data limits and entitles you to
Recommended publications
  • Actian Zen Database Product Family Zero DBA, Embeddable Database for Data-Driven Edge Intelligence Applications
    Actian Zen Database Product Family Zero DBA, embeddable database for data-driven Edge intelligence applications Actian Zen database product family Zen offers NoSQL access for data-intensive Key Benefits is a single, secure, scalable Edge data application performance and local Zero DBA, developer-configurable management portfolio that meets the analytics support that leverages all popular NoSQL and SQL needs of on-premise, cloud, mobile and IoT programming languages (C/C++/C#, application developers. Actian Zen provides Java, Python, Perl, PHP, etc.), providing Embed or bundle with your persistent local and distributed data the perfect combination of speed and business-critical applications across intelligent applications deployed flexibility. Developers can choose among Support multiple data tables and in enterprise, branch, and remote field several methods of direct access to data files each up to 64TB environments, including mobile devices without going through a relational layer. Cross platform and version data and IoT. Develop and deploy on Intel or ARM Zen databases also offer SQL access for portability follows your application running Windows 10, Windows 2016 and reporting, query, and local transactions. This Simple upgrades 2019 Servers, Linux, macOS and iOS, Android, enables fast read and quick insert, update, Raspbian Linux distributions, Windows IoT and delete performance alongside full ACID Backward compatibility Core and Windows Nano Servers, supporting response on writes and ANSI SQL queries. JSON, BLOB, and Time-series the
    [Show full text]
  • With Strato, Esgyn Sends Hybrid Data Workloads to the Cloud
    451 RESEARCH REPRINT REPORT REPRINT With Strato, Esgyn sends hybrid data workloads to the cloud JAMES CURTIS 01 NOV 2018 Esgyn is an emerging player in the hybrid processing space that sells a SQL-based query engine based on the Apache Trafodion project. Now the company is introducing a managed cloud service to handle hybrid workloads as it looks to spur US adoption. THIS REPORT, LICENSED TO ESGYN, DEVELOPED AND AS PROVIDED BY 451 RESEARCH, LLC, WAS PUBLISHED AS PART OF OUR SYNDICATED MARKET INSIGHT SUBSCRIPTION SERVICE. IT SHALL BE OWNED IN ITS ENTIRETY BY 451 RESEARCH, LLC. THIS REPORT IS SOLELY INTENDED FOR USE BY THE RECIPIENT AND MAY NOT BE REPRODUCED OR RE-POSTED, IN WHOLE OR IN PART, BY THE RE- CIPIENT WITHOUT EXPRESS PERMISSION FROM 451 RESEARCH. ©2018 451 Research, LLC | WWW.451RESEARCH.COM 451 RESEARCH REPRINT Establishing itself as an up-and-coming player in the hybrid processing space, Esgyn has rolled out an updated version of its EsgynDB database, which is based on Apache Trafodion. The company is also making an active push into the cloud with a managed cloud service called Esgyn Strato, which is ex- pected to be generally available in November on AWS and Azure. THE 451 TAKE With hybrid workloads on the rise, Esgyn is in a good position to ride the current wave. The startup’s core technology of Apache Trafodion hearkens back nearly 30 years to technology developed at Tan- dem and later refined at Hewlett-Packard. As such, the company’s core technology rests on a solid foundation with a proven history.
    [Show full text]
  • Actian Zen Core Database for Android Zero DBA, Embeddable DB for Edge Apps and Smart Devices
    Actian Zen Core Database for Android Zero DBA, embeddable DB for edge apps and smart devices Key Benefits Actian Zen Core database for Android focuses squarely on the needs of Edge and IoT application developers, providing persistent local and distributed data across intelligent Zero DBA, developer-configurable applications embedded in smart devices. Develop using the Android SDK and other 3rd party tools and deploy on any standard or embedded platform running Android. Actian Zen Core SQL and NoSQL database for Android supports zero ETL data sharing to any Actian Zen family server or Embed in local apps client database. Data portability across platforms and Zen Core database for Android is a NoSQL, zero DBA, embeddable, nano-footprint (2MB versions minimum) edge database for SIs, ISVs, and OEMs that need to embed a data management platform in their Android apps, from smart phones to PoS terminals to industrial IoT. With direct Supports peer-to-peer and client-server data access via APIs, self-tuning, reporting, data portability, exceptional reliability, and compatibility, IoT and Edge developers can deliver apps at scale across a Wide range of platforms. Supported Platforms Zero Database Administration Set it and forget it. Edge computing in the World of consumer device and industrial IoT apps Android 5 or higher means no DBA. Zen Edge database is built for non-IT environments, removing need for consultants or DBA supervision. Whether you elect to never touch your app or continually Android Things 1.0 or higher patch and redeploy it, Zen Core database for Android Won’t break your app under any Android SDK 25 or higher circumstances.
    [Show full text]
  • The Ingres Next Initiative Enabling the Cloud, Mobile, and Web Journeys for Our Actian X and Ingres Database Customers
    The Ingres NeXt Initiative Enabling the Cloud, Mobile, and Web Journeys for our Actian X and Ingres Database Customers Any organization that has leveraged technology to help run their business Benefits knows that the costs associated with on-going maintenance and support for Accelerate Cost Savings legacy systems can often take the upwards of 50% of the budget. Analysts and • Seize near-term cost IT vendors tend to see these on-going investments as sub-optimum, but for reductions across your IT and mission critical systems that have served their organizations well for decades business operations and tight budgets, , the risk to operations and business continuity make • Leverage existing IT replacing these tried and tested mission critical systems impractical. In many investments and data sources cases, these essential systems contain thousands of hours of custom developed business logic investment. • Avoid new CAPEX cycles when Products such as Actian Ingres and, more recently Actian X Relational retiring legacy systems Database Management Systems (RDBMS), have proven Actian’s commitment to helping our customers maximize their existing investments without having Optimize Risk Mitigation to sacrifice modern functionality. Ultimately, this balance in preservation and • Preserve investments in existing business logic while innovation with Ingres has taken us to three areas of development and taking advantage of modern deployment: continuation of heritage UNIX variants on their associated capabilities hardware, current Linux and Windows for on-premise and virtualized environments and most importantly, enabling migration to the public cloud. • Same database across all platforms Based on a recent survey of our Actian X and Ingres customer base, we are seeing a growing desire to move database workloads to the Cloud.
    [Show full text]
  • Magic Quadrant for Data Integration Tools
    20/08/2019 Gartner Reprint Licensed for Distribution Magic Quadrant for Data Integration Tools Published 1 August 2019 - ID G00369547 - 92 min read By Analysts Ehtisham Zaidi, Eric Thoo, Nick Heudecker The data integration tool market is resurging as new requirements for hybrid/intercloud integration, active metadata and augmented data management force a rethink of existing practices. This assessment of 16 vendors will help data and analytics leaders make the best choice for their organization. Strategic Planning Assumptions By 2021, more than 80% of organizations will use more than one data delivery style to execute their data integration use cases. By 2022, organizations utilizing active metadata to dynamically connect, optimize and automate data integration processes will reduce time to data delivery by 30%. By 2022, manual data integration tasks (including recognition of performance and optimization issues across multiple environments) will be reduced by 45% through the addition of ML and automated service-level management. By 2023, improved location-agnostic semantics in data integration tools will reduce design, deployment and administrative costs by 40%. Market Definition/Description The discipline of data integration comprises the architectural techniques, practices and tools that ingest, transform, combine and provision data across the spectrum of data types. This integration takes place in the enterprise and beyond — across partners as well as third-party data sources and use cases — to meet the data consumption requirements of all applications and business processes. This is inclusive of any technology that supports data integration requirements regardless of current market nomenclature (e.g., data ingestion, data transformation, data replication, messaging, data synchronization, data virtualization, stream data integration and many more).
    [Show full text]
  • Micro Adaptivity in Vectorwise
    Micro Adaptivity in Vectorwise Bogdan Raducanuˇ Peter Boncz Actian CWI [email protected] [email protected] ∗ Marcin Zukowski˙ Snowflake Computing marcin.zukowski@snowflakecomputing.com ABSTRACT re-arrange the shape of a query plan in reaction to its execu- Performance of query processing functions in a DBMS can tion so far, thereby enabling the system to correct mistakes be affected by many factors, including the hardware plat- in the cost model, or to e.g. adapt to changing selectivities, form, data distributions, predicate parameters, compilation join hit ratios or tuple arrival rates. Micro Adaptivity, intro- method, algorithmic variations and the interactions between duced here, is an orthogonal approach, taking adaptivity to these. Given that there are often different function imple- the micro level by making the low-level functions of a query mentations possible, there is a latent performance diversity executor more performance-robust. which represents both a threat to performance robustness Micro Adaptivity was conceived inside the Vectorwise sys- if ignored (as is usual now) and an opportunity to increase tem, a high performance analytical RDBMS developed by the performance if one would be able to use the best per- Actian Corp. [18]. The raw execution power of Vectorwise forming implementation in each situation. Micro Adaptivity, stems from its vectorized query executor, in which each op- proposed here, is a framework that keeps many alternative erator performs actions on vectors-at-a-time, rather than a function implementations (“flavors”) in a system. It uses a single tuple-at-a-time; where each vector is an array of (e.g.
    [Show full text]
  • Accessing Zen/PSQL Data from ODBC Or Other Applications
    Accessing Zen/PSQL Data From ODBC Or Other Applications A White Paper From For more information, see our web site at http://www.goldstarsoftware.com Accessing Zen/PSQL Data From ODBC (or Other Applications) Last Updated: 02/23/2021 When it comes to "frequently asked questions", this one takes the cake, to be sure. It seems that people are used to databases which provide ODBC access natively (such as FOXPro, Access, etc.) and get confused when they cannot access their own application data immediately. Then, they start “Btrieve-bashing” because they can't get their data out. This document was created to provide some explanation as to what the issues are when it comes to ODBC access and your data, whether it be stored in a current Actian Zen database engine, or one of the older ones, including Actian PSQL, Pervasive PSQL, Pervasive.SQL, and even Btrieve. The material is taken mostly from the PSQL Service & Support classes provided by Goldstar Software. Database Engine Type & ODBC Drivers The first question we have to deal with is the availability of ODBC drivers. If you have a newer engine, then you can skip this section entirely. If you have an older engine, though, then you should read on. Old DOS applications may be using Btrieve 5.x or older for DOS, 5.x for Windows, or even Btrieve 5.x or 6.10 for NetWare. These engines do NOT contain an ODBC driver and will not support 32-bit ODBC access. (MS Access 2.0 had limited support for Btrieve 6.10, but only from 16-bit Windows applications.) If this is the case, then you will need to purchase a new database engine to support this access.
    [Show full text]
  • (Spring 2019) :: Query Execution & Processing
    ADVANCED DATABASE SYSTEMS Query Execution & Processing @Andy_Pavlo // 15-721 // Spring 2019 Lecture #15 CMU 15-721 (Spring 2019) 2 ARCHITECTURE OVERVIEW Networking Layer SQL Query SQL Parser Planner Binder Rewriter Optimizer / Cost Models Compiler Scheduling / Placement Concurrency Control We Are Here Execution Engine Operator Execution Indexes Storage Models Storage Manager Logging / Checkpoints CMU 15-721 (Spring 2019) 3 OPERATOR EXECUTION Query Plan Processing Application Logic Execution (UDFs) Parallel Join Algorithms Vectorized Operators Query Compilation CMU 15-721 (Spring 2019) 4 QUERY EXECUTION A query plan is comprised of operators. An operator instance is an invocation of an operator on some segment of data. A task is the execution of a sequence of one or more operator instances. CMU 15-721 (Spring 2019) 5 EXECUTION OPTIMIZATION We are now going to start discussing ways to improve the DBMS's query execution performance for data sets that fit entirely in memory. There are other bottlenecks to target when we remove the disk. CMU 15-721 (Spring 2019) 6 OPTIMIZATION GOALS Approach #1: Reduce Instruction Count → Use fewer instructions to do the same amount of work. Approach #2: Reduce Cycles per Instruction → Execute more CPU instructions in fewer cycles. → This means reducing cache misses and stalls due to memory load/stores. Approach #3: Parallelize Execution → Use multiple threads to compute each query in parallel. CMU 15-721 (Spring 2019) 7 MonetDB/X100 Analysis Processing Models Parallel Execution CMU 15-721 (Spring 2019) 8 MONETDB/X100 Low-level analysis of execution bottlenecks for in- memory DBMSs on OLAP workloads. → Show how DBMS are designed incorrectly for modern CPU architectures.
    [Show full text]
  • Putting Pandas in a Box
    Putting Pandas in a Box Stefan Hagedorn Steffen Kläbe Kai-Uwe Sattler TU Ilmenau, Germany TU Ilmenau, Germany TU Ilmenau, Germany stefan.hagedorn@tu- steffen.klaebe@tu- [email protected] ilmenau.de ilmenau.de ABSTRACT and therefore occupy even more of the client's RAM and will Pandas { the Python Data Analysis Library { is a powerful eventually fail. A solution would be to not bring the data and widely used framework for data analytics. In this work into the Python program (data shipping), but to bring the we present our approach to push down the computational program to the data (query shipping). Though, the latter part of Pandas scripts into the DBMS by using a transpiler. means the data scientists would need to write SQL queries In addition to basic data processing operations, our approach instead of Python programs to access the data, which is also supports access to external data stored in files instead often not desired since they are not familiar with SQL or the of the DBMS. Moreover, user-defined Python functions are problem is difficult to express. transformed automatically to SQL UDFs executed in the In [4] we sketched our initial idea of the Grizzly framework, DBMS. The latter allows the integration of complex com- a transpiler to generate SQL queries from a Pandas-like API. putational tasks including machine learning. We show the The idea is to let users write a Python program locally and usage of this feature to implement a so-called model join, i.e. send the generated SQL query to the DBMS storing the applying pre-trained ML models to data in SQL tables.
    [Show full text]
  • Actian Zen Embedded Database Zero-Dba, Embeddable, Nano Footprint Database
    Actian Zen Embedded Database Zero-dba, embeddable, nano footprint database The Actian Zen Embedded database delivers a zero-dba, SQL and NoSQL, Key Benefits embeddable, nano footprint database ideally suited to meet the needs of Zero-DBA ISVs and OEMs delivering business critical applications to customers with low or no IT environments. Features like customizable installation, self-tuning, Customizable Installation easy upgrades, seamless backward compatibility and exceptional reliability SQL and NoSQL mean that developers can deliver applications to customers at scale across a wide range of platforms without getting buried by support costs. Simple Upgrades Backward Compatibility SQL and NoSQL Actian Zen includes NoSQL access for performance and SQL access for reporting, providing the perfect combination of speed and flexibility. Supported Platforms Developers can choose between several access methods providing direct access to data without going through a relational layer. This enables very fast Windows 10 access and very quick insert, update and delete performance. Actian Zen Windows Server 2016 also provides direct access via ODBC and JDBC, and support for ADO.NET and Embarcadero developers means ISVs have a wide range of choices for Windows Server 2012 R2 SQL access. Windows 7 and 8 New Btrieve C and C++ API Windows Server 2008 R2 The newest release of Actian Zen Embedded database, v13, includes a new, streamlined, more intuitive API to provide C++ database application developers simplified access to Btrieve calls. Now Actian Zen v13 developers can access the performance and flexibility of the Btrieve engine without having to learn the complexity of the original Btrieve API. The Btrieve 2 API SDK also includes SWIG (Simplified Wrapper and Interface Generator) files for Perl, PHP and Python, enabling developers familiar with those languages to access Btrieve via the new C or C++ libraries.
    [Show full text]
  • Actian Zen Embedded Database Zero-DBA, Embeddable, Nano Footprint Database
    Actian Zen Embedded Database Zero-DBA, embeddable, nano footprint database The Actian Zen Embedded database delivers a zero-DBA, SQL and NoSQL, Key Benefits embeddable, nano footprint database ideally suited to meet the needs of Zero-DBA ISVs and OEMs delivering business critical applications to customers with low or no IT environments. Features like customizable installation, selftuning, Customizable Installation easy upgrades, seamless backward and cross-platform compatibility and SQL and NoSQL exceptional reliability mean that developers can deliver applications to customers at scale across a wide range of platforms without getting buried Simple Upgrades by support costs. Backward Compatibility SQL and NoSQL Data Portability Across Actian Zen includes NoSQL access for performance and SQL access for Platforms and Versions reporting, providing the perfect combination of speed and flexibility. Developers can choose between several access methods providing direct access to data without going through a relational layer. This enables very fast Supported Platforms access and very quick insert, update and delete performance. Actian Zen also provides direct access via ODBC and JDBC, and support for ADO.NET and Windows 10 Embarcadero developers means that ISVs have a wide range of choices for Windows Server 2016 SQL access. Windows Nano Server New Btrieve C and C++ API Windows Server 2012 R2 The v13 release of Actian Zen Embedded database includes a new Windows 7 and 8 streamlined, more intuitive API to provide C++ database application developers simplified access to Btrieve calls. Now Actian Zen v13 developers Windows Server 2008 R2 can access the performance and flexibility of the Btrieve engine without having to learn the complexity of the original Btrieve API.
    [Show full text]
  • Actian Zen Edge Database Zero DBA, Embeddable DB for Edge Apps and Smart Devices
    Actian Zen Edge Database Zero DBA, embeddable DB for edge apps and smart devices Actian Zen Edge database focuses squarely on the needs of Edge and IoT Key Benefits application developers, providing persistent local and distributed data across Zero DBA, developer-configurable intelligent applications and smart devices at the edge. Develop and deploy on Intel or ARM standard or embedded platforms running Windows 10, SQL and NoSQL Windows IoT Core, or Linux, including Raspbian. Zen Edge database extends Embed in local apps or client-server the features of classic PSQL embedded editions to the latest intelligent edge use cases with full backward compatibility. Data portability across platforms and versions Zen Edge database is a SQL/NoSQL, zero DBA, embeddable, nano-footprint edge database for SIs, ISVs, and OEMs that need to embed a data manage- Simple upgrades ment platform in their apps, from smart phones to PoS terminals to industrial Backward compatibility IoT. With both relational and direct data access, self-tuning, reporting, data portability, exceptional reliability, easy upgrades, and backward compatibility, IoT and Edge solution developers can deliver applications at scale across a wide range of platforms. Supported Platforms Raspbian (32-bit ARM) SQL and NoSQL Linux Zen Edge database offers SQL access for reporting and local transactions and NoSQL access for performance and local analytics support, providing the Windows 10 IoT Core perfect combination of speed and flexibility. Developers can choose among several methods of direct access to data without going through a relational Windows Nano Server layer. This enables fast read and quick insert, update and delete performance Intel and ARM alongside full ACID response on writes and ANSI SQL queries.
    [Show full text]