Oracle Database Performance Management Best Practices Workshop. AIOUG Product Management Team Database Manageability

Size: px
Start display at page:

Download "Oracle Database Performance Management Best Practices Workshop. AIOUG Product Management Team Database Manageability"

Transcription

1 Oracle Database Performance Management Best Practices Workshop AIOUG Product Management Team Database Manageability

2 Table of Contents Oracle DB Performance Management... 3 A. Configure SPA Quick Check...6 B. Find: Performance Problem Diagnosis C. Fix: Tune Regressed SQL D. Validate: Validate Tuning Using SPA Quick Check on Production E. Concurrent Replay [Optional] Appendix A. How to start EM 12c? Appendix B. How to Reset SPA in Section B, C and D? Appendix C. Real Application Testing overview and Business Cases Page 2 of 65

3 Oracle DB Performance Management Objective: The objective of this lab is to provide exercises designed to showcase database performance management capabilities (toolset), methodology and associated best practices using Oracle Enterprise Manager Cloud Control 12c. Students will learn to apply the Find-Fix-Validate performance tuning methodology to diagnose performance bottlenecks, tune SQL statements with poor performance in a safe way directly on production and make sure that the overall result of the tuning activity doesn t cause new regression. By improving performance we will be able to free enough resources on the server to perform a server consolidation. We will therefore validate that there are enough capacity on the server after consolidation. Functional Coverage: In this lab you will go through new features in the following functional areas: Database Performance management A. Configure SPA Quick Check B. Find: Performance Problem Diagnosis C. Fix: Tune Regressed SQL D. Validate: Validating Tuning Using SPA Quick Check E. Concurrent Replay Page 3 of 65

4 environment setup Your environment has already been setup for the lab. Below are the details of the machine, VNC, and EM URLs. Oracle Enterprise Manager URL: username: dbuser password: oracle12 PDB prod12 _DW Credentials: Select Named Credential use DB_SYS_GLOBAL Host Named credential: HOST_ORACLE VNC Viewer Use VNC Viewer to connect to the machine allocated to your machine, localhost:1, password is oracle12 Putty (Alternative to VNC Viewer) Log on to your environment localhost:22 using Putty Username: oracle Passwd : oracle12 Page 4 of 65

5 1. Logon with VNC to your assigned machine (machine_ip-address:1) Password: oracle12 2. Open a terminal: Right click in VNC window 3. Change directory to scripts, the scripts to start / stop databases are here, note you re using prod12db, but since the database is already started you can skip this step cd lab/scripts Page 5 of 65

6 A. Configure SPA Quick Check Estimated Time to Complete Use Case: 15 minutes Business Case Changes in production should always be validated to make sure that the change doesn t cause any regression. When refreshing Optimizer Statistics for example, we want to make sure that not just the overall performance becomes better but also that no SQL statement, especially business critical ones have regressed. It doesn t help us to increase the overall performance by 50% if key order entry application degrades in performance as a result of refreshing statistics. To make sure that tuning exercises are completed successfully, we need to validate it by executing SQL statements that cover most of the workload. SPA Quick Check uses a predefined SQL Tuning Set and optimized testing configuration for use in a production environment. We are going to configure SPA Quick check with a pre collected SQL Tuning Set and use the most optimal method for executions. In this lab we will use an Oracle Database 12c Container database (prod12) with one pluggable database (dw). 1. Configure SPA Quick Check 1.1 From your laptop machine, open Firefox or Chrome browser and Log into Enterprise Manager Cloud Control. Note you re not using VNC brower but laptop browser. 1.2 Please use URL: Login: dbuser/oracle12 Page 6 of 65

7 1.4 Click on Target -> Databases. 1.5 Expand the prod12 database and within the Pluggable databases, select the Pluggable Database prod12_dw Page 7 of 65

8 1.6 Select Performance -> SQL -> SQL Performance Analyzer Setup 1.7 Logon using named Credential DB_SYS_GLOBAL Page 8 of 65

9 1.8 Select SQL Tuning Set (STS PENDING_STATS_WKLD ). Click on to get the complete list of STS. Note that you may find it has already been selected in your case which is fine. This is the setup page for SPA Quick Check. It gives 3 options for Trial Method. Optimal is the default. Optimal Trial Mode: This is the recommended mode. It finds SQLs with plan changes first by generating plans, then test-execute every SQL statement with plan changes to validate performance changes. Per-SQL Time Limit: Default is 300 seconds if the statement has not finished by then it will be terminated and not validated. Comparison Metric: Choose Buffer Gets. This metric will show us how much work that is done for the statement by measuring logical reads. This metric is stable and will not be impacted if the SQL is executed during peak or non-peak load. This database is not configured with Resource Consumer Groups but this is a way to make sure that the statement will have limited impact on the server. Be aware that this can cause a statement to be terminated once it exceeds the defined Per-SQL Time Limit. Save the changes you have made by clicking on Save. We have now configured SPA Quick Check so it can be used in future exercises. Page 9 of 65

10 Environment Details: B. Find: Performance Problem Diagnosis Database prod12 is a multitenant database and it contains only one PDB for the moment. The plan was to move the manufacturing calculation data warehouse (PDB name DW) first and later on move the order Entry system as well. DW has been in production for several months after the migration to the new Linux server. Performance was acceptable during the first month but has slowly degraded due to a combination of increasing data volume and more users. Estimated Time to Complete Use Case: 17 minutes Business Case You have been asked to tune the database. But under no circumstance is it allowed to cause any performance degradation since it might cause the manufacturing process to stop with a cost of over $1M a day. In this exercise we are supposed to identify slow SQL statements so we can tune them. 2.1 You should already be logged on to Enterprise Manager. If you are not, please follow the instructions detailed in earlier section of this workbook. 2.2 Go to Enterprise -> Job -> Library 2.3 Select RUN_PRODUCTION_WORKLOAD Click Submit. Page 10 of 65

11 2.4 Click Submit. (the second submit is a confirmation), note there is no need to select em12 target, it is picked up automatically The workload has now started. Just to make sure that the load has ramped up please wait about 1 minute. The job can be monitored by right clicking on the job name and opening it in a new page. Page 11 of 65

12 2.5 It is now time to see how the database behaves and if there are any SQL statements that indicates poor performance Click on Targets -> Databases 2.6 Select pluggable database prod12.oracle.com_dw in prod12.oracle.com 2.7 Wait for 5-7 minutes till the workload that you submitted ramps up so that the top SQL intended for tuning in this lab appears on the ASH Analytics page. You can explore ASH Analytics feature meanwhile. Go to Performance -> ASH Analytics to view the information on the page, but do not perform any actions until after 5 minutes. Page 12 of 65

13 2.8 Select a period of time during the first spike. (If the spike is not as distinct as it is in the picture please select the first 5 minutes of the workload). 2.9 By default the ASH analytic page is displayed in Activity mode. The load map mode will give us more fine grained information so let s switch to this mode. Click Load Map 2.10 We can see that most of the time is spent in CPU + Wait for CPU. Page 13 of 65

14 2.11 Let s change dimension and see which part of the application is using our resources. Click on the drop down list with current value Wait Class, Wait Event and select Module, Action 2.12 Our resources are used by Action STAT. Let s drill down even further to see which SQL statements are the main contributors. Click on the box for STAT Page 14 of 65

15 2.13 Select Wait Class, SQL ID 2.14 We have now identified our queries that use most resources (You may see SQL IDs 99v2f8wz5am4x, 706vj3n6jvxzn and 807g9b91wb9s5). So let s remove our filters and go back to the activity view Click on filter Action STAT Click on Activity Page 15 of 65

