SEIZE THE DATA SEIZE THE DATA. 2015

Size: px
Start display at page:

Download "SEIZE THE DATA. 2015 SEIZE THE DATA. 2015"

Transcription

1 1 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

2 Forward-looking statements This is a rolling (up to three year) Roadmap and is subject to change without notice. This document contains forward looking statements regarding future operations, product development, product capabilities and availability dates. This information is subject to substantial uncertainties and is subject to change at any time without prior notification. Statements contained in this document concerning these matters only reflect Hewlett Packard's predictions and / or expectations as of the date of this document and actual results and future plans of Hewlett-Packard may differ significantly as a result of, among other things, changes in product strategy resulting from technological, internal corporate, market and other changes. This is not a commitment to deliver any material, code or functionality and should not be relied upon in making purchasing decisions. 2 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

3 HP confidential information This is a rolling (up to three year) Roadmap and is subject to change without notice. This Roadmap contains HP Confidential Information. If you have a valid Confidential Disclosure Agreement with HP, disclosure of the Roadmap is subject to that CDA. If not, it is subject to the following terms: for a period of 3 years after the date of disclosure, you may use the Roadmap solely for the purpose of evaluating purchase decisions from HP and use a reasonable standard of care to prevent disclosures. You will not disclose the contents of the Roadmap to any third party unless it becomes publically known, rightfully received by you from a third party without duty of confidentiality, or disclosed with HP s prior written approval. 3 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

4 Avoiding Disasters with Vertica Backup and Restore Stephen Walkauskas John Heffner August, 2015

5 Vertica Backup and Restore overview 5 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

6 Traditional database backup and restore Transaction logs Differential Backup Incremental Backup Database change history. Differences since the last full backup. Differences since the last backup (incremental or full). 6 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

7 Traditional methods don t fit Big Data Transaction logs Differential backup Grows too large and causes long recoveries Grows too large as Delta grows from last full backup Incremental backup Long recoveries and can t drop intermediate restore points All of these approaches require a periodic full backup. 7 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

8 Big data backup and restore Data files in Vertica are write-once, never modified (but like const in C++, can be deleted) Backup Restore Point 0 Restore Point 1 Catalog Catalog Data Snapshot Catalog 8 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

9 Backup and restore performance improvements 9 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

10 Backup process Some detail on how backup works currently (up to 7.1.x) Create durable snapshot. Serialize catalog. Hard link all referenced storage. Copy metadata (catalog). Transport data. Hard link if in prior restore point, else copy. Delete snapshot. Backup Restore Point 0 Restore Point 1 Catalog Catalog Snapshot Catalog 10 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

11 Performance issues with many files Common case: tables with many sparsely-populated columns and many partitions. Vertica compresses these well, but creates a lot of small files. Data copy is incremental, but filesystem operations are not. Lots of random I/O most devices do hundreds per second. Backup can hurt query performance. Two pronged approach to improving performance Create fewer files. Do fewer filesystem operations sequential rather than random I/O. 11 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

12 Create fewer files Pack small ROSes together Put index and data into the same file, get rid of containing directory. Bundle multiple columns into a single file, if ROSes sufficiently small. Partitions, projections, and local segments still use separate files. Bundled automatically at storage container creation, no rewriting or appending. File size significantly larger than filesystem metadata. clickid userid timestamp objectid dbg_info userid clickid timestamp objectid dbg_info ROS Index ROS Data Bundle Footer 12 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

13 Fewer filesystem operations New backup format using manifests Create non-durable snapshot. In-memory reference counts. Track backup location content with a manifest file. Copy only storage not in manifest. Additional benefits: No hard links allows more flexibility in backup locations. NFS mounts, MapR Possibly other filesystems or object stores (hint, hint). Restore Point 0 Catalog Backup Objects Manifest Restore Point 1 Catalog Update Read Snapshot Catalog 13 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

14 Some performance numbers Backups run on test database with large catalog: Three nodes, 119 schemas x 179 non-uniform tables. 850 GB (compressed) stored in 2.4m ROSes. Serialized catalog 4 GB. Unbundled: 4.8m files. 7.1: Hard links Backup time (shorter bars are better) Full backup 348 Minimal incremental minutes 14 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

15 Some performance numbers Backups run on test database with large catalog: Three nodes, 119 schemas x 179 non-uniform tables. 850 GB (compressed) stored in 2.4m ROSes. Serialized catalog 4 GB. Unbundled: 4.8m files. Bundled: 250k files. 7.1: Hard links Backup time (shorter bars are better) Full backup 108 (3.2x) 348 Minimal incremental 94 Bundling + manifests minutes 15 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

16 Some performance numbers Backups run on test database with large catalog: Three nodes, 119 schemas x 179 non-uniform tables. 850 GB (compressed) stored in 2.4m ROSes. Serialized catalog 4 GB. Unbundled: 4.8m files. Bundled: 250k files. 7.1: Hard links Backup time (shorter bars are better) Full backup 108 (3.2x) 348 Minimal incremental 1.1 (82x) 94 Bundling + manifests minutes 16 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

17 New backup and restore features 17 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

18 Selective object restore In Vertica 7.1.x and earlier, you must restore everything you backed up Vertica Backup Backup schema store customers products 18 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

19 Selective object restore In Vertica 7.1.x and earlier, you must restore everything you backed up Backup Vertica store store customers products customers products 19 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

20 Selective object restore In Vertica 7.1.x and earlier, you must restore everything you backed up Backup Vertica store store customers products customers products 20 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

21 Selective object restore In Vertica 7.1.x and earlier, you must restore everything you backed up Backup Restore schema Vertica store store customers products customers 21 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

22 Selective object restore In Vertica 7.1.x and earlier, you must restore everything you backed up Backup Vertica store store customers products customers products 22 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

23 Selective object restore In the next Vertica release, you can select objects to restore, schemas or tables, from a full backup Backup Vertica store store customers products customers products 23 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

24 Selective object restore In the next Vertica release, you can select objects to restore, schemas or tables, from a full backup Backup Vertica store Restore products table from schema store customers products products customers 24 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

25 Selective object restore In the next Vertica release, you can select objects to restore, schemas or tables, from a full backup Works for full and object backups Backup Vertica store store customers products customers products 25 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

26 Replicating objects between databases Replicate schemas and tables between databases New York Data Center Chicago Data Center Vertica - Primary DB Vertica Secondary DB store customers products 26 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

