Maximizing Performance for Oracle Database 12c using Oracle Enterprise Manager

Size: px
Start display at page:

Download "Maximizing Performance for Oracle Database 12c using Oracle Enterprise Manager"

Transcription

1 Maximizing Performance for Oracle Database 12c using Oracle Enterprise Manager Björn Bolltoft Principal Product Manager Database manageability

2 Table of Contents Database Performance Management... 3 A. Performance Hub...4 B. Real-Time Database Operations Monitoring C. Tuning a SQL in a PDB Real Application Testing D. SQL Performance Analyzer Optimizer Statistics E. Consolidated Database Replay (Optional, time permitting) Page 2 of 58

3 Database Performance Management Objective: The objective of this lab to provide exercises designed to showcase the new database performance management capabilities in Oracle Enterprise Manager Cloud Control 12c and Oracle Enterprise Manager Express. Functional Coverage: In this lab you will go through new features in the following functional areas: Database Performance management A. Performance Hub B. Real-Time Database Operations Monitoring C. Tuning a SQL inside a PDB environment setup Your environment should have a workload running. If workload is not running please refer to Appendix A for the steps to start the workload. Page 3 of 58

4 Estimated Time to Complete Use Case: 15 minutes Business Case A. Performance Hub Oracle Database 12c introduces Oracle Enterprise Manager Express, or simply EM Express, a web based GUI tool optimized for performance Management. EM Express is extremely lightweight and is built inside the database so it doesn t require any additional install. Oracle Enterprise Manager Database Express includes Performance Hub, a completely new unified interface for performance monitoring. It is the single pane of glass view of database performance with access to ADDM, SQL Tuning, Real-Time SQL Monitoring and ASH Analytics under the same hood. A flexible time picker allows the administrator to seamlessly switch between Real-Time and Historical views of database performance. For Oracle RAC databases, there is an additional RAC tab that allows the database administrator to monitor cluster related performance problems. In this lab we will use an Oracle Database 12c Container database with few pluggable databases. You will be logging in as a CDBA. Figure 1: A Container database with PDBs Understanding the Performance Hub 1.1 Log into EM Express. Please type assigned i/p address>>: 7100/em/login Use the database common user c##dbuser [password:oracle12] to log into EM Express. Note the special character ##, it should appear as is as shown above. Leave as sysdba checkbox unchecked. Page 4 of 58

5 1.2 Click on the PDB tab on the Performance region of the database homepage. Here you will notice the activity by the different open PDBs, such as SALES, HR and FINANCE 1.3 Select Performance Hub from the Performance Menu Page 5 of 58

6 Make sure to slide the time picker on an area of high usage (e.g., CPU, IO or Waits). In the figure above we see the DBA has identified the region with high user I/O. Notice how the corresponding selected time window also changes in the summary section. Review information on the regions: Active Sessions, Host, Memory and I/O. Depending on the time period that you have selected at the top the corresponding periods are also selected in each region below. 1.4 Select the Activity tab on the left side of the page. This will open the ASH Analytics view of the performance page You can also resize the slider to entirely cover the time period of your interest. Notice the graph at bottom, it is providing more detailed view of the time window you selected. By Default the wait class dimension is selected. On the right hand side of the graph you have a list of wait classes for the time window you selected (blue for user I/O, green for CPU etc). Notice how the color changes if you hover over either the menu or the graph to highlight the particular wait class. Wait class isn t the only dimension you can drill into the performance issue by. Let s say you wanted to identify the SQL that was causing the biggest performance impact. You can do that by clicking the drop down list and changing the top dimension from wait class to SQL ID. 1.8 Select the SQL ID dimension from the list of available dimensions using the dropdown box that is currently displaying Wait Class. Top Dimensions SQL ID Page 6 of 58

7 Hover your mouse on top of the SQL (one at the bottom) and you will be able to see how much activity is consumed by this SQL. Now using the same list of filters select the PDB dimension. Session Identifiers PDB What do you see? The chart changes to activity by the different pluggable databases created in this Container database. Clickon the Sales pluggable database on the list to add it to the filter by list and drilldown to activity by this PDB on the same page. Page 7 of 58

8 1.6 Click on the Workload tab next to the Activity tab Notice the three sections Workload Profile, Sessions and Top SQL Click on Parse Calls tab in Workload Profile region. Notice the hard and soft parse behavior Click on Redo Size tab in the same region. You can determine the redo generation rate from this graph Click on Open Cursors in Sessions region. This can help you to find out the pattern of open cursors in the database at a given point of time Observe the Top SQL Section. You can find the top SQL by Database Time in this section with the sql-id and sql text. 1.7 Click on the Monitored SQL Tab Page 8 of 58

9 You can see all the executed SQLduring that time along with different attributes like user, Start, Ended etc. The test next to sign indicates the name of the PDB. Click on any SQL of your choice ( e.g. 6kd5jj7kr8swv) It will navigate you to show the details of this particular query. You can see the plan, parallelism and activity of the query. Click Plan tab in the details section. You can see the plan of this query in graphical mode. In some cases, the Monitored SQL may have aged out and no rows are displayed, in this case try using the time-picker and pick last 24 hrs time period to identify the historical SQL that was monitored. This is an issue being investigated Select Tabular option. Plan will change to the familiar tabular like format. Page 9 of 58