16 C. Fix: Tune Regressed SQL In previous section we identified three statements which are the main contributors for resource consumption. Our goal is to improve the performance of these statements without causing any regressions. Tuning can be done in several ways, one option is to send our statements back to our developers and they can run manual tuning on them. But if it is complex statements or if it is an application delivered by an Application vendor then we might get the answer that it will be implemented in the next release. Instead we are going to use SQL Tuning Advisor to find out if it can help us with some advice. 3.1 As we can see there are a couple of SQL Statements that cause the major part of the activity. You should see SQL id 99v2f8wz5am4x, 706vj3n6jvxzn and 807g9b91wb9s5. You can hover over the SQL id for each SQL and see the initial part of the SQL text. Select these Three SQL Please Note: The number of SQLs to tune can be different, depending upon where your slider window in ASH ANALYTICS is at. Also the SQL ID s can be different. So the screen shots given below may differ. Click Tune SQL Page 16 of 65

17 3.2 Review job detail and for easier identification change the name to SQL_TUNING_BB where BB is your initials. Change Time Limit per Statement : 2 (minutes) Click Submit 3.3 The tuning task will run for 5 to 10 minutes. You can see the progress and the cumulative benefits on the screen Page 17 of 65

18 3.4 As we can see Tuning advisor has given tuning recommendations for us in the form of SQL profiles, indexes and new statistics that we should investigate further. Click on Show all results. This constitutes the Fix or the solution for the problem identified as part of the Find-Fix-Validate performance methodology. Page 18 of 65

19 D. Validate: Validate Tuning Using SPA Quick Check on Production Estimated Time to Complete Use Case: 22 minutes Business Case SQL Tuning Advisor has now given us advice to create SQL Profiles, create indexes and gather new statistics. We will now implement the advice that will give us most benefits. But since we are not allowed to jeopardize current performance then we need to validate that our advices are risk free to implement. This will be done with SPA Quick Check 4.1 The largest benefit comes by creating SQL Profiles. New indexes have almost as high a benefit. But indexes will definitely cause performance penalty during insert and updates and can also cause other SQL to regress. We can also see that statistics are stale so we should have a look at statistics gathering later on. This is because refreshing Optimizer statistics during peak periods may impact the performance of the system. Let s start with SQL profiles. Will we be able to gain what SQL Tuning Advisor have predicted? Click on Validate All Profiles with SPA Page 19 of 65

20 4.2 Enterprise Manager has now created a SQL Performance Analyzer Task for validating the performance. Click on the SPA Task 4.3 The SPA Task will run for about 1 minute when Last Run Status is completed click on the Name. Page 20 of 65

21 4.4 There are four trials executed, first and second are only comparing execution plans, third and forth are full executions of regressed SQL statements (subset of the workload) Let s see the comparison result from the third and fourth trial. Click on the glasses for the second comparison report. 4.5 As we can see the performance improvement is in line with what the SQL Tuning Advisor recommended. The benefit may be slightly different from what you see on the screenshot below. Per SQL Tuning Advisor's recommendations, let s implement the SQL Profiles. Click on the breadcrumb for Advisor Central. Page 21 of 65

22 4.6 Identify your tuning task and click on the name 4.7 Click on SQL Profile 4.8 Click on Implement All SQL Profiles Page 22 of 65

23 4.9 Check Implement the new profile(s) with forced matching and click Yes We have now implemented our new profiles. Let s see if this had any impact on the workload. Go to Performance -> ASH Analytics 4.11 Can we see any performance improvement? Page 23 of 65

24 4.12 We had a tuning advice to refresh Optimizer statistics. Let s see if this will improve the performance even further Go to Enterprise -> Job -> Library Select RESET_LAB_SPA_STATS_VALIDATE 4.14 Click Submit. (the second submit is a confirmation), you do not have to select the target Page 24 of 65

25 The Job will take few seconds to finish Click on Targets -> Databases. Select pluggable database prod12.oracle.com_dw in prod12.oracle.com 4.16 Go to Performance -> SQL -> Optimizer Statistics 4.17 This database is configured to gather statistic in Pending mode. This is done to make sure that new statistics doesn t surprise us with changed plans that causing poor performance. We are now going to gather statistics for the data warehouse schema STAT1 Click Gather Page 25 of 65

26 Page 26 of 65

27 4.18 Select Schema Check Validate impact. (Important and is at the bottom of the page) Click Next 4.19 Click Add 4.20 Search for STAT1 Select schema STAT1 Click OK Page 27 of 65

28 4.21 Click Next 4.22 Click Next 4.23 Click Submit Page 28 of 65

29 4.24 A SPA task has just been created and will start as soon as the statistic gathering has finished. Click on the job name 4.25 The SPA task will take about a minute. When Last Run Status becomes completed click on the Name Page 29 of 65

30 4.26 As in previous SPA task we have four trials. The first comparison will show changes in Optimizer cost which indicates new execution plan but the second comparison will show the changes in buffer gets for statements with new plans. So let s bring up the second SPA report by clicking on the glasses We can see that we have 2 improved statements and no regression. The improvement is 86 % on the workload which is very good. We have now guaranteed that new statistic will improve performance. Lets publish the new statistic Click Publish Object Statistics. Page 30 of 65

31 4.28 Let s find schema STAT1 tables so we can publish the statistic Change type to Table Set Schema to STAT1 Change scope to Pending Click GO Change action to Publish. Select one table, Click Go beside Action. Repeat this for each table. For purpose of the lab we ll skip this step of publishing statistics and move on to next section. At this point we have succeeded with tuning of prod12 database. Our next mission is to consolidate our OLTP database with the Data Warehouse. We can now stop database prod12 and start database prod. This should be done from the started terminal window in VNC. Page 31 of 65

32 E. Concurrent Replay [Optional] Business Case It is not uncommon that different applications have their peaks during different business hours. To have individual servers for each application will cause many servers to be underutilized for the majority part of the time. Consolidating applications that have peak workload during different hours/days/weeks/months will therefore help us utilize database servers in a better way. To simplify the exercise we have already performed a capture of the DW pluggable database and will perform a capture of the OLTP database. We will then perform a concurrent replay of both workloads. NOTE! - Best Practices for Database replay is to perform SQL Performance Analyzer to validate that there are no regression due to the implemented change. Since we have been working with SQL Performance Analyzer in previous exercise then we will skip this part. The DW pluggable database in test has all tuning recommendations implemented from previous exercise and we have also made sure that there are no regressions in the OLTP pluggable database either. Estimated Time to Complete Use Case: 30 minutes, recommended workflow 5. Capture Workload from Prod Database 5.1. You should already be logged on to Enterprise Manager. If you are not, please follow the instructions detailed in the Configure SPA Quick Check of this workbook. You should have shutdown prod12 db and started prod database at the end of the previous lab Navigate to Database Replay : From the menu, Enterprise -> Quality Management -> Database replay Page 32 of 65

33 5.3. We have already performed capture for both DW and OLTP that you can use if short on time. However, we ll walk you through capture workflow to get familiar with the steps. Click on Captured Workload Click on Create 5.4. Check both boxes in Capture Prerequisites Click Next 5.5. Click Add. Page 33 of 65