27 Replicating objects between databases Primary and secondary can continue with normal operations New York Data Center Chicago Data Center Vertica - Primary DB Vertica Secondary DB store customers products Replicate schema 27 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

28 Replicating objects between databases Primary and secondary can continue with normal operations A consistent snapshot is replicated to the secondary site New York Data Center Chicago Data Center Vertica - Primary DB Vertica Secondary DB store store customers products customers products 28 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

29 Replicating objects between databases Primary and secondary can continue with normal operations A consistent snapshot is replicated to the secondary site New York Data Center Chicago Data Center Vertica - Primary DB Vertica Secondary DB store store customers products customers products 29 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

30 Replicating objects between databases Primary and secondary can continue with normal operations A consistent snapshot is replicated to the secondary site New York Data Center Chicago Data Center Vertica - Primary DB Vertica Secondary DB store store customers products customers products 30 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

31 Replicating objects between databases Re-sync from primary will bring secondary consistent with the primary New York Data Center Chicago Data Center Vertica - Primary DB Vertica Secondary DB store store customers products Replicate schema customers products 31 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

32 Replicating objects between databases Re-sync from primary will bring secondary consistent with the primary New York Data Center Chicago Data Center Vertica - Primary DB Vertica Secondary DB store store customers products customers products 32 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

33 Replicating objects between databases Recover from secondary site during disasters New York Data Center Chicago Data Center Vertica - Primary DB Vertica Secondary DB store store customers products customers products 33 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

34 Replicating objects between databases Recover from secondary site during disasters New York Data Center Chicago Data Center Vertica - Primary DB Vertica Secondary DB store store customers products Replicate table customers products 34 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

35 Replicating objects between databases Recover from secondary site during disasters New York Data Center Chicago Data Center Vertica - Primary DB Vertica Secondary DB store store customers products customers products 35 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

36 Lightweight table/partition copy Lightning-fast table/partition copy without copying storage Vertica 36 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

37 Lightweight table/partition copy Lightning-fast table/partition copy without copying storage Copy partitions 2011 to 2012 from to 2 Vertica 37 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

38 Lightweight table/partition copy Storage referenced in place, no hard links, portable across file systems Copy partitions 2011 to 2012 from to 2 Vertica 2 38 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

39 Lightweight table/partition copy Storage referenced in place, no hard links, portable across file systems Copy partitions 2011 to 2012 from to 2 Vertica 2 39 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

40 Side-by-side restore In Vertica 7.1.x and earlier, you can only overwrite schemas/tables during restore Backup Vertica Back up 40 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

41 Side-by-side restore In Vertica 7.1.x and earlier, you can only overwrite schemas/tables during restore Backup Vertica 41 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

42 Side-by-side restore $ COPY FROM 4_data.csv ; Backup Vertica 42 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

43 Side-by-side restore $ SELECT DROP_PARTITION(, 1); Backup Vertica 43 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

44 Side-by-side restore $ SELECT DROP_PARTITION(, 1); OOPS, that s a mistake, I want that partition! But now I ve got new data I don t want to have to re-load. Backup Vertica 44 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

45 Side-by-side restore Now you can restore objects side-by-side without overwriting the original table Backup Vertica Restore side-byside 45 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

46 Side-by-side restore Now you can restore objects side-by-side without overwriting the original table Backup Vertica 2 46 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

47 Side-by-side restore $ select swap_partitions_between_tables (, 1, 1, _tmp ); Backup Vertica 2 47 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

48 Side-by-side restore $ DROP TABLE 2 CASCADE; Backup Vertica 48 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

49 Bootstrap Recovery review 49 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

50 Bootstrap recovery All data lost on node001 Two choice from which to recover data: buddy or backup? Backup (node001) Vertica (node002) Vertica (node001) 50 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

51 Recovery sans node restore Backup (node001) Recover buddy containers Vertica (node002) Vertica (node001) 51 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

52 Recovery sans node restore Backup (node001) Recover buddy containers Vertica (node002) Vertica (node001) 52 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

53 Recovery sans node restore Backup (node001) Recover buddy containers Vertica (node002) Vertica (node001) 53 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

54 Recovery sans node restore Backup (node001) Next Backup is not incremental Vertica (node001) 54 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

55 Bootstrap recovery All data lost on node001 Two choice from which to recover data: buddy or backup? Backup (node001) Vertica (node002) Vertica (node001) 55 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

56 Bootstrap recovery Backup (node001) Bootstrap recovery with node restore Vertica (node001) * History is needed to recover * Backup epoch must be greater than AHM 56 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

57 Bootstrap recovery Backup (node001) Bootstrap recovery with node restore Vertica (node001) * Added bonus - less load on buddy node 57 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

58 Bootstrap recovery Backup (node001) Bootstrap recovery with node restore Vertica (node001) 58 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

59 Bootstrap recovery Backup (node001) Proceed with incremental recovery Recover delta between backup epoch and current epoch Vertica (node002) Vertica (node001) 59 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

60 Bootstrap recovery Backup (node001) Next backup is incremental Vertica (node001) 60 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

61 Recovery improvements 61 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

62 Recovery review Recover delta: historical phase No locks Recover delta since backup epoch up to latest epoch Vertica (node002) Vertica (node001) 62 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

63 Recovery review Recover delta: historical phase No locks Recover delta since backup epoch up to latest epoch Vertica (node002) Vertica (node001) 63 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

64 Recovery review Recover delta: historical phase Can have multiple historical phases Starting in 7.1 INSERTS are written to RECOVERING nodes For this reason mostly only deletes are recovered after first historical phase Vertica (node002) INSERT INTO SALES VALUES ( ) Vertica (node001) 64 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

65 Recovery review Recover current: T-lock tables for consistency * Recover delta from last historical phase to current epoch INSERT INTO SALES VALUES ( ) Vertica (node002) Vertica (node001) T 65 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

66 Recovery review Recover current: T-lock tables for consistency Vertica (node002) Vertica (node001) products customers T 66 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

67 Recovery review Recover current: T-lock tables for consistency Vertica (node002) Vertica (node001) T 67 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

68 Recovery review Recover current: T-lock tables for consistency Vertica (node002) Vertica (node001) T T 68 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

69 Recovery review Recover current: T-lock tables for consistency Vertica (node002) Vertica (node001) T T T 69 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