10 1.7.2 Click on the ellipsis icon [ ] image next to SQL Text in the General Section. You can see the query text which got executed Click on Save button on top right corner of the page. This will help you to save this monitored execution in.html format, which you can use it to share or to diagnose the things offline Click on Navigate to SQL Details on top. This will take you to the SQL Hub. Verify the details on this page for the particular SQL selected. You will find all the details now on this page for this sql, such as the activity, plan statistics, monitored SQL and Plan control Select Performance Hub from the Performance Menu at the top. 1.8 Click on the Current ADDM Findings Tab This tab lists the issues the database is current encountering. It is an extremely useful for the database administrator to get a quick idea of what s happening in the database. Page 10 of 58

11 B. Real-Time Database Operations Monitoring Environment Details: The target database is running a load on the sample schema provided via the Examples (or companion) software accompanying the Oracle database software. There are other schemas created to simulate specific performance scenarios. Estimated Time to Complete Use Case: 8 minutes Business Case Real-Time Database Operations Monitoring, a new feature introduced in Oracle database 12c, allows an administrator to monitor long running database tasks such as batch jobs, ETLs etc as a composite business operation. This feature tracks the progress of SQL and PL/SQL queries associated with the business operation being monitored. Developers and DBAs can define business operations for monitoring by explicitly specifying the start and end of operation or implicitly through the use of tags that identify the operation. Start the Database Operation. Open a VNC window and navigate to your i/p address (use display port 2). Use password oracle12. You may also ssh using a terminal window and log in as oracle/oracle12. Once Logged in perform the following [oracle@em12 ~]$ cd scripts [oracle@em12 scripts]$../test_db_env [oracle@em12 scripts]$ cd load/frame/queries/awrv [oracle@em12 awrv]$ pwd /home/oracle/scripts/load/frame/queries/awrv Using SQLPlus connect to the sh2 account. [oracle@em12 awrv]$ sqlplus sh2/sh2@sales Open the file (!vi DBOP.sql) from the SQL prompt and then review the content of the file. At the beginning of the file you will notice how we have tagged the operation with dbms_sql_monitor.begin_operation and ended it with dbms_sql_monitor.end_operation Now execute the 2.1 You should already be logged on to Enterprise Manager Express. If you are not, please follow the instructions detailed in earlier section of this workbook. 2.2 Select the Monitored SQL tab. Page 11 of 58

12 Review the list of currently executing SQLs are visible click on the DBOP_DEMO name. This will open the DBOP named DBOP_DEMO. Note: You may need to scroll down or select Database operations from the type dropdown. 2.3 Review the details of the Database Operations. Click on the SQL ID with the highest database time. Navigate to the SQL details of this SQL. It is obvious which the SQL that needs to be investigated is. Page 12 of 58

13 2.4 Click on the Activity tab. You will see all the activity is filtered by this SQL. By default the Wait Class dimension is displayed. 2.5 Log Out of EM Express. At this point please Log Out of Enterprise Manager Express. We will use Enterprise Manager Cloud Control for the next lab. Page 13 of 58

14 Environment Details: C. Tuning a SQL in a PDB The target database is running a load on the sample schema provided via the Examples (or companion) software accompanying the Oracle database software. There are other schemas created to simulate specific performance scenarios. environment setup Your environment should have a workload running. If EM 12c is not running please refer to Appendix B for the steps to start EM 12c. Estimated Time to Complete Use Case: 10 minutes Business Case This use case is intended to give an idea of how the pluggable database administrator will tune queries in a PDB. We are running a workload and this flow will help you to identify a Top SQL and then tune it using SQL Tuning Advisor. The PDBA will have no access to the Container and his/her view is only restricted to the queries running in the PDB assigned to this user. 3.1 Log into Enterprise Manager Cloud Control. 3.2 Please note that you will be using a new URL: Login: pdbuser/oracle12 Page 14 of 58

15 3.3 Once logged into Enterprise Manager. Select Targets Databases. You should see only the database test.oracle.com. Click on the expand icon on the left and click on the pluggable database test.oracle.com_sales 3.4 You should now see the Database Home page. 3.5 From the Performance Menu click on ASH Analytics Page 15 of 58

16 3.6 Select the checkbox by the side of the SQL showing highest Activity. Now Schedule SQL Tuning Advisor by clicking on the Tune SQL button. 3.7 Accept the default and submit the SQL tuning Job. Page 16 of 58

17 . 3.8 Once the job completes. You should see the recommendations for either creating a profile or an index. 3.9 Implement the SQL Profile recommendation. SQL Profiles are a great way of tuning a SQL without creating any new objects or making any code changes This concludes the Database Performance Management lab. You can now move on to Real Application Testing lab. Page 17 of 58

18 Objective: Real Application Testing The objective of this lab to provide exercises designed to showcase the new Real Application Testing capabilities in Oracle Enterprise Manager Cloud Control 12c and Database 12c. Functional Coverage: In this lab you will go through features in the following functional areas: SQL Performance Analyzer Optimizer Statistics SQL Performance Analyzer Gather Optimizer Statistics Validation Consolidated Database Replay Replay multiple workloads concurrently against Pluggable Databases in the Container Database Appendix A Exercise overview and Business Case Page 18 of 58