34 5.6. Enter: Capture Name : OLTP_CAPTURE_10m_XX (where XX are your initials) Database Target : prod.oracle.com (use Search icon ) Select prod.oracle.com and click Select Select Named Database credential: Select Named Database Host Credential: DB-SYS-GLOBAL HOST-ORACLE (ORACLE) Enter Database Capture Storage Root Location, type in: /home/oracle/scripts/dbpack/rat_cap Click OK. Note: Typing the directory name seemed to work, due to security privileges on folders. Page 34 of 65

35 5.7. Click Next By default all user activity is captured but EM monitoring will be present during replay as well so this activity should be excluded. This will be done by default when starting capture from Enterprise Manager. Click Next Change Duration to 10 minutes. Click Next. Page 35 of 65

36 5.10. Review the information. Click Submit It s time for us to start the OLTP production workload. Navigate to Enterprise -> Job -> Library Page 36 of 65

37 5.12. Select job DB_REPLAY_RUN_WORKLOAD Click Submit Click Submit The capture job has now started and will be running for about 10 minutes. You can review the status from Database replay Home page. The page does not have an auto refresh so please refresh it manually. Note it may take a few minutes to refresh the page. When Capture status is changed to Completed in about 10 minutes, continue to the next step. Page 37 of 65

38 5.15. We are now ready with capture from prod Next step is to replay the workload against test. To do this we need to stop prod.oracle.com and start test.oracle.com. Go to your terminal in VNC Page 38 of 65

39 6. Concurrent Replay 6.1 You should already be logged on to Enterprise Manager. If you are not, please follow the instructions detailed in the Configure SPA Quick Check of this workbook. 6.2 First we need to reset the test database for the replay 6.3 Go to Enterprise -> Job -> Library 6.4 Select DB_REPLAY_SETUP Click Submit. Page 39 of 65

40 6.5 Click Submit 6.6 Navigate to Database Replay From the Menu, Enterprise Quality Management Database replay Page 40 of 65

41 6.7 Go to Tab replay Task. Click on Replay Task Click Create Page 41 of 65

42 6.8 Enter: Name: Replay_For_Consolidation_XX (where XX should be your initials) Select your created OLTP capture and the pre-created DW_CAPTURE_10m Select Copy workload to a new replay directory For each source workload in drop down menu make sure to use named credential: HOST-ORACLE(ORACLE) For Source Workload Directories: Capture Name: select 'OLTP_CAPTURE_10m_XX' (where XX should be your initials) Select Named Credential HOST-ORACLE For Replay Directory: Host: em12.oracle.com Select Named Credential HOST-ORACLE Enter Consolidated Replay Directory : /home/oracle/scripts/dbpack/rat_replay Click Submit. Note: Typing the directory name seemed to work, due to security privileges on folders. Page 42 of 65

43 6.9 Click on the newly created replay task Page 43 of 65

44 6.10 Click Create to create a replay. Enter a name for the Replay Select target database If test.oracle.com is not preselected use following procedure to select the database: Use to find the test database In Target Name enter test Click Search Select test.oracle.com Click Select Page 44 of 65

45 6.11 Each workload is stored in our capture repository and is not currently preprocessed. Click the icon for Preprocess Workload Select named Credential DB-SYS-GLOBAL 6.13 Check Use an existing directory with Multiple workload subdirectories on this host Click Next Page 45 of 65

46 6.14 Select Directory Object RAT_REPLAY Click Next 6.15 Select: Credential Name: HOST-ORACLE(ORACLE) Click Next 6.16 Click Submit Page 46 of 65

47 6.17 A preprocess job has now been created. You can monitor the job by Right click on the job and open in another tab. The job will take 2 3 minutes to complete. When pre-processing has completed Click the icon for Replay Workload 6.18 For Database Credential use named credential DB-SYS-GLOBAL For Database Host Credential use named credential HOST-ORACLE(ORACLE) Click Next Page 47 of 65

48 6.19 Select Use an existing directory object Select Directory Object: RAT_REPLAY Click Next 6.20 Our replay is against the container database but our different workloads shall be replayed against different pluggable databases. Therefore we need to remap our connections against each pluggable database Select Capture Name : DW_CAPTURE_10m Change SID=test to service_name=dw_test.oracle.com Click Test Connection and make sure you get Page 48 of 65

49 Select Capture Name : OLTP_CAPTURE_10m_XX (where XX are your initials) Change SID=test to service_name=oltp.oracle.com Click Test Connection and make sure you get. Click Next 6.21 Click Add Page 49 of 65

50 6.22 Select Host: em12.oracle.com Host Credential: Use Named: HOST-ORACLE(ORACLE) Enter the following information: Replay Client Host Configuration: Client Oracle Home: Client Replay Directory: Client Work Directory: /u01/home/oracle/db12c /home/oracle/scripts/dbpack/rat_replay /tmp Database Credential Use Named: DB-SYSTEM-NORMAL Click OK Page 50 of 65

51 6.23 Click Next 6.24 Click Start Clients 6.25 When client have been started click Next Page 51 of 65

52 6.26 Click Submit 6.27 The replay has now started. If you want to monitor the replay Click on the Replay Task: breadcrumb Page 52 of 65

53 6.28 Click on the Replay Name 6.29 During the replay you will be able to see the progress and Replay statistics like number of user calls, and DBtime. We can follow and compare User Calls, Average Active Sessions and Database time between capture and replay Turn on Auto Refresh and set it to 1 Minute. Replay statistics will only be updated once a minute. This page takes a few minutes to refresh in the beginning. Page 53 of 65

54 6.30 When the replay has finished then we have the ability to generate a various types of reports for performance analysis. We have also the ability to generate reports from the replay. There is a section for Replay divergence summary where we can see the overall quality of the replay. In general terms, a replay with less than 5% divergence in total should be seen as a very successful replay. It is possible to drill down on Replay divergence where we can group errors or drill down to individual calls. Click on Reports tab If you have time please review the replay report. You can even produce ASH reports for a deeper analysis. Page 54 of 65

55 6.31 Let s view the Database Replay Report. Click on View Page 55 of 65

56 6.32 This report contains an overview information of individual captures and replays Page 56 of 65

57 6.33 Let s view the Replay Compare report. Click on View 6.34 This report includes a more detailed analysis of our replays. First section is an overview. Page 57 of 65

58 6.35 Further down in the report we can see a more detailed analysis with breakdown on individual SQL statements. Page 58 of 65

59 6.36 Top SQL statements divided by DB Time, CPU Time and Wait Time 6.37 We can also use Ash Analytics to generate Active reports. Active reports are HTML reports where we can perform drilldown. So let s choose the first report. Select Total Workload Service and Module by workload Click View Page 59 of 65

60 6.38 This report shows when we had a peak workload and which application generated the workload. We can see that The Data warehouse application is very well tuned but there is a spike in the OLTP application. As we can see we are actually exceeding the number of CPU s during this peak and to be able to consolidate these applications we should perform a deeper investigation. But it is out of the scope for this exercise. You have now learned how to investigate and troubleshoot performance issues by replaying and using the find fix and validate methodology. It should be possible to solve these issues as well. This is an active report so we can change the display type to load map which will give us another view and a more detailed picture of where the DBtime is spent. Page 60 of 65

61 You have now finished the consolidated replay lab. We have now seen how you can use Real Application Testing Database Replay to validate a database consolidation using Database 12c pluggable databases. We have also seen the extensive reporting that will help us to find and analyze bottlenecks or peaks during certain workloads. We hope that this has given you a good overview on how to use the new consolidated replay feature. Page 61 of 65