70 Recovery review Recover current: T-lock tables for consistency Vertica (node002) Vertica (node001) T T T 70 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

71 Recovery review Recover current: T-lock tables for consistency Vertica (node002) Vertica (node001) T T T 71 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

72 Recovery review Recover current: T-lock tables for consistency Yikes! Recovery is almost done but it will fail and restart the current phase for all tables if T-lock table times out. T Vertica (node002) Vertica (node001) T T T X 72 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

73 Recovery review Recover current: T-lock tables for consistency Vertica (node002) Vertica (node001) T T T T 73 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

74 Recovery review Recover complete: Node transitions to UP SELECT SUM( ) FROM SALES GROUP BY ; Vertica (node002) Vertica (node001) 74 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

75 Recovery review Recover current: T-lock tables for consistency ERROR: Timeout locking table t Or ERROR: Found drop partition event during recovery Etc T Vertica (node002) Vertica (node001) T T T X 75 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

76 Recover by table Better to recover each table independently and localize most recovery errors to a single table Vertica (node002) Vertica (node001) 76 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

77 Recover by table Recover table s buddy containers Vertica (node002) Vertica (node001) 77 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

78 Recover by table Recover table s buddy containers Vertica (node002) Vertica (node001) 78 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

79 Recover by table Recover table s buddy containers Vertica (node002) Vertica (node001) 79 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

80 Recover by table Recover table delta: mainly deletes, as of 7.1 INSERTS go to RECOVERING node Vertica (node002) Vertica (node001) 80 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

81 Recover by table Recover table delta: mainly deletes, as of 7.1 INSERTS go to RECOVERING node Vertica (node002) Vertica (node001) 81 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

82 Recover by table Recover table delta: mainly deletes, as of 7.1 INSERTS go to RECOVERING node Vertica (node002) Vertica (node001) 82 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

83 Recover by table Recover table current: T-lock table for consistency * Notice: No locks on to this point Vertica (node002) Vertica (node001) 83 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

84 Recover by table Recover table current: T-lock table for consistency * T-lock compatible with INSERT / COPY but not DELETE or DDL Vertica (node002) Vertica (node001) products customers T 84 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

85 Recovery by table Recover table current: T-lock table for consistency Vertica (node002) Vertica (node001) products customers T 85 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

86 Recover by table Recover table current: T-lock table for consistency Vertica (node002) Vertica (node001) T 86 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

87 Recover by table Recover table complete: - Table transitions to UP on RECOVERING node - T-lock released - Table participates in ALL DML and DDL - UP segment on RECOVERING node not used for queries DELETE FROM WHERE ; Vertica (node002) Vertica (node001) UP 87 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

88 Recover by table Repeat process for each table Vertica (node002) Vertica (node001) UP UP 88 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

89 Recover by table Repeat process for each table Vertica (node002) Vertica (node001) UP UP UP 89 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

90 Recover by table Repeat process for each table Vertica (node002) Vertica (node001) UP UP UP UP 90 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

91 Recover by table Recover complete: Node transitions to UP SELECT SUM( ) FROM SALES GROUP BY ; Vertica (node002) Vertica (node001) 91 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

92 Team People to corner at the reception Development Jing Xu John Heffner Tharanga Gameathige Stephen Walkauskas Product Management Ignacio Hwang QA Afeso Ologun George Young Michelle Qian Pan Ye Qinong Liu 92 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

93

SEIZE THE DATA. 2015 SEIZE THE DATA. 2015

SEIZE THE DATA. 2015 SEIZE THE DATA. 2015 1 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. BIG DATA CONFERENCE 2015 Boston August 10-13 Vertica Backup and Restore

More information

SEIZE THE DATA. 2015 SEIZE THE DATA. 2015

SEIZE THE DATA. 2015 SEIZE THE DATA. 2015 1 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. BIG DATA CONFERENCE 2015 Boston August 10-13 Predicting and reducing deforestation

More information

Backup and Recovery 1

Backup and Recovery 1 Backup and Recovery What is a Backup? Backup is an additional copy of data that can be used for restore and recovery purposes. The Backup copy is used when the primary copy is lost or corrupted. This Backup

More information

Innovative technology for big data analytics

Innovative technology for big data analytics Technical white paper Innovative technology for big data analytics The HP Vertica Analytics Platform database provides price/performance, scalability, availability, and ease of administration Table of

More information

Best Practices. Using IBM InfoSphere Optim High Performance Unload as part of a Recovery Strategy. IBM Smart Analytics System

Best Practices. Using IBM InfoSphere Optim High Performance Unload as part of a Recovery Strategy. IBM Smart Analytics System IBM Smart Analytics System Best Practices Using IBM InfoSphere Optim High Performance Unload as part of a Recovery Strategy Garrett Fitzsimons IBM Data Warehouse Best Practices Specialist Konrad Emanowicz

More information

4 Backing Up and Restoring System Software

4 Backing Up and Restoring System Software 4 Backing Up and Restoring System Software In this Chapter... Planning a Backup Strategy, 4-3 Preparing for Disaster Recovery, 4-4 Creating Boot Recovery Diskettes, 4-5 Making a Full Backup Tape, 4-8 Restoring

More information

Database Backup and Recovery Guide

Database Backup and Recovery Guide Scout Diagnostics Database Backup and Recovery Guide P H 803. 358. 3600 F A X 803. 358. 3636 WWW.AVTECINC.COM 100 I N N O VAT I O N P L ACE, L E X I N G T O N SC 29072 Copyright 2013 by Avtec, Inc. All

More information

SQL Server Training Course Content

SQL Server Training Course Content SQL Server Training Course Content SQL Server Training Objectives Installing Microsoft SQL Server Upgrading to SQL Server Management Studio Monitoring the Database Server Database and Index Maintenance

More information

HP Vertica on Amazon Web Services Backup and Restore Guide

HP Vertica on Amazon Web Services Backup and Restore Guide HP Vertica on Amazon Web Services Backup and Restore Guide HP Vertica Analytic Database Software Version: 7.1.x Document Release Date: 8/13/2015 Legal Notices Warranty The only warranties for HP products

More information

50238: Introduction to SQL Server 2008 Administration

50238: Introduction to SQL Server 2008 Administration 50238: Introduction to SQL Server 2008 Administration 5 days Course Description This five-day instructor-led course provides students with the knowledge and skills to administer SQL Server 2008. The course