19 D. SQL Performance Analyzer Optimizer Statistics SPA Workflow Estimated Time to Complete Use Case: 9 minutes, Recommended workflow 4. Execute SPA task using Optimizer statistics workflow 4.1 Login using username and password oracle / oracle Navigate to Databases: From the menu, Targets -> Databases Page 19 of 58

20 4.3 Search for database Test by enter: Name : test Click Click on test.oracle.com_dw pluggable database 4.4 In test.oracle.com_dw database Navigate to Performance -> SQL -> SQL Performance Analyzer Home Page 20 of 58

21 4.5 Click Optimizer Statistics link. 4.6 Enter: Task Name : VALIDATE_OPTIMIZER_STATS_01 SQL Tuning Set : SYSTEM.PENDING_STATS_WKLD ( use Search icon ) Comparison Metric: Buffer Gets (For deterministic lab behavior we re using Buffer Gets metric, in real life you ll use other metrics like Elapsed Time, CPU Time, etc.) Page 21 of 58

22 4.7 Mark the PENDING_STATS_WKLD Tuning Set and click select. 4.8 Mark the Pending Optimizer Stats Collected and click Submit Page 22 of 58

23 4.9 The SPA task is now in progress and it will take a minute or two to complete. When Last Run Status have changed to Completed: Click on your SPA task name The workload in the Tuning Set has now been executed using both current statistics and the pending statistics. Click on the glasses for Comparison Report Page 23 of 58

24 4.11 As we can see the majority of our statements had unchanged performance. We have a significant improvement but most important to notice is that we have regression as well. Since this application has used stale statistics for a long period, then it would be good to have new statistics implemented. So let s see if we can tune these regressed statements. We can now drill down on individual statements to see details on execution plans and execution statistics and compare old and new execution plans. For the purpose of lab, we will use SQL Plan Baselines to remediate the identified regressions. Note one can also use SQL Tuning Advisor to remediate regressions by implementing SQL Profile recommendations Click on Create SQL Plan Baseline 4.12 We can see that there are two queries with regression more than 11 % so these are the queries where we need to create SQL Plan Baselines. Click OK Page 24 of 58

25 4.13 The job has now been submitted so let s validate that our changes have the effects that we planned. This will be done with a new execution of the SPA Optimizer Statistics Workflow Click the SQL Performance Analyzer bread crumb 4.14 Click Optimizer Statistics Page 25 of 58

26 4.15 Enter: Task Name : VALIDATE_OPTIMIZER_STATS_02 SQL Tuning Set : SYSTEM.PENDING_STATS_WKLD ( use Search icon ) Comparison Metric: Buffer Gets Check Pending optimizer statistics collected Click Submit 4.16 The SPA task is now in progress and it will take a minute or two to complete. When Last Run Status have changed to Completed: Click on your SPA task name. Page 26 of 58

27 4.17 The workload in the Tuning Set have now been executed using both current statistics and the pending statistics + SQL Plan Baselines that were implemented in previous steps. Click on the glasses for Comparison Report 4.18 As you can see we have now resolved the regression that was caused by new statistics. So it is safe to publish the collected statistics. Click on Publish Object Statistics Page 27 of 58

28 4.19 We can now change statistics for all tables where we have pending statistics. For the scope of this exercise we will only change statistics for a couple of tables. In the search option change: Type : Table, Schema : Scope : STAT1 Pending click Go Change Action to Publish one by one publish statistics for tables: STAT1.OUTLETS_TAB3, MANUFACTURING_TAB1, DISTRIBUTION_DEPT_TAB1, DISTRIBUTION_DEPT_TAB2 and DESIGN_DEPT_TAB2 by mark the select field for the table and click Go Note: You have to publish statistics for each table one at a time. A multi-select button will be available in future releases of EM, an enhancement has been logged for this purpose. You have now learned how to work with SPA. As you can see there are several Guided Workflows that will help you during your analysis and verify that you can implement new changes in production with confidence. Details about newly published statistics can be found if you go to Schema -> Database Object -> Tables and select tables for schema STAT1 Page 28 of 58

29 E. Consolidated Database Replay (Optional, time permitting) Replay multiple workloads concurrently against Pluggable Databases in the Container Database Estimated Time to Complete Use Case: 10 minutes. Note this lab is optional, if you have completed the other recommended labs, you can go through this exercise. 5. Create a Replay Task 5.1 You should already be logged on to Enterprise Manager. If you are not, please follow the instructions detailed in the SQL Performance Analyzer Optimizer Statistics of this workbook. 5.2 First we need to reset the test database for the replay Navigate to the Job library From the Menu, Enterprise Job Library Page 29 of 58

30 5.3 Search for Reset jobs. In Name enter res, click Go Select RESET_TEST_FOR_REPLAY. Click Submit 5.4 Click Submit The job will be executed in the background so you can proceed to Database replay. 5.5 Navigate to the Database Replay. From the Menu, Enterprise Quality Management Database Replay Page 30 of 58

31 5.6 Choose Tab Replay Task. Click Create to create a new Replay Task. 5.7 In the screen, enter details about the new Replay Task: Name : CONSOLIDATED_REPLAY_02 (Note: If a replay Task with this name already exists on your environment, you can create a replay Task with new name, such as CONSOLIDATED_REPLAY_<Your Initials>) Select DW_CAPTURE_5m_B and OLTP_CAP_5min_B DW_CAPTURE_5m_B and OLTP_CAP_5min_B are pre-created captures that we will use in this exercise Click Submit Page 31 of 58