62 Appendix A. How to start EM 12c? This lab requires targets to be started by running the script em_start.sh. If you haven t already, please make sure to run the em_start.sh script now. Refer steps in the lab cheat sheet. ssh or VNC to your VM as OS user oracle. The password for this account is oracle12. Once logged in open a terminal window and change directory to scripts $cd scripts $./em_start.sh Appendix B. How to Reset SPA in Section B, C and D? Go to Enterprise -> Job -> Library Select SPA_STATS_SETUP Page 62 of 65

63 Click Submit. Click Submit Page 63 of 65

64 Appendix C. Real Application Testing overview and Business Cases A. SQL Performance Analyzer Optimizer Statistics Business Case When gathering new statistics it is not uncommon that the new statistics cause the optimizer to choose a new query plan. In most cases the new plan will be more efficient but sometimes it causes query regression. As a DBA it is important to proactively predict how new statistics will change the overall performance in the database. With SQL Performance Analyzer (SPA) you have the ability to execute most of your SQL statements that occur in your database. We have the ability to gather production SQL statements into SQL Tuning Sets either incrementally from Cursor Cache or AWR history for the period of time that we want to test. For the purpose of the lab, we have one precreated SQL Tuning Set which is representative of the peak workload of this application. We have also gathered statistics in pending mode for validation. So, let s see if the new statistics will change the performance for this application. Workflow overview In this exercise we will learn to use the SPA guided workflow for Optimizer Statistics validation, how to tune regressed statements and how to implement pending statistics on tables. This exercise will be done against a pluggable database, DW, in a container database test. The condition is that we have a warehouse based on 2 schemas STAT1 and STAT2. The warehouse has been populated and used for a couple of month and we have currently not updated the statistics. We want to make sure that when we publish new statistics then we would not be surprised with a performance regression. Some of the activities that are associated with this exercise are time consuming so we have performed those tasks in advance for lab purposes to save some time. The following task has already been executed in the setup of the environment: Gather Pending Optimizer Statistics on schema STAT1 and STAT2 Steps that we are going to perform in this exercise: Run SPA Optimizer Statistics workflow Compare performance of current statistics and pending statistics Use SQL Plan base lines to fix plan regressions Run SPA Optimizer Statistics workflow validate implemented SQL Plan Base lines Compare performance of current statistics and pending statistics + SQL Plan Baselines implemented Implement (Publish) new statistics Page 64 of 65

65 B. Consolidated Database Replay Business Case Overview During consolidation testing phase it is important to know that the server will handle all workloads that shall be consolidated. On this front we have the Consolidated Database Replay feature that will help us to predict the workload behavior. We can test different scenarios to make sure that we are as much prepared as possible. Examples of scenarios to test could be: Worst case scenario with simultaneous peaks. Growing user activity Consolidating more applications In this use case we are going to consolidate two workloads that have been pre-captured on different databases and we are going to concurrently replay them in a Container database. For the purpose of the lab, we ve already setup the test system and the Container database appropriately to the point-in-time of captures so that replay can be started. Objective: The objective of this document is to provide high-level guidelines on new features associated with Real Application Testing in Oracle Enterprise Manager Cloud Control 12c. To perform real-world testing of Oracle databases, by capturing production workloads and replaying them on test systems enables you to perform real-world testing quickly and accurately. This allows enterprises to assess the impact of any planned system change before deploying it on production reliably. Additionally, with Oracle Database 12c we have the Multitenant capability that will make it possible to consolidate application into different pluggable databases within one container database. This allows us to reduce the footprint of each database and reduce resource usage on the server. In this lab we will learn how to perform multiple replays against the same database to validate how the new database and the server will handle the workload. Page 65 of 65

Maximizing Performance for Oracle Database 12c using Oracle Enterprise Manager

Maximizing Performance for Oracle Database 12c using Oracle Enterprise Manager Maximizing Performance for Oracle Database 12c using Oracle Enterprise Manager Björn Bolltoft Principal Product Manager Database manageability Table of Contents Database Performance Management... 3 A.

More information

Risk-Free Administration for Expert Database Administrators

Risk-Free Administration for Expert Database Administrators Risk-Free Administration for Expert Database Administrators Kurt Engeleiter, Oracle Jason Lentz, Cerner Bart Gaddis, Cerner Safe Harbor Statement The following is intended to outline our general product

More information

Real Application Testing. Fred Louis Oracle Enterprise Architect

Real Application Testing. Fred Louis Oracle Enterprise Architect Real Application Testing Fred Louis Oracle Enterprise Architect The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

More information

Monitoring Oracle Enterprise Performance Management System Release 11.1.2.3 Deployments from Oracle Enterprise Manager 12c

Monitoring Oracle Enterprise Performance Management System Release 11.1.2.3 Deployments from Oracle Enterprise Manager 12c Monitoring Oracle Enterprise Performance Management System Release 11.1.2.3 Deployments from Oracle Enterprise Manager 12c This document describes how to set up Oracle Enterprise Manager 12c to monitor

More information

The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into

The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material,

More information

Setting up the Oracle Warehouse Builder Project. Topics. Overview. Purpose

Setting up the Oracle Warehouse Builder Project. Topics. Overview. Purpose Setting up the Oracle Warehouse Builder Project Purpose In this tutorial, you setup and configure the project environment for Oracle Warehouse Builder 10g Release 2. You create a Warehouse Builder repository

More information

Oracle Database 12c: Performance Management and Tuning NEW

Oracle Database 12c: Performance Management and Tuning NEW Oracle University Contact Us: 1.800.529.0165 Oracle Database 12c: Performance Management and Tuning NEW Duration: 5 Days What you will learn In the Oracle Database 12c: Performance Management and Tuning

More information

HP Client Automation Standard Fast Track guide

HP Client Automation Standard Fast Track guide HP Client Automation Standard Fast Track guide Background Client Automation Version This document is designed to be used as a fast track guide to installing and configuring Hewlett Packard Client Automation

More information

Deploying System Center 2012 R2 Configuration Manager

Deploying System Center 2012 R2 Configuration Manager Deploying System Center 2012 R2 Configuration Manager This document is for informational purposes only. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED, OR STATUTORY, AS TO THE INFORMATION IN THIS DOCUMENT.

More information

Quick Start Guide. Ignite for SQL Server. www.confio.com. Confio Software 4772 Walnut Street, Suite 100 Boulder, CO 80301 866.CONFIO.

Quick Start Guide. Ignite for SQL Server. www.confio.com. Confio Software 4772 Walnut Street, Suite 100 Boulder, CO 80301 866.CONFIO. Quick Start Guide Ignite for SQL Server 4772 Walnut Street, Suite 100 Boulder, CO 80301 866.CONFIO.1 www.confio.com Introduction Confio Ignite gives DBAs the ability to quickly answer critical performance

More information

Performance Tuning Guide for ECM 2.0

Performance Tuning Guide for ECM 2.0 Performance Tuning Guide for ECM 2.0 Rev: 20 December 2012 Sitecore ECM 2.0 Performance Tuning Guide for ECM 2.0 A developer's guide to optimizing the performance of Sitecore ECM The information contained

More information

Provisioning, Patch Automation, and Configuration Management Lab

Provisioning, Patch Automation, and Configuration Management Lab Oracle Enterprise Manager Provisioning, Patch Automation, and Configuration Management Lab Session S318967 Oracle Enterprise Manager 11g Provisioning, Patch Automation and Configuration Management Hands

More information

Sage Intelligence Financial Reporting for Sage ERP X3 Version 6.5 Installation Guide