More information

Trends in Application Recovery. Andreas Schwegmann, HP

Trends in Application Recovery. Andreas Schwegmann, HP Andreas Schwegmann, HP SNIA Legal Notice The material contained in this tutorial is copyrighted by the SNIA unless otherwise noted. Member companies and individual members may use this material in presentations

More information

SAP Note 1642148 - FAQ: SAP HANA Database Backup & Recovery

SAP Note 1642148 - FAQ: SAP HANA Database Backup & Recovery Note Language: English Version: 1 Validity: Valid Since 14.10.2011 Summary Symptom To ensure optimal performance, SAP HANA database holds the bulk of its data in memory. However, it still uses persistent

More information

IBM TSM DISASTER RECOVERY BEST PRACTICES WITH EMC DATA DOMAIN DEDUPLICATION STORAGE

IBM TSM DISASTER RECOVERY BEST PRACTICES WITH EMC DATA DOMAIN DEDUPLICATION STORAGE White Paper IBM TSM DISASTER RECOVERY BEST PRACTICES WITH EMC DATA DOMAIN DEDUPLICATION STORAGE Abstract This white paper focuses on recovery of an IBM Tivoli Storage Manager (TSM) server and explores

More information

How To Create A Replica In A Database On A Microsoft Powerbook 2.5.2.2 (Ahem) On A Linux Server (A.K.A.A)

How To Create A Replica In A Database On A Microsoft Powerbook 2.5.2.2 (Ahem) On A Linux Server (A.K.A.A) SQL Server 2008 R2 Replication High Availability Solution Replication is one of the High Availability features available in SQL Server. Replication is the process of moving data and database schema changes

More information

Chapter 13 File and Database Systems

Chapter 13 File and Database Systems Chapter 13 File and Database Systems Outline 13.1 Introduction 13.2 Data Hierarchy 13.3 Files 13.4 File Systems 13.4.1 Directories 13.4. Metadata 13.4. Mounting 13.5 File Organization 13.6 File Allocation

More information

Chapter 13 File and Database Systems

Chapter 13 File and Database Systems Chapter 13 File and Database Systems Outline 13.1 Introduction 13.2 Data Hierarchy 13.3 Files 13.4 File Systems 13.4.1 Directories 13.4. Metadata 13.4. Mounting 13.5 File Organization 13.6 File Allocation

More information

Upgrading Your SQL Server 2000 Database Administration (DBA) Skills to SQL Server 2008 DBA Skills Course 6317A: Three days; Instructor-Led

Upgrading Your SQL Server 2000 Database Administration (DBA) Skills to SQL Server 2008 DBA Skills Course 6317A: Three days; Instructor-Led Upgrading Your SQL Server 2000 Database Administration (DBA) Skills to SQL Server 2008 DBA Skills Course 6317A: Three days; Instructor-Led About this Course This three-day instructor-led course provides

More information

1. Overview... 2 Documentation... 2 Licensing... 2 Operating system considerations... 2

1. Overview... 2 Documentation... 2 Licensing... 2 Operating system considerations... 2 User Guide BackupAssist User Guides explain how to create and modify backup jobs, create backups and perform restores. These steps are explained in more detail in a guide s respective whitepaper. Whitepapers

More information

NUTECH COMPUTER TRAINING INSTITUTE 1682 E. GUDE DRIVE #102, ROCKVILLE, MD 20850 WEB: www.nutechtraining.com TEL: 301-610-9300

NUTECH COMPUTER TRAINING INSTITUTE 1682 E. GUDE DRIVE #102, ROCKVILLE, MD 20850 WEB: www.nutechtraining.com TEL: 301-610-9300 NUTECH COMPUTER TRAINING INSTITUTE 1682 E. GUDE DRIVE #102, ROCKVILLE, MD 20850 WEB: www.nutechtraining.com TEL: 301-610-9300 MCTS SQL Server 2005 Developer Course Outlines Exam 70 431: TS: Microsoft SQL

More information

Course Outline: Course 6317: Upgrading Your SQL Server 2000 Database Administration (DBA) Skills to SQL Server 2008 DBA Skills

Course Outline: Course 6317: Upgrading Your SQL Server 2000 Database Administration (DBA) Skills to SQL Server 2008 DBA Skills Course Outline: Course 6317: Upgrading Your SQL Server 2000 Database Administration (DBA) Skills to DBA Skills Learning Method: Instructor-led Classroom Learning Duration: 3.00 Day(s)/ 24 hrs Overview:

More information

Best Practices for HP Vertica OEM Customers

Best Practices for HP Vertica OEM Customers HP Vertica Analytics Platform 6.1.x Best Practices for HP Vertica OEM Customers Doc Revision 3 Copyright 2006-2013 Hewlett-Packard Date of Publication: Monday, September 23, 2013 Contents Best Practices

More information

HP PolyServe Software 4.1.0 upgrade guide

HP PolyServe Software 4.1.0 upgrade guide HP StorageWorks HP PolyServe Software 4.1.0 upgrade guide This document describes how to upgrade to HP PolyServe Matrix Server 4.1.0, HP PolyServe Software for Microsoft SQL Server 4.1.0, and HP PolyServe

More information

DB2 - DATABASE SECURITY

DB2 - DATABASE SECURITY DB2 - DATABASE SECURITY http://www.tutorialspoint.com/db2/db2_database_security.htm Copyright tutorialspoint.com This chapter describes database security. Introduction DB2 database and functions can be

More information

Backup and Recovery User Guide

Backup and Recovery User Guide Backup and Recovery User Guide Copyright 2007, 2008 Hewlett-Packard Development Company, L.P. Windows is a U.S. registered trademark of Microsoft Corporation. The information contained herein is subject

More information

Pervasive PSQL Meets Critical Business Requirements

Pervasive PSQL Meets Critical Business Requirements Pervasive PSQL Meets Critical Business Requirements Pervasive PSQL White Paper May 2012 Table of Contents Introduction... 3 Data Backup... 3 Pervasive Backup Agent... 3 Pervasive PSQL VSS Writer... 5 Pervasive

More information

EMC DOCUMENTUM xplore 1.1 DISASTER RECOVERY USING EMC NETWORKER