32 5.8 Click on the newly created Replay Task. 5.9 Click Create to create a replay. Enter a name for the Replay Select target database Use to find the test database Page 32 of 58

33 In Target Name enter test Click Search Select test.oracle.com Click Select Page 33 of 58

34 5.10 Each workload is stored in our capture repository and is not currently preprocessed. Click the icon for Preprocess Workload Even if our workloads are stored on the same machine, we need to move them to a separate replay directory that will be used for concurrent replay. Let s copy our captures to the replay folder. Check Copy the workload directories to this host from another host Click Next Page 34 of 58

35 5.12 For Current Location of The Workload Directory use Named Credential Select: Credential Name: HOST-ORACLE For New Location of the Workload Directory Enter: Host: em12.oracle.com ( use Search icon ) Directory: /home/oracle/scripts/dbpack/rat_replay Select: Credential Name: HOST-ORACLE Search for the host. Click Select em12.oracle.com Click Select Page 35 of 58

36 5.13 Wait until workload has been copied 5.14 Select Directory Object : RAT_REPLAY This directory object is pre-created for the container database. Click Next Page 36 of 58

37 5.15 In Host Credentials Select Named and choose HOST-ORACLE Click Next 5.16 Click Submit Page 37 of 58

38 5.17 It is now time to replay our workloads. Note for lab purposes the test system and Container database are appropriately setup for replay. Click the icon for Replay Workload Page 38 of 58

39 5.18 The workload was already copied when we did the preprocessing, so we are going to use that directory Select Use an existing directory. Click Next 5.19 Select Directory Object: RAT_REPLAY Click Next 5.20 Click Next Page 39 of 58

40 5.21 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_5min_B Change SID=test to Service_name = dw.oracle.com Click Test Connection and make sure you get in the upper left corner. Page 40 of 58

41 Select Capture Name : OLTP_CAPTURE_5min_B Change SID=test to Service_name = oltp.oracle.com Click Test Connection and make sure you get in the upper left corner. Click Next 5.22 Click Add Replay Client Hosts Page 41 of 58

42 5.23 Click Go Select : em12.oracle.com Click Select 5.24 Click on No to configure replay clients Page 42 of 58

43 5.25 Add information for replay client hosts. Make sure that all values are correct. If you have the opportunity to copy from this document with cut and paste, please do so. Note! if there are any errors or extra spaces, you might get an error and will have to restart from the beginning of Replay Task flow, so make sure to pay extra attention. Client Oracle Home: Client Replay Directory: Client TNS_ADMIN Directory: Client Work Directory: /u01/home/oracle/db12c /home/oracle/scripts/dbpack/rat_replay /u01/home/oracle/db12c/network/admin /tmp Click Apply Click Close Page 43 of 58

44 5.26 Click Next 5.27 For Database Host Credentials Select: HOST-ORACLE For Storage Host Credentials Select: HOST-ORACLE Click Next Page 44 of 58

45 5.28 Click Submit 5.29 The replay has started and we can now monitor the replay 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 Page 45 of 58

46 5.30 When the replay has finished then we have the ability to generate a various types of reports for performance analysis. The replay and export of AWR data will take about 10 minutes to finish. We have therefore a canned replay you can use to view replay report To view reports in the canned replay Click on the Database Replay bread crumb 5.32 Click on RAT_REPLAY_CANNED Page 46 of 58

47 5.33 Click on CANNED_REPLAY_ From the replay home page you have the option to drill down and investigate divergence which is visible in the lower left section. But we are supposed to look at our replay reports so click on Reports tab Page 47 of 58

48 5.35 Let s view the Database Replay Report. Click on View Page 48 of 58

49 5.36 This report contains an overview information of individual captures and replays Page 49 of 58

50 5.37 Let s view the Replay Compare report. Click on View 5.38 This report includes a more detailed analyze of our replays. First sections is an overview Page 50 of 58

51 5.39 Further down in the report we can see a more detailed analyze with breakdown on individual SQL statement 5.40 Top SQL statements divided by DB Time, CPU Time and Wait Time Page 51 of 58

52 5.41 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 5.42 This report shows when we had peak workload and which application that generated the workload. We can see that our peaks are caused by the Data warehouse application and by the characteristics of this workload it looks like we have some heavy reports executed on frequent intervals. Page 52 of 58

53 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 have given you a good overview how to use the new consolidated replay feature. Page 53 of 58

54 Appendix A. How to start the database Workload? This lab requires targets to be started by running the script 1-db_lab_start.sh. If you haven t already, please make sure to run the 1-db_lab_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 $./1-db_lab_start.sh Page 54 of 58