Sage Intelligence Financial Reporting for Sage ERP X3 Version 6.5 Installation Guide Sage Intelligence Financial Reporting for Sage ERP X3 Version 6.5 Installation Guide Table of Contents TABLE OF CONTENTS... 3 1.0 INTRODUCTION... 1 1.1 HOW TO USE THIS GUIDE... 1 1.2 TOPIC SUMMARY...

More information

RTI v3.3 Lightweight Deep Diagnostics for LoadRunner

RTI v3.3 Lightweight Deep Diagnostics for LoadRunner RTI v3.3 Lightweight Deep Diagnostics for LoadRunner Monitoring Performance of LoadRunner Transactions End-to-End This quick start guide is intended to get you up-and-running quickly analyzing Web Performance

More information

NetIQ. How to guides: AppManager v7.04 Initial Setup for a trial. Haf Saba Attachmate NetIQ. Prepared by. Haf Saba. Senior Technical Consultant

NetIQ. How to guides: AppManager v7.04 Initial Setup for a trial. Haf Saba Attachmate NetIQ. Prepared by. Haf Saba. Senior Technical Consultant How to guides: AppManager v7.04 Initial Setup for a trial By NetIQ Prepared by Haf Saba Senior Technical Consultant Asia Pacific 1 Executive Summary This document will walk you through an initial setup

More information

MyOra 3.5. User Guide. SQL Tool for Oracle. Kris Murthy

MyOra 3.5. User Guide. SQL Tool for Oracle. Kris Murthy MyOra 3.5 SQL Tool for Oracle User Guide Kris Murthy Contents Features... 4 Connecting to the Database... 5 Login... 5 Login History... 6 Connection Indicator... 6 Closing the Connection... 7 SQL Editor...

More information

Performing Database and File System Backups and Restores Using Oracle Secure Backup

Performing Database and File System Backups and Restores Using Oracle Secure Backup Performing Database and File System Backups and Restores Using Oracle Secure Backup Purpose This lesson introduces you to Oracle Secure Backup which enables you to perform database and file system backups

More information

Copyright 2012, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12

Copyright 2012, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 1 Copyright 2012, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 Step-by-Step Cookbook for Identifying and Tuning SQL Problems Ashish

More information

New Relic & JMeter - Perfect Performance Testing

New Relic & JMeter - Perfect Performance Testing TUTORIAL New Relic & JMeter - Perfect Performance Testing by David Sale Contents Introduction 3 Demo Application 4 Hooking Into New Relic 4 What Is JMeter? 6 Installation and Usage 6 Analysis In New Relic

More information

vcenter Operations Management Pack for SAP HANA Installation and Configuration Guide

vcenter Operations Management Pack for SAP HANA Installation and Configuration Guide vcenter Operations Management Pack for SAP HANA Installation and Configuration Guide This document supports the version of each product listed and supports all subsequent versions until a new edition replaces

More information

Team Foundation Server 2013 Installation Guide

Team Foundation Server 2013 Installation Guide Team Foundation Server 2013 Installation Guide Page 1 of 164 Team Foundation Server 2013 Installation Guide Benjamin Day benday@benday.com v1.1.0 May 28, 2014 Team Foundation Server 2013 Installation Guide

More information

Oracle Database 12c: Performance Management and Tuning NEW

Oracle Database 12c: Performance Management and Tuning NEW Oracle University Contact Us: 1.800.529.0165 Oracle Database 12c: Performance Management and Tuning NEW Duration: 5 Days What you will learn In the Oracle Database 12c: Performance Management and Tuning

More information

Team Foundation Server 2012 Installation Guide

Team Foundation Server 2012 Installation Guide Team Foundation Server 2012 Installation Guide Page 1 of 143 Team Foundation Server 2012 Installation Guide Benjamin Day benday@benday.com v1.0.0 November 15, 2012 Team Foundation Server 2012 Installation

More information

How To Test For A Test On A Test Server

How To Test For A Test On A Test Server Real Application Testing Dave Foster Master Principal Sales Consultant The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

More information

System Administration Training Guide. S100 Installation and Site Management

System Administration Training Guide. S100 Installation and Site Management System Administration Training Guide S100 Installation and Site Management Table of contents System Requirements for Acumatica ERP 4.2... 5 Learning Objects:... 5 Web Browser... 5 Server Software... 5

More information

Oracle Database 10g. Page # The Self-Managing Database. Agenda. Benoit Dageville Oracle Corporation benoit.dageville@oracle.com

Oracle Database 10g. Page # The Self-Managing Database. Agenda. Benoit Dageville Oracle Corporation benoit.dageville@oracle.com Oracle Database 10g The Self-Managing Database Benoit Dageville Oracle Corporation benoit.dageville@oracle.com Agenda Oracle10g: Oracle s first generation of self-managing database Oracle s Approach to

More information

MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC

MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC MyOra 3.0 SQL Tool for Oracle User Guide Jayam Systems, LLC Contents Features... 4 Connecting to the Database... 5 Login... 5 Login History... 6 Connection Indicator... 6 Closing the Connection... 7 SQL

More information

Team Foundation Server 2010, Visual Studio Ultimate 2010, Team Build 2010, & Lab Management Beta 2 Installation Guide