EMC DOCUMENTUM xplore 1.1 DISASTER RECOVERY USING EMC NETWORKER White Paper EMC DOCUMENTUM xplore 1.1 DISASTER RECOVERY USING EMC NETWORKER Abstract The objective of this white paper is to describe the architecture of and procedure for configuring EMC Documentum xplore

More information

W I S E. SQL Server 2008/2008 R2 Advanced DBA Performance & WISE LTD.

W I S E. SQL Server 2008/2008 R2 Advanced DBA Performance & WISE LTD. SQL Server 2008/2008 R2 Advanced DBA Performance & Tuning COURSE CODE: COURSE TITLE: AUDIENCE: SQSDPT SQL Server 2008/2008 R2 Advanced DBA Performance & Tuning SQL Server DBAs, capacity planners and system

More information

Version: 1.5 2014 Page 1 of 5

Version: 1.5 2014 Page 1 of 5 Version: 1.5 2014 Page 1 of 5 1.0 Overview A backup policy is similar to an insurance policy it provides the last line of defense against data loss and is sometimes the only way to recover from a hardware

More information

Nimble Storage Best Practices for Microsoft SQL Server

Nimble Storage Best Practices for Microsoft SQL Server BEST PRACTICES GUIDE: Nimble Storage Best Practices for Microsoft SQL Server Summary Microsoft SQL Server databases provide the data storage back end for mission-critical applications. Therefore, it s

More information

BackupAssist v6 quickstart guide

BackupAssist v6 quickstart guide New features in BackupAssist v6... 2 VSS application backup (Exchange, SQL, SharePoint)... 3 System State backup... 3 Restore files, applications, System State and mailboxes... 4 Fully cloud ready Internet

More information

CA ARCserve and CA XOsoft r12.5 Best Practices for protecting Microsoft Exchange

CA ARCserve and CA XOsoft r12.5 Best Practices for protecting Microsoft Exchange CA RECOVERY MANAGEMENT R12.5 BEST PRACTICES CA ARCserve and CA XOsoft r12.5 Best Practices for protecting Microsoft Exchange Overview Benefits The CA Advantage The CA ARCserve Backup Support and Engineering

More information

Practical Cassandra. Vitalii Tymchyshyn tivv00@gmail.com @tivv00

Practical Cassandra. Vitalii Tymchyshyn tivv00@gmail.com @tivv00 Practical Cassandra NoSQL key-value vs RDBMS why and when Cassandra architecture Cassandra data model Life without joins or HDD space is cheap today Hardware requirements & deployment hints Vitalii Tymchyshyn

More information

BackupAssist v6 quickstart guide

BackupAssist v6 quickstart guide Using the new features in BackupAssist v6... 2 VSS application backup (Exchange, SQL, SharePoint)... 2 Backing up VSS applications... 2 Restoring VSS applications... 3 System State backup and restore...

More information

EMC MID-RANGE STORAGE AND THE MICROSOFT SQL SERVER I/O RELIABILITY PROGRAM

EMC MID-RANGE STORAGE AND THE MICROSOFT SQL SERVER I/O RELIABILITY PROGRAM White Paper EMC MID-RANGE STORAGE AND THE MICROSOFT SQL SERVER I/O RELIABILITY PROGRAM Abstract This white paper explains the integration of EMC Mid-range Storage arrays with the Microsoft SQL Server I/O

More information

HP External Hard Disk Drive Backup Solution by Seagate User Guide. November 2004 (First Edition) Part Number 373652-001

HP External Hard Disk Drive Backup Solution by Seagate User Guide. November 2004 (First Edition) Part Number 373652-001 HP External Hard Disk Drive Backup Solution by Seagate User Guide November 2004 (First Edition) Part Number 373652-001 Copyright 2004 Hewlett-Packard Development Company, L.P. The information contained

More information

Implementing a Microsoft SQL Server 2005 Database

Implementing a Microsoft SQL Server 2005 Database This class combines two courses into one 5-day class. 2779 (3-day) & 2780 (2-day) Implementing a Microsoft SQL Server 2005 Database Course 2779: Three days; Instructor-Led Introduction This three-day instructor-led

More information

Backing Up the CTERA Portal Using Veeam Backup & Replication. CTERA Portal Datacenter Edition. May 2014 Version 4.0

Backing Up the CTERA Portal Using Veeam Backup & Replication. CTERA Portal Datacenter Edition. May 2014 Version 4.0 Backing Up the CTERA Portal Using Veeam Backup & Replication CTERA Portal Datacenter Edition May 2014 Version 4.0 Copyright 2009-2014 CTERA Networks Ltd. All rights reserved. No part of this document may

More information

Microsoft Exchange 2003 Disaster Recovery Operations Guide

Microsoft Exchange 2003 Disaster Recovery Operations Guide Microsoft Exchange 2003 Disaster Recovery Operations Guide Microsoft Corporation Published: December 12, 2006 Author: Exchange Server Documentation Team Abstract This guide provides installation and deployment

More information

Understanding Disk Storage in Tivoli Storage Manager

Understanding Disk Storage in Tivoli Storage Manager Understanding Disk Storage in Tivoli Storage Manager Dave Cannon Tivoli Storage Manager Architect Oxford University TSM Symposium September 2005 Disclaimer Unless otherwise noted, functions and behavior

More information

Transactions and Recovery. Database Systems Lecture 15 Natasha Alechina

Transactions and Recovery. Database Systems Lecture 15 Natasha Alechina Database Systems Lecture 15 Natasha Alechina In This Lecture Transactions Recovery System and Media Failures Concurrency Concurrency problems For more information Connolly and Begg chapter 20 Ullmanand

More information

Using MySQL for Big Data Advantage Integrate for Insight Sastry Vedantam sastry.vedantam@oracle.com

Using MySQL for Big Data Advantage Integrate for Insight Sastry Vedantam sastry.vedantam@oracle.com Using MySQL for Big Data Advantage Integrate for Insight Sastry Vedantam sastry.vedantam@oracle.com Agenda The rise of Big Data & Hadoop MySQL in the Big Data Lifecycle MySQL Solutions for Big Data Q&A

More information

Best Practices. Best Practices for Installing and Configuring SQL Server 2005 on an LSI CTS2600 System

Best Practices. Best Practices for Installing and Configuring SQL Server 2005 on an LSI CTS2600 System Best Practices Best Practices for Installing and Configuring SQL Server 2005 on an LSI CTS2600 System 2010 LSI Corporation August 12, 2010 Table of Contents _Toc269370599 Introduction...4 Configuring Volumes