55 Appendix B. 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 C. DB Performance Overview and Business Cases Oracle Enterprise Manager Express Oracle Database 12c introduces Oracle Enterprise Manager Express, or simply EM Express, a web based GUI tool optimized for performance Management. EM Express is extremely light weight and is built inside the database so it doesn t require any additional install. With only a 20 MB disk footprint, there is no resource usage when it is not invoked or used. You can use Oracle Enterprise Manager Express to manage a single database while Cloud Control 12c can be used to manage many databases and targets. Oracle Enterprise Manager Database Express includes Performance Hub, a completely new unified interface for performance monitoring. It is the single pane of glass view of database performance with access to ADDM, SQL Tuning, Real-Time SQL Monitoring and ASH Analytics under the same hood. A flexible time picker allows the administrator to seamlessly switch between Real-Time and Historical views of database performance. For Oracle RAC databases, there is an additional RAC tab that allows the database administrator to monitor cluster related performance problems. Diagnosing a slowly performing system or a sudden degradation in performance is a time consuming task and often the activity where the DBAs spend most of their time. A major component of the challenge is to simply identify what is causing the problem in our increasingly complex business environments. There is a need to sample the current state of all the sessions that are active in our systems, but analyzing this data for transient problems that occur for very short durations is not simple. EM Express allows the administrator to rollup, drilldown, and slice or dice performance data across various performance dimensions that are captured along with the session state. With the ability to create filters on various dimensions, identifying performance issues has never been easier. Page 55 of 58

56 Page 56 of 58

57 Appendix D. 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 57 of 58

58 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 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 58 of 58

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

Oracle Database Performance Management Best Practices Workshop. AIOUG Product Management Team Database Manageability Oracle Database Performance Management Best Practices Workshop AIOUG Product Management Team Database Manageability Table of Contents Oracle DB Performance Management... 3 A. Configure SPA Quick Check...6

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

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

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

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

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

Proactive Performance Monitoring Using Metric Extensions and SPA

Proactive Performance Monitoring Using Metric Extensions and SPA Proactive Performance Monitoring Using Metric Extensions and SPA Mughees A. Minhas Oracle Redwood Shores, CA, USA Keywords: Oracle, database, performance, proactive, fix, monitor, Enterprise manager, EM,

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

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

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

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

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

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

Create an Excel BI report and share on SharePoint 2013

Create an Excel BI report and share on SharePoint 2013 2013 Create an Excel BI report and share on SharePoint 2013 Hands-On Lab Lab Manual This document is provided as-is. Information and views expressed in this document, including URL and other Internet Web

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

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

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

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 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

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

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

Cloud Cruiser and Azure Public Rate Card API Integration

Cloud Cruiser and Azure Public Rate Card API Integration Cloud Cruiser and Azure Public Rate Card API Integration In this article: Introduction Azure Rate Card API Cloud Cruiser s Interface to Azure Rate Card API Import Data from the Azure Rate Card API Defining

More information

1. This lesson introduces the Performance Tuning course objectives and agenda

1. This lesson introduces the Performance Tuning course objectives and agenda Oracle Database 11g: Performance Tuning The course starts with an unknown database that requires tuning. The lessons will proceed through the steps a DBA will perform to acquire the information needed

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

Copyright 2012, Oracle and/or its affiliates. All rights reserved.

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 1 Advanced Database Performance Analysis Techniques Using Metric Extensions and SPA Mughees A. Minhas VP of Product Management Oracle 2 Program Agenda Database Performance Analysis Challenges Advanced

More information

IBM Business Monitor V8.0 Global monitoring context lab

IBM Business Monitor V8.0 Global monitoring context lab Copyright IBM Corporation 2012 All rights reserved IBM BUSINESS MONITOR 8.0 LAB EXERCISE IBM Business Monitor V8.0 lab What this exercise is about... 2 Lab requirements... 2 What you should be able to

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

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

WebSphere Business Monitor V6.2 KPI history and prediction lab

WebSphere Business Monitor V6.2 KPI history and prediction lab Copyright IBM Corporation 2009 All rights reserved IBM WEBSPHERE BUSINESS MONITOR 6.2 LAB EXERCISE WebSphere Business Monitor V6.2 KPI history and prediction lab What this exercise is about... 1 Lab requirements...

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

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

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

Discovery Guide. Secret Server. Table of Contents

Discovery Guide. Secret Server. Table of Contents Secret Server Discovery Guide Table of Contents Introduction... 3 How Discovery Works... 3 Active Directory / Local Windows Accounts... 3 Unix accounts... 3 VMware ESX accounts... 3 Why use Discovery?...

More information

HDA Integration Guide. Help Desk Authority 9.0

HDA Integration Guide. Help Desk Authority 9.0 HDA Integration Guide 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

SAM Server Utility User s Guide

SAM Server Utility User s Guide SAM Server Utility User s Guide Updated May 2012 Copyright 2010, 2012 by Scholastic Inc. All rights reserved. Published by Scholastic Inc. PDF0157 (PDF) SCHOLASTIC, READ 180, SYSTEM 44, SCHOLASTIC EXPERT

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

Objectif. Participant. Prérequis. Pédagogie. Oracle Database 11g - Performance Tuning DBA Release 2. 5 Jours [35 Heures]

Objectif. Participant. Prérequis. Pédagogie. Oracle Database 11g - Performance Tuning DBA Release 2. 5 Jours [35 Heures] Plan de cours disponible à l adresse http://www.adhara.fr/.aspx Objectif Use the Oracle Database tuning methodology appropriate to the available tools Utilize database advisors to proactively tune an Oracle

More information

National Fire Incident Reporting System (NFIRS 5.0) Configuration Tool User's Guide

National Fire Incident Reporting System (NFIRS 5.0) Configuration Tool User's Guide National Fire Incident Reporting System (NFIRS 5.0) Configuration Tool User's Guide NFIRS 5.0 Software Version 5.6 1/7/2009 Department of Homeland Security Federal Emergency Management Agency United States

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

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

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

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

Oracle Database 11g: New Features for Administrators 15-1