Team Foundation Server 2010, Visual Studio Ultimate 2010, Team Build 2010, & Lab Management Beta 2 Installation Guide Page 1 of 243 Team Foundation Server 2010, Visual Studio Ultimate 2010, Team Build 2010, & Lab Management Beta 2 Installation Guide (This is an alpha version of Benjamin Day Consulting, Inc. s installation

More information

Oracle Enterprise Manager 12c New Capabilities for the DBA. Charlie Garry, Director, Product Management Oracle Server Technologies

Oracle Enterprise Manager 12c New Capabilities for the DBA. Charlie Garry, Director, Product Management Oracle Server Technologies Oracle Enterprise Manager 12c New Capabilities for the DBA Charlie Garry, Director, Product Management Oracle Server Technologies of DBAs admit doing nothing to address performance issues CHANGE AVOID

More information

Training module 2 Installing VMware View

Training module 2 Installing VMware View Training module 2 Installing VMware View In this second module we ll install VMware View for an End User Computing environment. We ll install all necessary parts such as VMware View Connection Server and

More information

DBA Best Practices: A Primer on Managing Oracle Databases. Leng Leng Tan Vice President, Systems and Applications Management

DBA Best Practices: A Primer on Managing Oracle Databases. Leng Leng Tan Vice President, Systems and Applications Management DBA Best Practices: A Primer on Managing Oracle Databases Leng Leng Tan Vice President, Systems and Applications Management The following is intended to outline our general product direction. It is intended

More information

<Insert Picture Here> Oracle SQL Developer 3.0: Overview and New Features

<Insert Picture Here> Oracle SQL Developer 3.0: Overview and New Features 1 Oracle SQL Developer 3.0: Overview and New Features Sue Harper Senior Principal Product Manager The following is intended to outline our general product direction. It is intended

More information

Using MailStore to Archive MDaemon Email

Using MailStore to Archive MDaemon Email Using MailStore to Archive MDaemon Email This guide details how to archive all inbound and outbound email using MailStore, as well as archiving any emails currently found in the users accounts in MDaemon.

More information

UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab

UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab Description The Symantec App Center platform continues to expand it s offering with new enhanced support for native agent based device management

More information

IBM Tivoli Monitoring for Virtual Environments: Dashboard, Reporting, and Capacity Planning Version 7.2 Fix Pack 2. User s Guide SC14-7493-03

IBM Tivoli Monitoring for Virtual Environments: Dashboard, Reporting, and Capacity Planning Version 7.2 Fix Pack 2. User s Guide SC14-7493-03 IBM Tivoli Monitoring for Virtual Environments: Dashboard, Reporting, and Capacity Planning Version 7.2 Fix Pack 2 User s Guide SC14-7493-03 IBM Tivoli Monitoring for Virtual Environments: Dashboard,

More information

ORACLE BUSINESS INTELLIGENCE WORKSHOP

ORACLE BUSINESS INTELLIGENCE WORKSHOP ORACLE BUSINESS INTELLIGENCE WORKSHOP Integration of Oracle BI Publisher with Oracle Business Intelligence Enterprise Edition Purpose This tutorial mainly covers how Oracle BI Publisher is integrated with

More information

SOS SO S O n O lin n e lin e Bac Ba kup cku ck p u USER MANUAL

SOS SO S O n O lin n e lin e Bac Ba kup cku ck p u USER MANUAL SOS Online Backup USER MANUAL HOW TO INSTALL THE SOFTWARE 1. Download the software from the website: http://www.sosonlinebackup.com/download_the_software.htm 2. Click Run to install when promoted, or alternatively,

More information

Installation Guidelines (MySQL database & Archivists Toolkit client)

Installation Guidelines (MySQL database & Archivists Toolkit client) Installation Guidelines (MySQL database & Archivists Toolkit client) Understanding the Toolkit Architecture The Archivists Toolkit requires both a client and database to function. The client is installed

More information

SchoolBooking SSO Integration Guide

SchoolBooking SSO Integration Guide SchoolBooking SSO Integration Guide Before you start This guide has been written to help you configure SchoolBooking to operate with SSO (Single Sign on) Please treat this document as a reference guide,

More information

Ingenious Testcraft Technical Documentation Installation Guide

Ingenious Testcraft Technical Documentation Installation Guide Ingenious Testcraft Technical Documentation Installation Guide V7.00R1 Q2.11 Trademarks Ingenious, Ingenious Group, and Testcraft are trademarks of Ingenious Group, Inc. and may be registered in the United

More information

BUILDER 3.0 Installation Guide with Microsoft SQL Server 2005 Express Edition January 2008

BUILDER 3.0 Installation Guide with Microsoft SQL Server 2005 Express Edition January 2008 BUILDER 3.0 Installation Guide with Microsoft SQL Server 2005 Express Edition January 2008 BUILDER 3.0 1 Table of Contents Chapter 1: Installation Overview... 3 Introduction... 3 Minimum Requirements...

More information

ILTA HANDS ON Securing Windows 7

ILTA HANDS ON Securing Windows 7 Securing Windows 7 8/23/2011 Table of Contents About this lab... 3 About the Laboratory Environment... 4 Lab 1: Restricting Users... 5 Exercise 1. Verify the default rights of users... 5 Exercise 2. Adding

More information

Installing OneStop Reporting Products

Installing OneStop Reporting Products Installing OneStop Reporting Products Contents 1 Introduction 2 Product Overview 3 System Requirements 4 Deployment 5 Installation 6 Appendix 2010 OneStop Reporting http://www.onestopreporting.com support@onestopreporting.com

More information

Performance Tuning and Optimizing SQL Databases 2016

Performance Tuning and Optimizing SQL Databases 2016 Performance Tuning and Optimizing SQL Databases 2016 http://www.homnick.com marketing@homnick.com +1.561.988.0567 Boca Raton, Fl USA About this course This four-day instructor-led course provides students

More information

Using Application Insights to Monitor your Applications

Using Application Insights to Monitor your Applications Using Application Insights to Monitor your Applications Overview In this lab, you will learn how to add Application Insights to a web application in order to better detect issues, solve problems, and continuously

More information

Net 2. NetApp Electronic Library. User Guide for Net 2 Client Version 6.0a

Net 2. NetApp Electronic Library. User Guide for Net 2 Client Version 6.0a Net 2 NetApp Electronic Library User Guide for Net 2 Client Version 6.0a Table of Contents 1 INTRODUCTION AND KEY FEATURES... 3 SOME OF THE KEY FEATURES INCLUDE:... 3 INSTALLATION PREREQUISITES:... 3 2

More information

Microsoft Business Intelligence 2012 Single Server Install Guide

Microsoft Business Intelligence 2012 Single Server Install Guide Microsoft Business Intelligence 2012 Single Server Install Guide Howard Morgenstern Business Intelligence Expert Microsoft Canada 1 Table of Contents Microsoft Business Intelligence 2012 Single Server

More information

VERALAB LDAP Configuration Guide

VERALAB LDAP Configuration Guide VERALAB LDAP Configuration Guide VeraLab Suite is a client-server application and has two main components: a web-based application and a client software agent. Web-based application provides access to

More information

Quick Start Guide. Installation and Setup

Quick Start Guide. Installation and Setup Quick Start Guide Installation and Setup Introduction Velaro s live help and survey management system provides an exciting new way to engage your customers and website visitors. While adding any new technology

More information

HYPERION SYSTEM 9 N-TIER INSTALLATION GUIDE MASTER DATA MANAGEMENT RELEASE 9.2

HYPERION SYSTEM 9 N-TIER INSTALLATION GUIDE MASTER DATA MANAGEMENT RELEASE 9.2 HYPERION SYSTEM 9 MASTER DATA MANAGEMENT RELEASE 9.2 N-TIER INSTALLATION GUIDE P/N: DM90192000 Copyright 2005-2006 Hyperion Solutions Corporation. All rights reserved. Hyperion, the Hyperion logo, and

More information

SAP Business Objects Data Services Setup Guide

SAP Business Objects Data Services Setup Guide Follow the instructions below on how to setup SAP Business Objects Data Services After having the licensed version of SAP BODS XI, Click the installation icon "setup.exe" to launch installer. Click Next

More information

Oracle Managed File Getting Started - Transfer FTP Server to File Table of Contents

Oracle Managed File Getting Started - Transfer FTP Server to File Table of Contents Oracle Managed File Getting Started - Transfer FTP Server to File Table of Contents Goals... 3 High- Level Steps... 4 Basic FTP to File with Compression... 4 Steps in Detail... 4 MFT Console: Login and

More information

Adobe Summit 2015 Lab 718: Managing Mobile Apps: A PhoneGap Enterprise Introduction for Marketers

Adobe Summit 2015 Lab 718: Managing Mobile Apps: A PhoneGap Enterprise Introduction for Marketers Adobe Summit 2015 Lab 718: Managing Mobile Apps: A PhoneGap Enterprise Introduction for Marketers 1 INTRODUCTION GOAL OBJECTIVES MODULE 1 AEM & PHONEGAP ENTERPRISE INTRODUCTION LESSON 1- AEM BASICS OVERVIEW

More information

UOG User Guide. Windows

UOG User Guide. Windows UOG User Guide 21 st Century Lab - How to access your Linux Virtual Machine Windows Staff and Students are required to connect to SIT-WLAN network, follow Wireless Network Setup Guide for SIT Students

More information

educ Office 365 email: Remove & create new Outlook profile

educ Office 365 email: Remove & create new Outlook profile Published: 29/01/2015 If you have previously used Outlook the with the SCC/SWO service then once you have been moved into Office 365 your Outlook will need to contact the SCC/SWO servers one last time

More information

Oracle Database 11g: Performance Tuning DBA Release 2

Oracle Database 11g: Performance Tuning DBA Release 2 Oracle University Contact Us: 1.800.529.0165 Oracle Database 11g: Performance Tuning DBA Release 2 Duration: 5 Days What you will learn This Oracle Database 11g Performance Tuning training starts with

More information

Remote Desktop Web Access. Using Remote Desktop Web Access

Remote Desktop Web Access. Using Remote Desktop Web Access Remote Desktop Web Access What is RD Web Access? RD Web Access is a Computer Science service that allows you to access department software and machines from your Windows or OS X computer, both on and off

More information

NSi Mobile Installation Guide. Version 6.2

NSi Mobile Installation Guide. Version 6.2 NSi Mobile Installation Guide Version 6.2 Revision History Version Date 1.0 October 2, 2012 2.0 September 18, 2013 2 CONTENTS TABLE OF CONTENTS PREFACE... 5 Purpose of this Document... 5 Version Compatibility...

More information

Citrix EdgeSight User s Guide. Citrix EdgeSight for Endpoints 5.4 Citrix EdgeSight for XenApp 5.4

Citrix EdgeSight User s Guide. Citrix EdgeSight for Endpoints 5.4 Citrix EdgeSight for XenApp 5.4 Citrix EdgeSight User s Guide Citrix EdgeSight for Endpoints 5.4 Citrix EdgeSight for XenApp 5.4 Copyright and Trademark Notice Use of the product documented in this guide is subject to your prior acceptance

More information

Secure Messaging Server Console... 2

Secure Messaging Server Console... 2 Secure Messaging Server Console... 2 Upgrading your PEN Server Console:... 2 Server Console Installation Guide... 2 Prerequisites:... 2 General preparation:... 2 Installing the Server Console... 2 Activating

More information

PATROL From a Database Administrator s Perspective

PATROL From a Database Administrator s Perspective PATROL From a Database Administrator s Perspective September 28, 2001 Author: Cindy Bean Senior Software Consultant BMC Software, Inc. 3/4/02 2 Table of Contents Introduction 5 Database Administrator Tasks

More information

SPHOL325: SharePoint Server 2013 Search Connectors and Using BCS

SPHOL325: SharePoint Server 2013 Search Connectors and Using BCS 2013 SPHOL325: SharePoint Server 2013 Search Connectors and Using BCS Hands-On Lab Lab Manual This document is provided as-is. Information and views expressed in this document, including URL and other

More information

Installing The SysAidTM Server Locally

Installing The SysAidTM Server Locally Installing The SysAidTM Server Locally Document Updated: 17 October 2010 Introduction SysAid is available in two editions: a fully on-demand ASP solution and an installed, in-house solution for your server.

More information

3 Setting up Databases on a Microsoft SQL 7.0 Server

3 Setting up Databases on a Microsoft SQL 7.0 Server 3 Setting up Databases on a Microsoft SQL 7.0 Server Overview of the Installation Process To set up GoldMine properly, you must follow a sequence of steps to install GoldMine s program files, and the other

More information

Managing Existing Mobile Apps

Managing Existing Mobile Apps Adobe Summit 2016 Lab 324: Managing Existing Mobile Apps Adobe Experience Manager Mobile 1 Table of Contents INTRODUCTION 4 GOAL 4 OBJECTIVES 4 MODULE 1 AEM INTRODUCTION 5 LESSON 1 - AEM BASICS 5 OVERVIEW

More information

Oracle Enterprise Manager 13c Cloud Control

Oracle Enterprise Manager 13c Cloud Control Oracle Enterprise Manager 13c Cloud Control ORACLE DIAGNOSTICS PACK FOR ORACLE DATABASE lace holder for now] Oracle Enterprise Manager is Oracle s integrated enterprise IT management product line, and