More information

SonicWALL CDP 5.0 Microsoft Exchange InfoStore Backup and Restore

SonicWALL CDP 5.0 Microsoft Exchange InfoStore Backup and Restore SonicWALL CDP 5.0 Microsoft Exchange InfoStore Backup and Restore Document Scope This solutions document describes how to configure and use the Microsoft Exchange InfoStore Backup and Restore feature in

More information

System Protection for Hyper-V Whitepaper

System Protection for Hyper-V Whitepaper Whitepaper Contents 1. Introduction... 2 Documentation... 2 Licensing... 2 Hyper-V requirements... 2 Definitions... 3 Considerations... 3 2. About the BackupAssist Hyper-V solution... 4 Advantages... 4

More information

PostgreSQL Backup Strategies

PostgreSQL Backup Strategies PostgreSQL Backup Strategies Austin PGDay 2012 Austin, TX Magnus Hagander magnus@hagander.net PRODUCTS CONSULTING APPLICATION MANAGEMENT IT OPERATIONS SUPPORT TRAINING Replication! But I have replication!

More information

SAP HANA Operation Expert Summit BUILD - High Availability & Disaster Recovery

SAP HANA Operation Expert Summit BUILD - High Availability & Disaster Recovery SAP HANA Operation Expert Summit BUILD - High Availability & Disaster Recovery Dr. Ralf Czekalla/SAP HANA Product Management May 09, 2014 Customer Disclaimer This presentation outlines our general product

More information

HP LeftHand SAN Solutions

HP LeftHand SAN Solutions HP LeftHand SAN Solutions Support Document Application Notes Backup Exec 11D VSS Snapshots and Transportable Offhost Backup Legal Notices Warranty The only warranties for HP products and services are set

More information

RPO represents the data differential between the source cluster and the replicas.

RPO represents the data differential between the source cluster and the replicas. Technical brief Introduction Disaster recovery (DR) is the science of returning a system to operating status after a site-wide disaster. DR enables business continuity for significant data center failures

More information

User Guide. Laplink Software, Inc. Laplink DiskImage 7 Professional. User Guide. UG-DiskImagePro-EN-7 (REV. 5/2013)

User Guide. Laplink Software, Inc. Laplink DiskImage 7 Professional. User Guide. UG-DiskImagePro-EN-7 (REV. 5/2013) 1 Laplink DiskImage 7 Professional Laplink Software, Inc. Customer Service/Technical Support: Web: http://www.laplink.com/contact E-mail: CustomerService@laplink.com Laplink Software, Inc. 600 108th Ave.

More information

A Practical Guide to Backup and Recovery of IBM DB2 for Linux, UNIX and Windows in SAP Environments Part 1 Backup and Recovery Overview

A Practical Guide to Backup and Recovery of IBM DB2 for Linux, UNIX and Windows in SAP Environments Part 1 Backup and Recovery Overview A Practical Guide to Backup and Recovery of IBM DB2 for Linux, UNIX and Windows in SAP Environments Part 1 Backup and Recovery Overview Version 1.4 IBM SAP DB2 Center of Excellence Revision date: 20.08.2009

More information

Celeros EzSANFiler XD Series. Local redundancy and Backup Best Practices

Celeros EzSANFiler XD Series. Local redundancy and Backup Best Practices Celeros EzSANFiler XD Series Local redundancy and Backup Best Practices Last updated April 2009 Celeros Corporation 2008, 2009 All rights reserved X D S e r i e s D a t a R e d u n d a n c y b e s t p

More information

PassTest. Bessere Qualität, bessere Dienstleistungen!

PassTest. Bessere Qualität, bessere Dienstleistungen! PassTest Bessere Qualität, bessere Dienstleistungen! Q&A Exam : ST0-141 Title : Symantec Backup Exec 2012 Technical Assessment Version : Demo 1 / 5 1.The resource-centric model in Symantec Backup Exec

More information

Real World Enterprise SQL Server Replication Implementations. Presented by Kun Lee sa@ilovesql.com

Real World Enterprise SQL Server Replication Implementations. Presented by Kun Lee sa@ilovesql.com Real World Enterprise SQL Server Replication Implementations Presented by Kun Lee sa@ilovesql.com About Me DBA Manager @ CoStar Group, Inc. MSSQLTip.com Author (http://www.mssqltips.com/sqlserverauthor/15/kunlee/)

More information

EMC BACKUP MEETS BIG DATA

EMC BACKUP MEETS BIG DATA EMC BACKUP MEETS BIG DATA Strategies To Protect Greenplum, Isilon And Teradata Systems 1 Agenda Big Data: Overview, Backup and Recovery EMC Big Data Backup Strategy EMC Backup and Recovery Solutions for

More information

HP Data Replication Solution Service for 3PAR Virtual Copy

HP Data Replication Solution Service for 3PAR Virtual Copy HP Data Replication Solution Service for 3PAR Virtual Copy HP Care Pack Services Technical data HP Data Replication Solution Service for 3PAR Virtual Copy provides implementation of the HP 3PAR Storage

More information

Backup and Recovery User Guide

Backup and Recovery User Guide Backup and Recovery User Guide Copyright 2007-2009 Hewlett-Packard Development Company, L.P. Windows is a U.S. registered trademark of Microsoft Corporation. Product notice This user guide describes features

More information

Celeros EzSANFiler XD Series. Local redundancy and Backup Best Practices

Celeros EzSANFiler XD Series. Local redundancy and Backup Best Practices Celeros EzSANFiler XD Series Local redundancy and Backup Best Practices Last updated April 2009 Celeros Corporation 2008, 2009 All rights reserved X D S e r i e s D a t a R e d u n d a n c y b e s t p

More information

EMC Avamar 7.2 for IBM DB2

EMC Avamar 7.2 for IBM DB2 EMC Avamar 7.2 for IBM DB2 User Guide 302-001-793 REV 01 Copyright 2001-2015 EMC Corporation. All rights reserved. Published in USA. Published June, 2015 EMC believes the information in this publication

More information

Informatica Data Replication 9.1.1 FAQs

Informatica Data Replication 9.1.1 FAQs Informatica Data Replication 9.1.1 FAQs 2012 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording or otherwise)

More information

DB2 backup and recovery