Oracle Database 11g: New Features for Administrators 15-1 Oracle Database 11g: New Features for Administrators 15-1 Oracle Database 11g: New Features for Administrators 15-2 SQL Monitoring The real-time SQL monitoring feature on Oracle Database 11g enables you

More information

Policy Compliance. Getting Started Guide. January 22, 2016

Policy Compliance. Getting Started Guide. January 22, 2016 Policy Compliance Getting Started Guide January 22, 2016 Copyright 2011-2016 by Qualys, Inc. All Rights Reserved. Qualys and the Qualys logo are registered trademarks of Qualys, Inc. All other trademarks

More information

Customer evaluation guide Toad for Oracle v12 Database administration

Customer evaluation guide Toad for Oracle v12 Database administration Thank you for choosing to download a Toad for Oracle trial. This guide will enable you to evaluate Toad s key technical features and business value. It can be used to evaluate the database administration

More information

Redis OLTP (Transactional) Load Testing

Redis OLTP (Transactional) Load Testing Redis OLTP (Transactional) Load Testing The document Introduction to Transactional (OLTP) Load Testing for all Databases provides a general overview on the HammerDB OLTP workload and should be read prior

More information

EMC Unisphere for VMAX Database Storage Analyzer

EMC Unisphere for VMAX Database Storage Analyzer EMC Unisphere for VMAX Database Storage Analyzer Version 8.1.0 Online Help (PDF version) Copyright 2014-2015 EMC Corporation. All rights reserved. Published in USA. Published September, 2015 EMC believes

More information

WatchDox Administrator's Guide. Application Version 3.7.5

WatchDox Administrator's Guide. Application Version 3.7.5 Application Version 3.7.5 Confidentiality This document contains confidential material that is proprietary WatchDox. The information and ideas herein may not be disclosed to any unauthorized individuals

More information

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

MyOra 4.5. User Guide. SQL Tool for Oracle. Kris Murthy MyOra 4.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

Monitor and Manage Your MicroStrategy BI Environment Using Enterprise Manager and Health Center

Monitor and Manage Your MicroStrategy BI Environment Using Enterprise Manager and Health Center Monitor and Manage Your MicroStrategy BI Environment Using Enterprise Manager and Health Center Presented by: Dennis Liao Sales Engineer Zach Rea Sales Engineer January 27 th, 2015 Session 4 This Session

More information

Advanced Configuration Steps

Advanced Configuration Steps Advanced Configuration Steps After you have downloaded a trial, you can perform the following from the Setup menu in the MaaS360 portal: Configure additional services Configure device enrollment settings

More information

What is new or different in AppScan Enterprise v9.0.2 if you re upgrading from v9.0.1.1

What is new or different in AppScan Enterprise v9.0.2 if you re upgrading from v9.0.1.1 What is new or different in AppScan Enterprise v9.0.2 if you re upgrading from v9.0.1.1 Larissa Berger Miriam Fitzgerald April 24, 2015 Abstract: This white paper guides customers through the new features

More information

User's Guide - Beta 1 Draft

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

More information

Affiliated Provider Billing/Coding

Affiliated Provider Billing/Coding Affiliated Provider Billing/Coding ED BILLING USING FIRSTNET Table of Contents Affiliated Provider ED Billing...2 icentra FirstNet...2 Accessing FirstNet...2 To access FirstNet:...2 Checking In as a Provider...2

More information

Getting Started with Database Provisioning

Getting Started with Database Provisioning Getting Started with Database Provisioning VMware vfabric Data Director 2.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

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

The Complete Performance Solution for Microsoft SQL Server

The Complete Performance Solution for Microsoft SQL Server The Complete Performance Solution for Microsoft SQL Server Powerful SSAS Performance Dashboard Innovative Workload and Bottleneck Profiling Capture of all Heavy MDX, XMLA and DMX Aggregation, Partition,

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

Hands on Lab: Building a Virtual Machine and Uploading VM Images to the Cloud using Windows Azure Infrastructure Services

Hands on Lab: Building a Virtual Machine and Uploading VM Images to the Cloud using Windows Azure Infrastructure Services Hands on Lab: Building a Virtual Machine and Uploading VM Images to the Cloud using Windows Azure Infrastructure Services Windows Azure Infrastructure Services provides cloud based storage, virtual networks

More information

Recording Supervisor Manual Presence Software

Recording Supervisor Manual Presence Software Presence Software Version 9.2 Date: 09/2014 2 Contents... 3 1. Introduction... 4 2. Installation and configuration... 5 3. Presence Recording architectures Operating modes... 5 Integrated... with Presence

More information

How To Install An Aneka Cloud On A Windows 7 Computer (For Free)

How To Install An Aneka Cloud On A Windows 7 Computer (For Free) MANJRASOFT PTY LTD Aneka 3.0 Manjrasoft 5/13/2013 This document describes in detail the steps involved in installing and configuring an Aneka Cloud. It covers the prerequisites for the installation, the

More information

Audit Management Reference

Audit Management Reference www.novell.com/documentation Audit Management Reference ZENworks 11 Support Pack 3 February 2014 Legal Notices Novell, Inc., makes no representations or warranties with respect to the contents or use of

More information

vtcommander Installing and Starting vtcommander