More information

NovaBACKUP. Storage Server. NovaStor / May 2011

NovaBACKUP. Storage Server. NovaStor / May 2011 NovaBACKUP Storage Server NovaStor / May 2011 2011 NovaStor, all rights reserved. All trademarks are the property of their respective owners. Features and specifications are subject to change without notice.

More information

Installing and Configuring vcloud Connector

Installing and Configuring vcloud Connector Installing and Configuring vcloud Connector vcloud Connector 2.0.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

More information

Quick start. A project with SpagoBI 3.x

Quick start. A project with SpagoBI 3.x Quick start. A project with SpagoBI 3.x Summary: 1 SPAGOBI...2 2 SOFTWARE DOWNLOAD...4 3 SOFTWARE INSTALLATION AND CONFIGURATION...5 3.1 Installing SpagoBI Server...5 3.2Installing SpagoBI Studio and Meta...6

More information

PORTAL ADMINISTRATION

PORTAL ADMINISTRATION 1 Portal Administration User s Guide PORTAL ADMINISTRATION GUIDE Page 1 2 Portal Administration User s Guide Table of Contents Introduction...5 Core Portal Framework Concepts...5 Key Items...5 Layouts...5

More information

Application Server Installation

Application Server Installation Application Server Installation Guide ARGUS Enterprise 11.0 11/25/2015 ARGUS Software An Altus Group Company Application Server Installation ARGUS Enterprise Version 11.0 11/25/2015 Published by: ARGUS

More information

Windows XP Exchange Client Installation Instructions

Windows XP Exchange Client Installation Instructions WINDOWS XP with Outlook 2003 or Outlook 2007 1. Click the Start button and select Control Panel: 2. If your control panel looks like this: Click Switch to Classic View. 3. Double click Mail. 4. Click show

More information

Getting Started. Getting Started with Time Warner Cable Business Class. Voice Manager. A Guide for Administrators and Users

Getting Started. Getting Started with Time Warner Cable Business Class. Voice Manager. A Guide for Administrators and Users Getting Started Getting Started with Time Warner Cable Business Class Voice Manager A Guide for Administrators and Users Table of Contents Table of Contents... 2 How to Use This Guide... 3 Administrators...

More information

Installing and Configuring vcloud Connector

Installing and Configuring vcloud Connector Installing and Configuring vcloud Connector vcloud Connector 2.7.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

More information

Department of Veterans Affairs VistA Integration Adapter Release 1.0.5.0 Enhancement Manual

Department of Veterans Affairs VistA Integration Adapter Release 1.0.5.0 Enhancement Manual Department of Veterans Affairs VistA Integration Adapter Release 1.0.5.0 Enhancement Manual Version 1.1 September 2014 Revision History Date Version Description Author 09/28/2014 1.0 Updates associated

More information

How To Create An Easybelle History Database On A Microsoft Powerbook 2.5.2 (Windows)

How To Create An Easybelle History Database On A Microsoft Powerbook 2.5.2 (Windows) Introduction EASYLABEL 6 has several new features for saving the history of label formats. This history can include information about when label formats were edited and printed. In order to save this history,

More information

NetWrix SQL Server Change Reporter

NetWrix SQL Server Change Reporter NetWrix SQL Server Change Reporter Version 2.2 Administrator Guide Contents NetWrix SQL Server Change Reporter Administrator Guide 1. INTRODUCTION... 3 1.1 KEY FEATURES... 3 1.2 LICENSING... 4 1.3 HOW

More information

RDS Migration Tool Customer FAQ Updated 7/23/2015

RDS Migration Tool Customer FAQ Updated 7/23/2015 RDS Migration Tool Customer FAQ Updated 7/23/2015 Amazon Web Services is now offering the Amazon RDS Migration Tool a powerful utility for migrating data with minimal downtime from on-premise and EC2-based

More information

Network Event Viewer now supports real-time monitoring enabling system administrators to be notified immediately when critical events are logged.