DB2 backup and recovery DB2 backup and recovery IBM Information Management Cloud Computing Center of Competence IBM Canada Lab 1 2011 IBM Corporation Agenda Backup and recovery overview Database logging Backup Recovery 2 2011

More information

PETASCALE DATA STORAGE INSTITUTE. SciDAC @ Petascale storage issues. 3 universities, 5 labs, G. Gibson, CMU, PI

PETASCALE DATA STORAGE INSTITUTE. SciDAC @ Petascale storage issues. 3 universities, 5 labs, G. Gibson, CMU, PI PETASCALE DATA STORAGE INSTITUTE 3 universities, 5 labs, G. Gibson, CMU, PI SciDAC @ Petascale storage issues www.pdsi-scidac.org Community building: ie. PDSW-SC07 (Sun 11th) APIs & standards: ie., Parallel

More information

High Availability & Disaster Recovery. Sivagopal Modadugula/SAP HANA Product Management Session # 0506 May 09, 2014

High Availability & Disaster Recovery. Sivagopal Modadugula/SAP HANA Product Management Session # 0506 May 09, 2014 High Availability & Disaster Recovery Sivagopal Modadugula/SAP HANA Product Management Session # 0506 May 09, 2014 Legal Disclaimer The information in this document is confidential and proprietary to SAP

More information

Using HP StoreOnce Backup systems for Oracle database backups

Using HP StoreOnce Backup systems for Oracle database backups Technical white paper Using HP StoreOnce Backup systems for Oracle database backups Table of contents Introduction 2 Technology overview 2 HP StoreOnce Backup systems key features and benefits 2 HP StoreOnce

More information

Hyper-V Protection. User guide

Hyper-V Protection. User guide Hyper-V Protection User guide Contents 1. Hyper-V overview... 2 Documentation... 2 Licensing... 2 Hyper-V requirements... 2 Windows Server 2012 Hyper-V support... 3 2. Hyper-V protection features... 3

More information

Backup and Recovery User Guide

Backup and Recovery User Guide Backup and Recovery User Guide Copyright 2009 Hewlett-Packard Development Company, L.P. Windows is a U.S. registered trademark of Microsoft Corporation. Product notice This user guide describes features

More information

Getting Started Guide

Getting Started Guide Getting Started Guide Microsoft Corporation Published: December 2005 Table of Contents Getting Started Guide...1 Table of Contents...2 Get Started with Windows Server 2003 R2...4 Windows Storage Server

More information

SAP HANA Backup and Recovery (Overview, SPS08)

SAP HANA Backup and Recovery (Overview, SPS08) SAP HANA Backup and Recovery (Overview, SPS08) Andrea Kristen, SAP HANA Product Management October 2014 Disclaimer This presentation outlines our general product direction and should not be relied on in

More information

Software Update, Backup, and Recovery

Software Update, Backup, and Recovery Software Update, Backup, and Recovery User Guide Copyright 2007 Hewlett-Packard Development Company, L.P. Windows is a U.S. registered trademark of Microsoft Corporation. The information contained herein

More information

Hyper-V Protection. User guide

Hyper-V Protection. User guide Hyper-V Protection User guide Contents 1. Hyper-V overview... 2 Documentation... 2 Licensing... 2 Hyper-V requirements... 2 2. Hyper-V protection features... 3 Windows 2012 R1/R2 Hyper-V support... 3 Custom

More information

Backup and Disaster Recovery in Schools

Backup and Disaster Recovery in Schools Backup and Disaster Recovery in Schools White Paper Backup and data recovery within schools is changing due to an ever-expanding amount of data. Coupled with this, schools are moving towards a model of

More information

Plug-In for Informatica Guide

Plug-In for Informatica Guide HP Vertica Analytic Database Software Version: 7.0.x Document Release Date: 2/20/2015 Legal Notices Warranty The only warranties for HP products and services are set forth in the express warranty statements

More information

SAP HANA SAP s In-Memory Database. Dr. Martin Kittel, SAP HANA Development January 16, 2013

SAP HANA SAP s In-Memory Database. Dr. Martin Kittel, SAP HANA Development January 16, 2013 SAP HANA SAP s In-Memory Database Dr. Martin Kittel, SAP HANA Development January 16, 2013 Disclaimer This presentation outlines our general product direction and should not be relied on in making a purchase

More information

Computer Visions Course Outline

Computer Visions Course Outline www.compvisions.com 16 Corporate Woods Blvd. Albany, NY 12211 Computer Visions Course Outline Get What You Want We offer highly customizable group training courses: desktop applications, web development,

More information

SQL Server Storage: The Terabyte Level. Brent Ozar, Microsoft Certified Master, MVP Consultant & Trainer, SQLskills.com

SQL Server Storage: The Terabyte Level. Brent Ozar, Microsoft Certified Master, MVP Consultant & Trainer, SQLskills.com SQL Server Storage: The Terabyte Level Brent Ozar, Microsoft Certified Master, MVP Consultant & Trainer, SQLskills.com BrentOzar.com/go/san Race Facts 333 miles 375 boats invited 33 DNFs Typical Terabyte

More information

IBM Tivoli Storage Manager Version 7.1.4. Introduction to Data Protection Solutions IBM

IBM Tivoli Storage Manager Version 7.1.4. Introduction to Data Protection Solutions IBM IBM Tivoli Storage Manager Version 7.1.4 Introduction to Data Protection Solutions IBM IBM Tivoli Storage Manager Version 7.1.4 Introduction to Data Protection Solutions IBM Note: Before you use this

More information

EISOO AnyBackup 5.1. Detailed Features

EISOO AnyBackup 5.1. Detailed Features EISOO AnyBackup 5.1 Detailed Detailed Content Copyright... 3 EISOO AnyBackup 5.1... 4 1.1 Regular Backup... 4 Regular Backup... 4 File Backup and Recovery... 5 Mail Backup and Recovery... 5 SQL Server

More information

HP D2D NAS Integration with HP Data Protector 6.11

HP D2D NAS Integration with HP Data Protector 6.11 HP D2D NAS Integration with HP Data Protector 6.11 Abstract This guide provides step by step instructions on how to configure and optimize HP Data Protector 6.11 in order to back up to HP D2D Backup Systems

More information

Percona Server features for OpenStack and Trove Ops