vtcommander Installing and Starting vtcommander vtcommander vtcommander provides a local graphical user interface (GUI) to manage Hyper-V R2 server. It supports Hyper-V technology on full and core installations of Windows Server 2008 R2 as well as on

More information

Product Review: James F. Koopmann Pine Horse, Inc. Quest Software s Foglight Performance Analysis for Oracle

Product Review: James F. Koopmann Pine Horse, Inc. Quest Software s Foglight Performance Analysis for Oracle Product Review: James F. Koopmann Pine Horse, Inc. Quest Software s Foglight Performance Analysis for Oracle Introduction I ve always been interested and intrigued by the processes DBAs use to monitor

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

Oracle Database 11 g Performance Tuning. Recipes. Sam R. Alapati Darl Kuhn Bill Padfield. Apress*

Oracle Database 11 g Performance Tuning. Recipes. Sam R. Alapati Darl Kuhn Bill Padfield. Apress* Oracle Database 11 g Performance Tuning Recipes Sam R. Alapati Darl Kuhn Bill Padfield Apress* Contents About the Authors About the Technical Reviewer Acknowledgments xvi xvii xviii Chapter 1: Optimizing

More information

USER GUIDE: MaaS360 Services

USER GUIDE: MaaS360 Services USER GUIDE: MaaS360 Services 05.2010 Copyright 2010 Fiberlink Corporation. All rights reserved. Information in this document is subject to change without notice. The software described in this document

More information

Delegated Administration Quick Start

Delegated Administration Quick Start Delegated Administration Quick Start Topic 50200 Delegated Administration Quick Start Updated 22-Oct-2013 Applies to: Web Filter, Web Security, Web Security Gateway, and Web Security Gateway Anywhere,

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

SQL Server 2005: SQL Query Tuning

SQL Server 2005: SQL Query Tuning SQL Server 2005: SQL Query Tuning Table of Contents SQL Server 2005: SQL Query Tuning...3 Lab Setup...4 Exercise 1 Troubleshooting Deadlocks with SQL Profiler...5 Exercise 2 Isolating a Slow Running Query

More information

SelectSurvey.NET Basic Training Class 1

SelectSurvey.NET Basic Training Class 1 SelectSurvey.NET Basic Training Class 1 3 Hour Course Updated for v.4.143.001 6/2015 Page 1 of 57 SelectSurvey.NET Basic Training In this video course, students will learn all of the basic functionality

More information

Basic Tuning Tools Monitoring tools overview Enterprise Manager V$ Views, Statistics and Metrics Wait Events

Basic Tuning Tools Monitoring tools overview Enterprise Manager V$ Views, Statistics and Metrics Wait Events Introducción Objetivos Objetivos del Curso Basic Tuning Tools Monitoring tools overview Enterprise Manager V$ Views, Statistics and Metrics Wait Events Using Automatic Workload Repository Managing the

More information

LogMeIn Network Console Version 8 Getting Started Guide

LogMeIn Network Console Version 8 Getting Started Guide LogMeIn Network Console Version 8 Getting Started Guide April 2007 1. About the Network Console... 2 2. User Interface...2 3. Quick Start... 2 4. Network & Subnet Scans...3 5. Quick Connect...3 6. Operations...

More information

news Enterprise Manager Cloud Control oracle ... the smarter way of information

news Enterprise Manager Cloud Control oracle ... the smarter way of information Enterprise Manager Cloud Control... the smarter way of information Seite 2/6 Enterprise Manager Cloud Control 1 Executive Summary Cloud Control 12c - the latest version of Oracle Enterprise Manager - has

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

SWIFT Data Warehouse Frequently Asked Questions & Glossary of Terms

SWIFT Data Warehouse Frequently Asked Questions & Glossary of Terms Page 1 of 30 SWIFT Data Warehouse Frequently Asked Questions & Glossary of Terms This FAQ is organized into the following categories of questions: Access and Security focus is on how users access the SWIFT

More information

Optimizing Your Database Performance the Easy Way

Optimizing Your Database Performance the Easy Way Optimizing Your Database Performance the Easy Way by Diane Beeler, Consulting Product Marketing Manager, BMC Software and Igy Rodriguez, Technical Product Manager, BMC Software Customers and managers of

More information

Oracle Data Miner (Extension of SQL Developer 4.0)

Oracle Data Miner (Extension of SQL Developer 4.0) An Oracle White Paper October 2013 Oracle Data Miner (Extension of SQL Developer 4.0) Generate a PL/SQL script for workflow deployment Denny Wong Oracle Data Mining Technologies 10 Van de Graff Drive Burlington,

More information

Primavera Unifier v9.14 / 2014 EPPM Day Hands On Session Exercise Document

Primavera Unifier v9.14 / 2014 EPPM Day Hands On Session Exercise Document Primavera Unifier v9.14 / 2014 EPPM Day Hands On Session Exercise Document This exercise document is a basic Unifier intro. document, for those people, who would like to gain the first impression around

More information

OEM s SQL Monitoring Feature. Ken Gottry 5-May-2014

OEM s SQL Monitoring Feature. Ken Gottry 5-May-2014 OEM s SQL Monitoring Feature Ken Gottry 5-May-2014 SQL Monitoring Feature of Oracle Enterprise Manager (OEM) Oracle Enterprise Manager (OEM) presents many administrative and investigatory services to the

More information

An Oracle White Paper February, 2015. Oracle Database In-Memory Advisor Best Practices