Network Event Viewer now supports real-time monitoring enabling system administrators to be notified immediately when critical events are logged. About Network Event Viewer is a network wide event log monitoring, consolidation, auditing and reporting tool enabling System Administrators to satisfy Sarbanes-Oxley auditing requirements while proactively

More information

How to Configure a Stress Test Project for Microsoft Office SharePoint Server 2007 using Visual Studio Team Suite 2008.

How to Configure a Stress Test Project for Microsoft Office SharePoint Server 2007 using Visual Studio Team Suite 2008. How to Configure a Stress Test Project for Microsoft Office SharePoint Server 2007 using Visual Studio Team Suite 2008. 1 By Steve Smith, MVP SharePoint Server, MCT And Penny Coventry, MVP SharePoint Server,

More information

Freshservice Discovery Probe User Guide

Freshservice Discovery Probe User Guide Freshservice Discovery Probe User Guide 1. What is Freshservice Discovery Probe? 1.1 What details does Probe fetch? 1.2 How does Probe fetch the information? 2. What are the minimum system requirements

More information

Monitoring and Diagnosing Oracle RAC Performance with Oracle Enterprise Manager. Kai Yu, Orlando Gallegos Dell Oracle Solutions Engineering

Monitoring and Diagnosing Oracle RAC Performance with Oracle Enterprise Manager. Kai Yu, Orlando Gallegos Dell Oracle Solutions Engineering Monitoring and Diagnosing Oracle RAC Performance with Oracle Enterprise Manager Kai Yu, Orlando Gallegos Dell Oracle Solutions Engineering About Author Kai Yu Senior System Engineer, Dell Oracle Solutions

More information

Eucalyptus 3.4.2 User Console Guide

Eucalyptus 3.4.2 User Console Guide Eucalyptus 3.4.2 User Console Guide 2014-02-23 Eucalyptus Systems Eucalyptus Contents 2 Contents User Console Overview...4 Install the Eucalyptus User Console...5 Install on Centos / RHEL 6.3...5 Configure

More information

603: Enhancing mobile device experience with NetScaler MobileStream Hands-on Lab Exercise Guide

603: Enhancing mobile device experience with NetScaler MobileStream Hands-on Lab Exercise Guide 603: Enhancing mobile device experience with NetScaler MobileStream Hands-on Lab Exercise Guide Christopher Rudolph January 2015 1 Table of Contents Contents... 2 Overview... 3 Scenario... 6 Lab Preparation...

More information

POD INSTALLATION AND CONFIGURATION GUIDE. EMC CIS Series 1

POD INSTALLATION AND CONFIGURATION GUIDE. EMC CIS Series 1 POD INSTALLATION AND CONFIGURATION GUIDE EMC CIS Series 1 Document Version: 2015-01-26 Installation of EMC CIS Series 1 virtual pods as described this guide, requires that your NETLAB+ system is equipped

More information

Source Code Management for Continuous Integration and Deployment. Version 1.0 DO NOT DISTRIBUTE

Source Code Management for Continuous Integration and Deployment. Version 1.0 DO NOT DISTRIBUTE Source Code Management for Continuous Integration and Deployment Version 1.0 Copyright 2013, 2014 Amazon Web Services, Inc. and its affiliates. All rights reserved. This work may not be reproduced or redistributed,

More information

DiskPulse DISK CHANGE MONITOR

DiskPulse DISK CHANGE MONITOR DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com info@flexense.com 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product

More information

User's Guide - Beta 1 Draft

User's Guide - Beta 1 Draft IBM Tivoli Composite Application Manager for Microsoft Applications: Microsoft Hyper-V Server Agent vnext User's Guide - Beta 1 Draft SC27-2319-05 IBM Tivoli Composite Application Manager for Microsoft

More information

User Manual. Onsight Management Suite Version 5.1. Another Innovation by Librestream

User Manual. Onsight Management Suite Version 5.1. Another Innovation by Librestream User Manual Onsight Management Suite Version 5.1 Another Innovation by Librestream Doc #: 400075-06 May 2012 Information in this document is subject to change without notice. Reproduction in any manner

More information

User Manual for Web. Help Desk Authority 9.0

User Manual for Web. Help Desk Authority 9.0 User Manual for Web Help Desk Authority 9.0 2011ScriptLogic Corporation ALL RIGHTS RESERVED. ScriptLogic, the ScriptLogic logo and Point,Click,Done! are trademarks and registered trademarks of ScriptLogic

More information

Installation Instructions

Installation Instructions Installation Instructions 25 February 2014 SIAM AST Installation Instructions 2 Table of Contents Server Software Requirements... 3 Summary of the Installation Steps... 3 Application Access Levels... 3

More information

Oracle s SQL Performance Analyzer

Oracle s SQL Performance Analyzer Oracle s SQL Performance Analyzer Khaled Yagoub, Pete Belknap, Benoit Dageville, Karl Dias, Shantanu Joshi, and Hailing Yu Oracle USA {khaled.yagoub, pete.belknap, benoit.dageville, karl.dias, shantanu.joshi,

More information

owncloud Configuration and Usage Guide

owncloud Configuration and Usage Guide owncloud Configuration and Usage Guide This guide will assist you with configuring and using YSUʼs Cloud Data storage solution (owncloud). The setup instructions will include how to navigate the web interface,

More information

Transaction Monitoring Version 8.1.3 for AIX, Linux, and Windows. Reference IBM

Transaction Monitoring Version 8.1.3 for AIX, Linux, and Windows. Reference IBM Transaction Monitoring Version 8.1.3 for AIX, Linux, and Windows Reference IBM Note Before using this information and the product it supports, read the information in Notices. This edition applies to V8.1.3

More information

Windows Azure Pack Installation and Initial Configuration

Windows Azure Pack Installation and Initial Configuration Windows Azure Pack Installation and Initial Configuration Windows Server 2012 R2 Hands-on lab In this lab, you will learn how to install and configure the components of the Windows Azure Pack. To complete

More information

Why Standardize on Oracle Database 11g Next Generation Database Management. Thomas Kyte http://asktom.oracle.com

Why Standardize on Oracle Database 11g Next Generation Database Management. Thomas Kyte http://asktom.oracle.com Why Standardize on Oracle Database 11g Next Generation Database Management Thomas Kyte http://asktom.oracle.com Top Challenges Performance Management Change Management Ongoing Administration Storage Backup

More information

Oracle Database 11g: SQL Tuning Workshop Release 2

Oracle Database 11g: SQL Tuning Workshop Release 2 Oracle University Contact Us: 1 800 005 453 Oracle Database 11g: SQL Tuning Workshop Release 2 Duration: 3 Days What you will learn This course assists database developers, DBAs, and SQL developers to

More information

Dell Active Administrator 8.0

Dell Active Administrator 8.0 What s new in Dell Active Administrator 8.0 January 2016 Dell Active Administrator 8.0 is the upcoming release of Dell Software's complete solution for managing Microsoft Active Directory security auditing,

More information

Ekran System Help File

Ekran System Help File Ekran System Help File Table of Contents About... 9 What s New... 10 System Requirements... 11 Updating Ekran to version 4.1... 13 Program Structure... 14 Getting Started... 15 Deployment Process... 15

More information

Virtual Server Installation Manual April 8, 2014 Version 1.8

Virtual Server Installation Manual April 8, 2014 Version 1.8 Virtual Server Installation Manual April 8, 2014 Version 1.8 Department of Health and Human Services Administration for Children and Families Office of Child Support Enforcement REVISION HISTORY Version

More information