Percona Server features for OpenStack and Trove Ops Percona Server features for OpenStack and Trove Ops George O. Lorch III Software Developer Percona Vipul Sabhaya Lead Software Engineer - HP Overview Discuss Percona Server features that will help operators

More information

Symantec NetBackup for Lotus Notes Administrator's Guide

Symantec NetBackup for Lotus Notes Administrator's Guide Symantec NetBackup for Lotus Notes Administrator's Guide for UNIX, Windows, and Linux Release 7.5 Symantec NetBackup for Lotus Notes Administrator's Guide The software described in this book is furnished

More information

Chapter 25 Backup and Restore

Chapter 25 Backup and Restore System 800xA Training Chapter 25 Backup and Restore TABLE OF CONTENTS Chapter 25 Backup and Restore... 1 25.1 General Information... 2 25.1.1 Objectives... 2 25.1.2 Legend... 2 25.1.3 Reference Documentation...

More information

MySQL Enterprise Backup

MySQL Enterprise Backup MySQL Enterprise Backup Fast, Consistent, Online Backups A MySQL White Paper February, 2011 2011, Oracle Corporation and/or its affiliates Table of Contents Introduction... 3! Database Backup Terms...

More information

BrightStor ARCserve Backup for Windows

BrightStor ARCserve Backup for Windows BrightStor ARCserve Backup for Windows Serverless Backup Option Guide r11.5 D01182-2E This documentation and related computer software program (hereinafter referred to as the "Documentation") is for the

More information

CA XOsoft Replication for Windows

CA XOsoft Replication for Windows CA XOsoft Replication for Windows Microsoft SQL Server Operation Guide r12.5 This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for the

More information

In-Memory Data Management for Enterprise Applications

In-Memory Data Management for Enterprise Applications In-Memory Data Management for Enterprise Applications Jens Krueger Senior Researcher and Chair Representative Research Group of Prof. Hasso Plattner Hasso Plattner Institute for Software Engineering University

More information

Disaster Recovery Checklist Disaster Recovery Plan for <System One>

Disaster Recovery Checklist Disaster Recovery Plan for <System One> Disaster Recovery Plan for SYSTEM OVERVIEW PRODUCTION SERVER HOT SITE SERVER APPLICATIONS (Use bold for Hot Site) ASSOCIATED SERVERS KEY CONTACTS Hardware Vendor System Owners Database Owner

More information

MS SQL Server 2014 New Features and Database Administration

MS SQL Server 2014 New Features and Database Administration MS SQL Server 2014 New Features and Database Administration MS SQL Server 2014 Architecture Database Files and Transaction Log SQL Native Client System Databases Schemas Synonyms Dynamic Management Objects

More information

Module 14: Scalability and High Availability

Module 14: Scalability and High Availability Module 14: Scalability and High Availability Overview Key high availability features available in Oracle and SQL Server Key scalability features available in Oracle and SQL Server High Availability High

More information

How To Manage A Data Warehouse On A Database 2 For Linux And Unix

How To Manage A Data Warehouse On A Database 2 For Linux And Unix IBM Smart Analytics System IBMr Best Practices Building a Recovery Strategy for an IBM Smart Analytics System Data Warehouse Dale McInnis IBM DB2 Availability Architect Garrett Fitzsimons IBM Smart Analytics

More information

Symantec NetBackup for Microsoft SharePoint Server Administrator s Guide

Symantec NetBackup for Microsoft SharePoint Server Administrator s Guide Symantec NetBackup for Microsoft SharePoint Server Administrator s Guide for Windows Release 7.5 Symantec NetBackup for Microsoft SharePoint Server Administrator s Guide The software described in this

More information

Redundancy Options. Presented By: Chris Williams

Redundancy Options. Presented By: Chris Williams Redundancy Options Presented By: Chris Williams Table of Contents Redundancy Overview... 3 Redundancy Benefits... 3 Introduction to Backup and Restore Strategies... 3 Recovery Models... 4 Cold Backup...

More information

Symantec NetBackup OpenStorage Solutions Guide for Disk

Symantec NetBackup OpenStorage Solutions Guide for Disk Symantec NetBackup OpenStorage Solutions Guide for Disk UNIX, Windows, Linux Release 7.6 Symantec NetBackup OpenStorage Solutions Guide for Disk The software described in this book is furnished under a

More information

Symantec Backup Exec 2014 Icon List

Symantec Backup Exec 2014 Icon List Symantec Backup Exec 2014 Icon List Alerts Image Description Alert needs attention Alerts Alert needs attention Alert needs attention Alert needs attention Error Error Error Error Informational alert Informational

More information

Symantec NetBackup Blueprints

Symantec NetBackup Blueprints Symantec NetBackup Blueprints Blueprint for Microsoft Active Directory Symantec Education Services Symantec NetBackup Blueprints 1 Symantec NetBackup Blueprints FEEDBACK FEEDBACK Please hide this slide

More information

Ryusuke KONISHI NTT Cyberspace Laboratories NTT Corporation

Ryusuke KONISHI NTT Cyberspace Laboratories NTT Corporation Ryusuke KONISHI NTT Cyberspace Laboratories NTT Corporation NILFS Introduction FileSystem Design Development Status Wished features & Challenges Copyright (C) 2009 NTT Corporation 2 NILFS is the Linux

More information

Backup and Recovery FAQs

Backup and Recovery FAQs May 2013 Page 1 This document answers frequently asked questions regarding the Emerson system Backup and Recovery application. www.deltav.com May 2013 Page 2 Table of Contents Introduction... 6 General

More information

SAP HANA Storage Requirements

SAP HANA Storage Requirements SAP HANA Storage Requirements As an in-memory database, SAP HANA uses storage devices to save a copy of the data, for the purpose of startup and fault recovery without data loss. The choice of the specific

More information

SQL Object Level Recovery Native 1.1

SQL Object Level Recovery Native 1.1 SQL Object Level Recovery Native 1.1 September 2009 Note: these pages apply to a version of this product that is not the current released version. For the latest support documentation, please see http://documentation.red-gate.com

More information

Integrating Data Protection Manager with StorTrends itx

Integrating Data Protection Manager with StorTrends itx Integrating Data Protection Manager with StorTrends itx INTEGRATING DATA PROTECTION MANAGER WITH STORTRENDS ITX 2 1. Introduction 2 2. Test Environment 2 Requirements 2 3. Setting up the Application Servers

More information