An Oracle White Paper February, 2015. Oracle Database In-Memory Advisor Best Practices An Oracle White Paper February, 2015 Oracle Database In-Memory Advisor Best Practices Disclaimer The following is intended to outline our general product direction. It is intended for information purposes

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

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

OneLogin Integration User Guide

OneLogin Integration User Guide OneLogin Integration User Guide Table of Contents OneLogin Account Setup... 2 Create Account with OneLogin... 2 Setup Application with OneLogin... 2 Setup Required in OneLogin: SSO and AD Connector...

More information

Finance Reporting. Millennium FAST. User Guide Version 4.0. Memorial University of Newfoundland. September 2013

Finance Reporting. Millennium FAST. User Guide Version 4.0. Memorial University of Newfoundland. September 2013 Millennium FAST Finance Reporting Memorial University of Newfoundland September 2013 User Guide Version 4.0 FAST Finance User Guide Page i Contents Introducing FAST Finance Reporting 4.0... 2 What is FAST

More information

Cloud Services ADM. Agent Deployment Guide

Cloud Services ADM. Agent Deployment Guide Cloud Services ADM Agent Deployment Guide 10/15/2014 CONTENTS System Requirements... 1 Hardware Requirements... 1 Installation... 2 SQL Connection... 4 AD Mgmt Agent... 5 MMC... 7 Service... 8 License

More information

Decision Support AITS University Administration. Web Intelligence Rich Client 4.1 User Guide

Decision Support AITS University Administration. Web Intelligence Rich Client 4.1 User Guide Decision Support AITS University Administration Web Intelligence Rich Client 4.1 User Guide 2 P age Web Intelligence 4.1 User Guide Web Intelligence 4.1 User Guide Contents Getting Started in Web Intelligence

More information

Recruiter s Resource Guide

Recruiter s Resource Guide Recruiter s Resource Guide First Edition 1.29.2015 Contents Section One Recruiting... 3 Accessing Team Georgia Careers... 4 My Setup Preferences... 5 Creating a Requisition... 6 Approving a Requisition...

More information

ORACLE BUSINESS INTELLIGENCE WORKSHOP

ORACLE BUSINESS INTELLIGENCE WORKSHOP ORACLE BUSINESS INTELLIGENCE WORKSHOP Creating Interactive Dashboards and Using Oracle Business Intelligence Answers Purpose This tutorial shows you how to build, format, and customize Oracle Business

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

Migrating TimeForce To A New Server

Migrating TimeForce To A New Server Rev. 4/28/14 Migrating TimeForce To A New Server Table of Contents 1. Installation Prerequisites... 2 Required... 2 Recommended... 3 2. Update to a Migration Compatible Version... 3 Determine the Database

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

Embarcadero Performance Center 2.7 Installation Guide

Embarcadero Performance Center 2.7 Installation Guide Embarcadero Performance Center 2.7 Installation Guide Copyright 1994-2009 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco, CA 94111 U.S.A.

More information

EMC Smarts Network Configuration Manager

EMC Smarts Network Configuration Manager EMC Smarts Network Configuration Manager Version 9.4.1 Advisors User Guide P/N 302-002-279 REV 01 Copyright 2013-2015 EMC Corporation. All rights reserved. Published in the USA. Published October, 2015

More information

Sage Accpac ERP 5.6A. CRM Analytics for SageCRM I User Guide

Sage Accpac ERP 5.6A. CRM Analytics for SageCRM I User Guide Sage Accpac ERP 5.6A CRM Analytics for SageCRM I User Guide 2009 Sage Software, Inc. All rights reserved. Sage, the Sage logos, and all SageCRM product and service names mentioned herein are registered

More information

Programa de Actualización Profesional ACTI Oracle Database 11g: SQL Tuning Workshop

Programa de Actualización Profesional ACTI Oracle Database 11g: SQL Tuning Workshop Programa de Actualización Profesional ACTI Oracle Database 11g: SQL Tuning Workshop What you will learn This Oracle Database 11g SQL Tuning Workshop training is a DBA-centric course that teaches you how

More information

Citrix EdgeSight for Load Testing User s Guide. Citrx EdgeSight for Load Testing 2.7

Citrix EdgeSight for Load Testing User s Guide. Citrx EdgeSight for Load Testing 2.7 Citrix EdgeSight for Load Testing User s Guide Citrx EdgeSight for Load Testing 2.7 Copyright Use of the product documented in this guide is subject to your prior acceptance of the End User License Agreement.

More information

Hands-On Microsoft Windows Server 2008

Hands-On Microsoft Windows Server 2008 Hands-On Microsoft Windows Server 2008 Chapter 9 Server and Network Monitoring Objectives Understand the importance of server monitoring Monitor server services and solve problems with services Use Task

More information

How To Change Your Site On Drupal Cloud On A Pcode On A Microsoft Powerstone On A Macbook Or Ipad (For Free) On A Freebie (For A Free Download) On An Ipad Or Ipa (For

How To Change Your Site On Drupal Cloud On A Pcode On A Microsoft Powerstone On A Macbook Or Ipad (For Free) On A Freebie (For A Free Download) On An Ipad Or Ipa (For How-to Guide: MIT DLC Drupal Cloud Theme This guide will show you how to take your initial Drupal Cloud site... and turn it into something more like this, using the MIT DLC Drupal Cloud theme. See this

More information