NetIQ and LECCOTECH: Integrated Solutions for Optimal SQL Server Performance October 2003

Size: px
Start display at page:

Download "NetIQ and LECCOTECH: Integrated Solutions for Optimal SQL Server Performance October 2003"

Transcription

1 NetIQ and LECCOTECH: Integrated Solutions for Optimal SQL Server Performance October 2003 Contents Introduction... 1 Traditional Methods of Monitoring and Tuning... 1 The NetIQ and LECCOTECH Solution... 1 Conclusion... 9 Many SQL Server performance issues are directly related to application performance, which means that the efficiency of the SQL statements being run needs to be scrutinized. NetIQ and LECCOTECH provide an integrated solution to help database administrators (DBAs) and developers scrutinize and resolve performance issues. Together, NetIQ s DiagnosticManager for SQL Server and LECCOTECH s LECCO SQL Expert solution deliver a comprehensive solution enabling rapid diagnosis of performance problems and automating the process of SQL optimization. DBAs can work with DiagnosticManager to locate problematic SQL statements and then employ LECCO SQL Expert to provide SQL alternatives that will overcome the deficiencies of currently used statements. This white paper outlines the step-by-step approach DBAs and application developers can use to identify bottlenecks and improve performance in a SQL Server environment using DiagnosticManager and LECCO SQL Expert.

2 THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND ARE SUBJECT TO THE TERMS OF A LICENSE AGREEMENT OR A NON-DISCLOSURE AGREEMENT. EXCEPT AS EXPRESSLY SET FORTH IN SUCH LICENSE AGREEMENT OR NON-DISCLOSURE AGREEMENT, NETIQ CORPORATION PROVIDES THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT AS IS WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. SOME STATES DO NOT ALLOW DISCLAIMERS OF EXPRESS OR IMPLIED WARRANTIES IN CERTAIN TRANSACTIONS; THEREFORE, THIS STATEMENT MAY NOT APPLY TO YOU. This document and the software described in this document may not be lent, sold, or given away without the prior written permission of NetIQ Corporation, except as otherwise permitted by law. Except as expressly set forth in such license agreement or non-disclosure agreement, no part of this document or the software described in this document may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, electronic, mechanical, or otherwise, without the prior written consent of NetIQ Corporation. Some companies, names, and data in this document are used for illustration purposes and may not represent real companies, individuals, or data. This document could include technical inaccuracies or typographical errors. Changes are periodically made to the information herein. These changes may be incorporated in new editions of this document. NetIQ Corporation may make improvements in or changes to the software described in this document at any time NetIQ Corporation, all rights reserved. U.S. Government Restricted Rights: If the software and documentation are being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), in accordance with 48 C.F.R (for Department of Defense (DOD) acquisitions) and 48 C.F.R and (for non-dod acquisitions), the government s rights in the software and documentation, including its rights to use, modify, reproduce, release, perform, display or disclose the software or documentation, will be subject in all respects to the commercial license rights and restrictions provided in the license agreement. Check Point, FireWall-1, and Provider-1 are trademarks or registered trademarks of Check Point Software Technologies Ltd. ActiveAgent, ActiveAnalytics, ActiveAudit, ActiveKnowledge, ActiveReporting, ADcheck, AppAnalyzer, Application Scanner, AppManager, AuditTrack, AutoSync, Chariot, ClusterTrends, CommerceTrends, Configuration Assessor, the cube logo design, DBTrends, DiagnosticManager, Directory and Resource Administrator, Directory Security Administrator, Domain Migration Administrator, End2End, Exchange Administrator, Exchange Migrator, Extended Management Pack, FastTrends, File Security Administrator, Firewall Appliance Analyzer, Firewall Reporting Center, Firewall Suite, Ganymede, the Ganymede logo, Ganymede Software, Group Policy Administrator, Intergreat, Knowledge Scripts, Migrate.Monitor.Manage, Mission Critical Software, Mission Critical Software for E-Business, the Mission Critical Software logo, MP3check, NetIQ, the NetIQ logo, the NetIQ Partner Network design, NetWare Migrator, OnePoint, the OnePoint logo, Operations Manager, PentaSafe, PSAudit, PSDetect, PSPasswordManager, PSSecure, Qcheck, Security Analyzer, Security Manager, Server Consolidator, SQLcheck, VigilEnt, Visitor Mean Business, Vivinet, W logo, WebTrends, WebTrends Analysis Suite, WebTrends for Content Management Systems, WebTrends Intelligence Suite, WebTrends Live, WebTrends Log Analyzer, WebTrends Network, WebTrends OLAP Manager, WebTrends Report Designer, WebTrends Reporting Center, WebTrends Warehouse, Work Smarter, WWWorld, and XMP are trademarks or registered trademarks of NetIQ Corporation or its subsidiaries in the United States and other jurisdictions. All other company and product names mentioned are used only for identification purposes and may be trademarks or registered trademarks of their respective companies.

3 Introduction Monitoring and locating performance issues in a Microsoft SQL Server environment are tasks that every administrator must perform to satisfy end users and adhere to corporate requirements. Many performance issues are directly related to application performance and the efficiency of the application s SQL statements needs to be scrutinized. SQL Server offers limited capabilities in this area. Relying on the Microsoft SQL Server tools, database structure changes, and even developer skill sets will not solve short-term issues with database and application performance and only add to long term and potential problems. In addition, the many hours that are lost due to performance issues can greatly affect the bottom line. Performance tuning focuses on the analysis of SQL statements that are either embedded within, or called by applications. This uncovers the root cause of performance issues the SQL statements that require excessive system resources and time to run. Through identification and tuning of these SQL statements, system performance can be improved enough to eliminate the need for more expensive hardware and SQL Server tuning experts. SQL Server offers several choices to perform an identification and analysis of the statements that could be causing performance issues, but each does have limits that should be considered. Traditional Methods of Monitoring and Tuning The Enterprise Manager and SQL Server Profiler tools provided by Microsoft offer limited functionality that expert DBAs can use to assist in identifying performance problems and aid in identifying problem SQL statements in a given environment. However, there are no graphical tools that will actually display the overall health of SQL Server databases and allow one to easily pinpoint areas of concern. By itself, the Profiler allows one to capture or trace problem SQL statements to a system file or a database table. The trace table or file will keep track of SQL statements falling into a limited range of predefined problem areas, or filters. These statements can be captured in a trace, but only one problem or event can be investigated per trace. Another concern is that the SQL Server Profiler can use significant system resources, causing a performance problem itself. Therefore, the more events traced, the more system overhead will be required. The NetIQ and LECCOTECH Solution NetIQ s DiagnosticManager for SQL Server overcomes the limitations of the Microsoft tools by enabling DBAs to rapidly diagnose and correct performance problems. Fast, accurate resolution is vital when the enterprise depends on database performance and availability to provide customer service. NetIQ and LECCOTECH: Integrated Solutions for Optimal SQL Server Performance 1

4 DiagnosticManager will automatically locate problem SQL statements tuning those SQL statements is the next logical step. To tune SQL, we first need to understand how the SQL Server database optimizer processes SQL statements. The SQL Server database optimizer determines the execution plan for all SQL statements. The optimizer uses a step by-step method to determine the execution plan: parsing the statement, checking indexes for search arguments, deriving the execution plan, and estimating the cost of execution. The optimizer has only milliseconds to choose an execution plan to avoid affecting user response time. Given the constraints that are placed on system resources, the optimizer may not have adequate resources allotted to it for performing this task in a thorough manner, as it would only contribute to an overall performance issue itself. Compounding this shortcoming of the optimizer, the complexity of a query, database structure, and volume changes can also limit its effectiveness. Given the nature of today s OLTP and DSS environments, one can imagine the challenges that are not met by relying solely on the database optimizer to dictate query performance. For a developer or DBA to work around any shortcomings of the database optimizer and approach SQL tuning manually requires not only a strong skill in SQL development, but also an abundance of time. The first step in this process is to identify SQL statements that are causing bottlenecks. Once these statements are identified, the next step requires one to be able to produce as many variations of the problematic SQL statement as possible, with execution plans that are unique to each newly produced alternative. After these alternatives are produced, they must be executed to determine their actual runtime. This process is very time consuming, even for the most capable developer or DBA. To address the challenge of providing an end-to-end database application tuning process, NetIQ and LECCOTECH have partnered to provide a complete performance tuning solution. Problematic SQL statements are automatically identified with DiagnosticManager and then sent to LECCO SQL Expert for optimization. This seamless integration of monitoring and tuning allows developers and DBAs alike to streamline performance initiatives and overcome any limitations of not only SQL Server, but also any limitations within the development, quality assurance, and production environments with regard to SQL performance. The LECCO SQL Expert product, integrated with DiagnosticManager, offers a total solution in SQL performance bottleneck detection and optimization. Once SQL performance bottlenecks are identified with DiagnosticManager, users can simply right click in DiagnosticManager s Worst-Performing SQL screen and send problematic SQL statements to LECCO SQL Expert for optimization. As stated previously, application performance issues are primarily the result of problematic SQL statements. The DiagnosticManager and LECCO SQL Expert solution focuses on this aspect of performance and provides a comprehensive solution that makes it possible to optimize application performance with a simple three-step process: 1. Locate problematic SQL statements with DiagnosticManager 2. Rewrite SQL statements with LECCO SQL Expert 3. Benchmark and test SQL alternatives within LECCO SQL Expert Step 1: DiagnosticManager: Locate Problem SQL Statements DiagnosticManager collects and sorts data, allowing administrators to view information for one server or for the entire environment (Figure 1), making it easy to identify the worst performing SQL statements. Data collection is entirely automated with a background service an administrator can review information across dozens of servers from one console or drill deep into any server to spot problem areas. 2 White Paper

5 When the DiagnosticManager console is open, it is easy to navigate to any area of performance that is of concern to a SQL Server administrator. An area of key importance is locating the SQL statements that may be under-performing in the database and therefore causing performance bottlenecks. To locate these statements, DiagnosticManager provides a simple point and click menu that will display any statements which exceed predefined performance thresholds. Figure 1: DiagnosticManager provides a graphical interface into the health of SQL Server databases. By choosing to view the performance diagnostics of a SQL Server database within DiagnosticManager, statements that are acting as bottlenecks are easily pinpointed. The flexibility of DiagnosticManager is evident immediately. Various performance items can be selected as criteria for capturing statements for further analysis. Selection options can be made to capture any poorly performing stored procedures, triggers, individual SQL statements, or even SQL statement batches. When making selections, exclusion of any statements can be specified as well. This way, any statements, procedures or triggers executed by an application such as the SQL Server profiler will not be included in those that are captured for analysis. This frees up any time that would be required for an administrator to build complex filters within multiple traces. By specifying the runtime and resource utilization of executed SQL statements, one can further filter those statements that are captured by DiagnosticManager for later optimization and tuning efforts (Figure 2). NetIQ and LECCOTECH: Integrated Solutions for Optimal SQL Server Performance 3

6 Figure 2: DiagnosticManager provides flexibility in filtering the SQL statements that will be selected for optimization and tuning. While accumulating the worst performing SQL statements, DiagnosticManager also allows administrators to regularly delete collected statements (Figure 3). Therefore, as the accumulated history of the offending statements gets larger, older statements can be deleted automatically, thereby reducing query result response times. Purging of any of the accumulated history can be done manually or set to occur automatically. Figure 3: Specify when dated information should be removed from the worst performing statements that are collected. Once DiagnosticManager collects SQL statements that violate the administrator-defined thresholds specified in the collection-filtering tab, these SQL statements are presented in the Worst Performing screen. Based on the collected SQL performance statistics, the decision can be made as to whether further optimization of the offending statement is required. If so, a SQL statement can be easily sent to LECCO SQL Expert for optimization through a click-through option (Figure 4). 4 White Paper

7 Figure 4: DiagnosticManager identifies performance bottlenecks so LECCO SQL Expert can tune queries to optimize performance. Step 2: LECCO SQL Expert: Rewriting SQL Statements Once a SQL statement has been submitted to LECCO SQL Expert from DiagnosticManager, LECCO SQL Expert begins the optimization process (Figure 5). Due to the complexity of the SQL language, there are many ways to write a SQL statement to return the same result set, but small SQL code variations can have a great impact on performance. LECCO SQL Expert s Syntactical SQL Optimizer uses a SQL transformation engine that completely transforms a SQL statement in every possible equivalent SQL variation, preserving the same logic in each alternative statement. The SQL rewrite process includes the use of syntactical SQL transformations and SQL Server hints which are optional to the user. Once the SQL statement has been transformed, LECCO SQL Expert obtains the execution plan [the step-by-step representation of the sequence of operations that SQL Server performs to execute a SQL statement] for each SQL statement. It then narrows the optimized statements to those with a unique execution plan, since an execution plan is what determines the performance of a SQL statement. This comprehensive SQL transformation process occurs in the DBA s desktop PC, thus not affecting database server resources (Figure 6). From this process, every semantic equivalent to the source SQL statement can be produced quickly and automatically. NetIQ and LECCOTECH: Integrated Solutions for Optimal SQL Server Performance 5

8 Figure 5: Once a statement is chosen to be a good candidate for tuning and optimization, the LECCO SQL Expert option within DiagnosticManager will automatically begin generating SQL alternatives. Figure 6: LECCO SQL Expert for SQL Server quickly generates a comprehensive selection of SQL alternatives. Step 3: LECCO SQL Expert: Benchmarking SQL Upon completion of the optimization process, a number of alternative SQL statements will be made available as potential replacements for the problematic source SQL statement. To better determine which statement to use in the SQL Server environment, these statements need to be tested for runtime and I/O statistical information so that the best alternative is identified. The Batch Run function in LECCO SQL Expert provides the capabilities to execute all or some of the SQL alternatives and collect this runtime information. 6 White Paper

9 When performing the Batch Run function, the developer or DBA will be able to quickly and accurately determine if there is a better performing statement for their application. All statements with unique execution plans are executed and their execution times are compared to that of the source statement. Since the optimization process is so comprehensive, there can be many alternatives to test, and LECCO SQL Expert allows the user to establish how the statements being tested should be terminated if they do not satisfy performance requirements (Figure 7). Figure 7: The ability to set termination times for SQL alternatives makes LECCO SQL Expert extremely flexible. LECCO SQL Expert gives DBAs and developers flexibility when performing the batch job function. This test can be set to retrieve the elapsed or response time for each statement being executed (Figure 8). The elapsed time is most relevant to batch jobs and reports when all the records need to be retrieved to display the result. The response time is important for web-based applications since once the first record has been retrieved it can be displayed on the end-user s browser. In addition, there is a setting for how many times each statement should be executed. Depending on the run time for the original SQL statement, the option is available to execute each alternative once or twice. Data caching is an important consideration when optimizing statements used in a web-based application. When the selection is made to execute each statement twice, the first run will be ignored and timing information will be taken from the second run (Figure 8). This gives a more realistic view of how they will perform on a daily basis. NetIQ and LECCOTECH: Integrated Solutions for Optimal SQL Server Performance 7

10 Figure 8: The Batch Run module offers a variety of run time selections. Once the Batch Run is started, progress can be monitored and the results viewed, as they are collected in real time. Once the Batch Run completes, the results of the test are presented (Figure 9). Detail is provided about each statement, along with which alternative performs best in the environment. Figure 9: LECCO SQL Expert allows DBAs and developers to review all run time information. Upon completion of the optimization process with LECCO SQL Expert, a DBA or developer can use the gathered information to learn and increase their knowledge in the area of SQL performance. The SQL Comparer module within the solution is an excellent training alternative (Figure 10). It allows all of the tested statements to be viewed side-by-side in order to display the syntax and execution plan differences. If a faster SQL statement was found, then viewing the changes in SQL syntax will allow one to learn how to write better SQL statements in the future. In addition, Plan Help explains what is being communicated in the execution plan. Understanding what the execution plan conveys regarding SQL execution is very beneficial for both DBAs and developers. 8 White Paper

11 Figure 10: LECCO SQL Expert is an excellent training tool for anyone dealing with application performance Conclusion In the SQL Server environment, performance tuning involves locating and solving bottlenecks at both the database and application levels. The tools available in SQL Server to alleviate these bottlenecks are really not enough when considering the complex nature of today s database environments and varying skills of DBAs. Also, the majority of performance issues on the application side are still going to be due to poorly performing SQL statements, and tuning is a time consuming process for even an expert DBA. NetIQ DiagnosticManager for SQL and LECCO SQL Expert for Microsoft SQL Server provides relief to these pressures by offering solutions that deliver a comprehensive tool to enable database administrators to not only rapidly diagnose performance problems, but also to automate the process of SQL optimization. Database administrators are able to work with DiagnosticManager to locate problematic SQL statements which are most often the root cause of performance problems, and then employ LECCO SQL Expert to provide SQL alternatives that will overcome the deficiencies of currently used statements. Time is saved in the process, and knowledge is gained in the area of database monitoring and SQL tuning. DiagnosticManager by NetIQ and LECCO SQL Expert for Microsoft SQL Server are a complete performance suite that offers a solution to DBAs and developers who understand the importance of database and application performance. Using DiagnosticManager as a monitoring solution and LECCO SQL Expert for SQL optimization will ensure that the highest performing database applications are available to the organization. Download a free trial of NetIQ DiagnosticManager and LECCO SQL Expert for Microsoft SQL Server. DiagnosticManager Product Trial: LECCO SQL Expert Product Trial: NetIQ and LECCOTECH: Integrated Solutions for Optimal SQL Server Performance 9

Upgrading to MailMarshal Version 6.0 SMTP Technical Reference

Upgrading to MailMarshal Version 6.0 SMTP Technical Reference Upgrading to MailMarshal Version 6.0 SMTP Technical Reference April 19, 2005 Contents Introduction... 3 Case 1: Standalone MailMarshal SMTP Server... 3 Case 2: Array of MailMarshal SMTP Servers... 14 Additional

More information

Best Practices: NetIQ Analysis Center for VoIP

Best Practices: NetIQ Analysis Center for VoIP Best Practices: NetIQ Analysis Center for VoIP A White Paper for VoIP Quality July 19, 2005 Contents Overview: How Analysis Center works... 1 Getting started with the console... 2 Recommended VoIP Quality

More information

NetIQ Aegis Adapter for Databases

NetIQ Aegis Adapter for Databases Contents NetIQ Aegis Adapter for Databases Configuration Guide May 2011 Overview... 1 Product Requirements... 1 Implementation Overview... 1 Installing the Database Adapter... 2 Configuring a Database

More information

Monitoring Change in Active Directory White Paper October 2005

Monitoring Change in Active Directory White Paper October 2005 Monitoring Change in Active Directory White Paper October 2005 Contents The Need to Monitor and Control Change... 3 Current Approaches for Active Directory Monitoring 5 Criteria for an Ideal Solution5

More information

MailMarshal 6.0 SMTP Sizing Guide White Paper June 2004

MailMarshal 6.0 SMTP Sizing Guide White Paper June 2004 MailMarshal 6.0 SMTP Sizing Guide White Paper June 2004 Contents MailMarshal Sizing Guidelines... 1 Minimum Hardware and Software Requirements... 2 Performance Matrix... 4 Performance Tuning Recommendations...

More information

Addressing the Risks of Outsourcing

Addressing the Risks of Outsourcing Addressing the Risks of Outsourcing White Paper June 2006 Contents You Are Entrusting Another Entity to Protect Your Data.. 1 Ensure Your Business Partners Have Strong Security Programs... 2 Common Business

More information

NetIQ Free/Busy Consolidator

NetIQ Free/Busy Consolidator Contents NetIQ Free/Busy Consolidator Technical Reference September 2012 Overview... 3 Understanding NetIQ Free/ Busy Consolidator... 3 Supported Versions... 4 Requirements for Free/Busy Consolidator...

More information

MailMarshal 6.0 SMTP Performance Benchmarking White Paper June 2004

MailMarshal 6.0 SMTP Performance Benchmarking White Paper June 2004 MailMarshal 6.0 SMTP Performance Benchmarking White Paper June 2004 Contents Abstract... 2 Test Environment... 2 Test Data... 4 Test Scenarios... 6 Discussion... 13 Appendix... 17 The purpose of this whitepaper

More information

NetIQ Aegis Adapter for VMware vcenter Server

NetIQ Aegis Adapter for VMware vcenter Server Contents NetIQ Aegis Adapter for VMware vcenter Server Configuration Guide May 2011 Overview... 1 Product Requirements... 1 Supported Configurations... 2 Implementation Overview... 2 Ensuring Minimum Rights

More information

NetIQ AppManager for NetBackup UNIX

NetIQ AppManager for NetBackup UNIX NetIQ AppManager for NetBackup UNIX Management Guide January 2008 Legal Notice NetIQ AppManager is covered by United States Patent No(s): 05829001, 05986653, 05999178, 06078324, 06397359, 06408335. THIS

More information

Security and HIPAA Compliance

Security and HIPAA Compliance Contents Meeting the Challenge of HIPAA...3 Key areas of risk...3 Solutions for meeting the challenge of HIPAA...5 Mapping to HIPAA...5 Conclusion...7 About NetIQ...7 About Attachmate...7 Security and

More information

Real-Time Security for Active Directory

Real-Time Security for Active Directory Real-Time Security for Active Directory Contents The Need to Monitor and Control Change... 3 Reducing Risk and Standardizing Controls... 3 Integrating Change Monitoring... 4 Policy Compliance... 4 The

More information

NetIQ AppManager for Self Monitoring UNIX and Linux Servers (AMHealthUNIX) Management Guide

NetIQ AppManager for Self Monitoring UNIX and Linux Servers (AMHealthUNIX) Management Guide NetIQ AppManager for Self Monitoring UNIX and Linux Servers (AMHealthUNIX) Management Guide September 2014 Legal Notice THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND

More information

Using NetIQ's Implementation of NetFlow to Solve Customer's Problems Lecture Manual

Using NetIQ's Implementation of NetFlow to Solve Customer's Problems Lecture Manual ATT9290 Lecture Using NetIQ's Implementation of NetFlow to Solve Customer's Problems Using NetIQ's Implementation of NetFlow to Solve Customer's Problems Lecture Manual ATT9290 NetIQ Training Services

More information

Virtualization Management Survey Analysis White Paper August 2008

Virtualization Management Survey Analysis White Paper August 2008 Contents Introduction Survey Results and Observations... 3 Virtualization Management Survey Analysis White Paper August 2008 Conclusion... 11 About NetIQ... 11 About Attachmate... 11 Over a six week period

More information

Installation and Configuration Guide. NetIQ Security and Compliance Dashboard

Installation and Configuration Guide. NetIQ Security and Compliance Dashboard Installation and Configuration Guide NetIQ Security and Compliance Dashboard June 2011 Legal Notice NetIQ Secure Configuration Manager is covered by United States Patent No(s): 5829001, 7093251. THIS DOCUMENT

More information

NetIQ AppManager for Cisco Interactive Voice Response. Management Guide

NetIQ AppManager for Cisco Interactive Voice Response. Management Guide NetIQ AppManager for Cisco Interactive Voice Response Management Guide February 2009 Legal Notice THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND ARE SUBJECT TO THE TERMS

More information

Achieving ROI From Your PCI Investment White Paper November 2007

Achieving ROI From Your PCI Investment White Paper November 2007 Achieving ROI From Your PCI Investment White Paper November 2007 Contents Introduction... 3 Difficulties in Compliance... 3 Making PCI Work for You... 4 How PCI DSS Can Provide a Significant ROI... 5 How

More information

Using the Message Releasing Features of MailMarshal SMTP Technical White Paper October 15, 2003

Using the Message Releasing Features of MailMarshal SMTP Technical White Paper October 15, 2003 Contents Introduction... 1 Automatic Message Releasing Concepts...2 Server Configuration...3 Policy components...5 Array Support...7 Summary...8. Using the Message Releasing Features of MailMarshal SMTP

More information

Integration With Third Party SIEM Solutions

Integration With Third Party SIEM Solutions Integration With Third Party SIEM Solutions Secure Configuration Manager February 2015 www.netiq.com Legal Notice NetIQ Secure Configuration Manager is protected by United States Patent No(s): 5829001,

More information

The NetIQ Risk & Compliance Approach

The NetIQ Risk & Compliance Approach Achieving Unified Compliance With NetIQ White Paper January 2006 Contents Unified Compliance Introduced...1 Unified Compliance Approach2 Implementing Unified Compliance With NetIQ...4 NetIQ s Methodology

More information

Developing Custom Knowledge Scripts

Developing Custom Knowledge Scripts Developing Custom Knowledge Scripts NetIQ AppManager Version 6.0 Legal Notice THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND ARE SUBJECT TO THE TERMS OF A LICENSE AGREEMENT

More information

Identity as a Service Powered by NetIQ Privileged Account Manager Service Installation and Configuration Guide

Identity as a Service Powered by NetIQ Privileged Account Manager Service Installation and Configuration Guide Identity as a Service Powered by NetIQ Privileged Account Manager Service Installation and Configuration Guide July 2015 www.netiq.com/documentation Legal Notice THIS DOCUMENT AND THE SOFTWARE DESCRIBED

More information

Using NetIQ Security and Administration Products to Ensure HIPAA Compliance March 25, 2002. Contents

Using NetIQ Security and Administration Products to Ensure HIPAA Compliance March 25, 2002. Contents Using NetIQ Security and Administration Products to Ensure HIPAA Compliance March 25, 2002 Contents HIPAA Overview...1 NetIQ Products Offer a HIPAA Solution...2 HIPAA Requirements...3 How NetIQ Security

More information

User Guide. NetIQ Change Guardian for Group Policy. March 2010

User Guide. NetIQ Change Guardian for Group Policy. March 2010 User Guide NetIQ Change Guardian for Group Policy March 2010 Legal Notice THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND ARE SUBJECT TO THE TERMS OF A LICENSE AGREEMENT

More information

Getting the Most Out of Cisco Unity

Getting the Most Out of Cisco Unity Getting the Most Out of Cisco Unity Contents White Paper: Deploying and Monitoring Cisco Unity with the NetIQ AppManager for Voice over IP solution So You re Deploying Cisco Unity... 1 About AppManager...

More information

Proactive Security Policy Enforcement: A Practical Approach September 2003

Proactive Security Policy Enforcement: A Practical Approach September 2003 Proactive Security Policy Enforcement: A Practical Approach September 2003 Contents Why Enforcing Security Policy Is Critical... 1 Policy Enforcement Challenges... 2 Proactive Enforcement via Policy Management

More information

MailMarshal SMTP in a Load Balanced Array of Servers Technical White Paper September 29, 2003

MailMarshal SMTP in a Load Balanced Array of Servers Technical White Paper September 29, 2003 Contents Introduction... 1 Network Load Balancing... 2 Example Environment... 5 Microsoft Network Load Balancing (Configuration)... 6 Validating your NLB configuration... 13 MailMarshal Specific Configuration...

More information

The Network or The Server? How to find out fast!

The Network or The Server? How to find out fast! The Network or The Server? How to find out fast! White Paper Contents Getting to the Bottom of Performance Problems Quickly.2 Collaborating across the IT Performance Boundary...6 Copyright Information...7

More information

Integrating Email Campaign Data with WebTrends

Integrating Email Campaign Data with WebTrends Integrating Email Campaign Data with WebTrends Disclaimer This document and the software described in this document are furnished under and are subject to the terms of a license agreement or a non-disclosure

More information

WebTrends 7 Backup and Restore for MySQL Databases

WebTrends 7 Backup and Restore for MySQL Databases WebTrends 7 Backup and Restore for MySQL Databases May 2004 Edition 2004 NetIQ Corporation Disclaimer This document and the software described in this document are furnished under and are subject to the

More information

NetIQ Directory and Resource Administrator NetIQ Exchange Administrator. Installation Guide

NetIQ Directory and Resource Administrator NetIQ Exchange Administrator. Installation Guide NetIQ Directory and Resource Administrator NetIQ Exchange Administrator Installation Guide August 2013 Legal Notice NetIQ Directory and Resource Administrator is protected by United States Patent No(s):

More information

NetIQ AppManager for Cisco Intelligent Contact Management. Management Guide

NetIQ AppManager for Cisco Intelligent Contact Management. Management Guide NetIQ AppManager for Cisco Intelligent Contact Management Management Guide February 2012 Legal Notice THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND ARE SUBJECT TO THE

More information

NetIQ Privileged User Manager

NetIQ Privileged User Manager NetIQ Privileged User Manager Performance and Sizing Guidelines March 2014 Legal Notice THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND ARE SUBJECT TO THE TERMS OF A LICENSE

More information

Data Retention Laws and Regulations

Data Retention Laws and Regulations Data Retention Compliance White Paper June 2007 Contents by Rebecca Herold, CISSP, CISM, CISA, FLMI Many laws and regulations exist throughout the world that require specific retention time periods and

More information

Reporting and Incident Management for Firewalls

Reporting and Incident Management for Firewalls Reporting and Incident Management for Firewalls The keys to unlocking your firewall s secrets Contents White Paper November 8, 2001 The Role Of The Firewall In Network Security... 2 Firewall Activity Reporting

More information

Identity as a Service Powered by NetIQ Solution Overview Guide

Identity as a Service Powered by NetIQ Solution Overview Guide Identity as a Powered by NetIQ Solution Overview Guide July 2015 www.netiq.com/documentation Legal Notice THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND ARE SUBJECT TO

More information

Identifying Problematic SQL in Sybase ASE. Abstract. Introduction

Identifying Problematic SQL in Sybase ASE. Abstract. Introduction Identifying Problematic SQL in Sybase ASE Written by Darren Mallette, Senior Technical Consultant, Dell Software Abstract Database administrators (DBAs), developers, quality assurance (QA) analysts and

More information

Samsung KNOX EMM Authentication Services. SDK Quick Start Guide

Samsung KNOX EMM Authentication Services. SDK Quick Start Guide Samsung KNOX EMM Authentication Services SDK Quick Start Guide June 2014 Legal notice This document and the software described in this document are furnished under and are subject to the terms of a license

More information

Service Level Agreement Guide. Operations Center 5.0

Service Level Agreement Guide. Operations Center 5.0 Service Level Agreement Guide Operations Center 5.0 November 6, 2013 Legal Notices THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND ARE SUBJECT TO THE TERMS OF A LICENSE

More information

NetIQ AppManager ResponseTime for Microsoft Active Directory Management Guide

NetIQ AppManager ResponseTime for Microsoft Active Directory Management Guide NetIQ AppManager ResponseTime for Microsoft Active Directory Management Guide August 2015 www.netiq.com/documentation Legal Notice THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED

More information

NetIQ Identity Manager

NetIQ Identity Manager NetIQ Identity Manager Security Guide December 2014 Legal Notice THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND ARE SUBJECT TO THE TERMS OF A LICENSE AGREEMENT OR A NON

More information

User Guide Secure Configuration Manager

User Guide Secure Configuration Manager User Guide Secure Configuration Manager January 2015 www.netiq.com/documentation Legal Notice NetIQ Secure Configuration Manager is protected by United States Patent No(s): 5829001, 7707183. THIS DOCUMENT

More information

Firewall Configuration Guide

Firewall Configuration Guide Firewall Configuration Guide Firewall Suite August 1, 2003 THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND ARE SUBJECT TO THE TERMS OF A LICENSE AGREEMENT OR A NON-DISCLOSURE

More information

Using NetIQ to Address PCI Compliance on the iseries Platform White Paper March, 2008

Using NetIQ to Address PCI Compliance on the iseries Platform White Paper March, 2008 Contents Using NetIQ to Address PCI Compliance on the iseries Platform White Paper March, 2008 Overview... 1 About the PCI Data Security Standard... 1 How NetIQ Can Help Assure PCI Compliance on iseries...

More information

Centrify Mobile Authentication Services

Centrify Mobile Authentication Services Centrify Mobile Authentication Services SDK Quick Start Guide 7 November 2013 Centrify Corporation Legal notice This document and the software described in this document are furnished under and are subject

More information

NetIQ Group Policy Administrator User Guide

NetIQ Group Policy Administrator User Guide NetIQ Group Policy Administrator User Guide October 2014 www.netiq.com/documentation Legal Notice THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND ARE SUBJECT TO THE TERMS

More information

NetIQ AppManager for Self Monitoring (AM Health) Management Guide

NetIQ AppManager for Self Monitoring (AM Health) Management Guide NetIQ AppManager for Self Monitoring (AM Health) Management Guide September 2015 www.netiq.com/documentation Legal Notice THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND

More information

NetIQ AppManager for IP Phone Quality. Management Guide

NetIQ AppManager for IP Phone Quality. Management Guide NetIQ AppManager for IP Phone Quality Management Guide February 2011 Legal Notice NetIQ AppManager is covered by United States Patent No(s): 05829001, 05986653, 05999178, 06078324, 06397359, 06408335.

More information

NetIQ SecureLogin 8.0.1 includes new features, improves usability, and resolves several previous issues.

NetIQ SecureLogin 8.0.1 includes new features, improves usability, and resolves several previous issues. NetIQ SecureLogin 8.0 SP1 Readme May 2014 NetIQ SecureLogin 8.0.1 includes new features, improves usability, and resolves several previous issues. Many of these improvements were made in direct response

More information

Centrify Mobile Authentication Services for Samsung KNOX

Centrify Mobile Authentication Services for Samsung KNOX Centrify Mobile Authentication Services for Samsung KNOX SDK Quick Start Guide 3 October 2013 Centrify Corporation Legal notice This document and the software described in this document are furnished under

More information

Installation Guide NetIQ AppManager

Installation Guide NetIQ AppManager Installation Guide NetIQ AppManager April 2016 www.netiq.com/documentation Legal Notice NetIQ AppManager is covered by United States Patent No(s): 05829001, 05986653, 05999178, 06078324, 06397359, 06408335.

More information

Syslog Provider Parse Map Structure and Usage

Syslog Provider Parse Map Structure and Usage Contents Syslog Provider Parse Map Structure and Usage Technical Reference December 2009 Overview... 1 Basic XML Elements... 1 Rule Elements... 4 Syslog Event Formatting... 9 Optional Event Formatting...

More information

Addressing Regulatory Compliance in the Healthcare Industry January 2006

Addressing Regulatory Compliance in the Healthcare Industry January 2006 Addressing Regulatory Compliance in the Healthcare Industry January 2006 Contents Healthcare Industry Overview 1 Healthcare Industry IT Regulations... 3 NetIQ Products Offer a Compliance Solution... 5

More information

Reporting Guide. NetIQ Reporting Center. April 2012

Reporting Guide. NetIQ Reporting Center. April 2012 Reporting Guide NetIQ Reporting Center April 2012 Legal Notice THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND ARE SUBJECT TO THE TERMS OF A LICENSE AGREEMENT OR A NON-DISCLOSURE

More information

NetIQ AppManager ResponseTime for Microsoft SQL Server

NetIQ AppManager ResponseTime for Microsoft SQL Server NetIQ AppManager ResponseTime for Microsoft SQL Server Management Guide April 2009 Legal Notice NetIQ AppManager is covered by United States Patent No(s): 05829001, 05986653, 05999178, 06078324, 06397359,

More information

Monitoring Nortel IP Telephony with AppManager

Monitoring Nortel IP Telephony with AppManager Monitoring Nortel IP Telephony with AppManager Contents Why Monitor IPT Components?... 1 White Paper March 2005 About AppManager... 2 Nortel BCM Server Health... 3 Nortel CS Administration... 4 Nortel

More information

NetIQ Identity Manager Setup Guide

NetIQ Identity Manager Setup Guide NetIQ Identity Manager Setup Guide July 2015 www.netiq.com/documentation Legal Notice THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND ARE SUBJECT TO THE TERMS OF A LICENSE

More information

User Guide. NetIQ Domain Migration Administrator TM. May 2012

User Guide. NetIQ Domain Migration Administrator TM. May 2012 User Guide NetIQ Domain Migration Administrator TM May 2012 THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND ARE SUBJECT TO THE TERMS OF A LICENSE AGREEMENT OR A NON-DISCLOSURE

More information

Trial Guide. NetIQ Security Manager. October 2011

Trial Guide. NetIQ Security Manager. October 2011 Trial Guide NetIQ Security Manager October 2011 NetIQ Security Manager is protected by United States Patent No: 05829001. THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND

More information

Reporting Guide NetIQ Reporting Center

Reporting Guide NetIQ Reporting Center Reporting Guide NetIQ Reporting Center October 2015 www.netiq.com/documentation Legal Notice THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND ARE SUBJECT TO THE TERMS OF

More information

Toad for Oracle 8.6 SQL Tuning

Toad for Oracle 8.6 SQL Tuning Quick User Guide for Toad for Oracle 8.6 SQL Tuning SQL Tuning Version 6.1.1 SQL Tuning definitively solves SQL bottlenecks through a unique methodology that scans code, without executing programs, to

More information

1776 Yorktown, 7th Floor, Houston, TX 77056 877.484.8383 (toll free) 713.484.8383 (main) 713.660.7988 (fax) www.alertlogic.com

1776 Yorktown, 7th Floor, Houston, TX 77056 877.484.8383 (toll free) 713.484.8383 (main) 713.660.7988 (fax) www.alertlogic.com On initial inspection, log management appears a straight forward and fairly basic feature of infrastructure management. It has long been understood as an operational best practice and security measure

More information

Setup Guide Access Manager 3.2 SP3

Setup Guide Access Manager 3.2 SP3 Setup Guide Access Manager 3.2 SP3 August 2014 www.netiq.com/documentation Legal Notice THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND ARE SUBJECT TO THE TERMS OF A LICENSE

More information

User Guide. Directory and Resource Administrator Exchange Administrator. Directory and Resource Administrator Exchange Administrator User Guide

User Guide. Directory and Resource Administrator Exchange Administrator. Directory and Resource Administrator Exchange Administrator User Guide Directory and Resource Administrator Exchange Administrator User Guide User Guide Directory and Resource Administrator Exchange Administrator September 2010 Legal Notice NetIQ Directory Resource Administrator

More information

Common Driver Administration Guide. Identity Manager 4.0.2

Common Driver Administration Guide. Identity Manager 4.0.2 Common Driver Administration Guide Identity Manager 4.0.2 July 2014 Legal Notice THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND ARE SUBJECT TO THE TERMS OF A LICENSE

More information

Programming Guide. NetIQ Security Manager. October 2011

Programming Guide. NetIQ Security Manager. October 2011 Programming Guide NetIQ Security Manager October 2011 NetIQ Security Manager is protected by United States Patent No: 05829001. THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER

More information

NetIQ Security Manager Log Archive Server Best Practices January 9, 2012

NetIQ Security Manager Log Archive Server Best Practices January 9, 2012 NetIQ Security Manager Log Archive Server Best Practices January 9, 2012 This technical reference provides best practice information about the NetIQ Security Manager log archive server component. It provides

More information

Real-Time Security Intelligence for Greater Visibility and Information-Asset Protection

Real-Time Security Intelligence for Greater Visibility and Information-Asset Protection Real-Time Security Intelligence for Greater Visibility and Information-Asset Protection Take the Effort Out of Log Management and Gain the Actionable Information You Need to Improve Your Organisation s

More information

The Challenges of Administering Active Directory

The Challenges of Administering Active Directory The Challenges of Administering Active Directory As Active Directory s role in the enterprise has drastically increased, so has the need to secure the data it stores and to which it enables access. The

More information

User Guide. NetIQ Exchange Migrator. December 2011

User Guide. NetIQ Exchange Migrator. December 2011 User Guide NetIQ Exchange Migrator December 2011 Legal Notice NetIQ Exchange Migrator is protected by United States Patent No(s): 6708224 and 7083251. THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT

More information

Control Center User Guide

Control Center User Guide Control Center User Guide NetIQ AppManager October 2008 Legal Notice NetIQ AppManager is covered by United States Patent No(s): 05829001, 05986653, 05999178, 06078324, 06397359, 06408335. THIS DOCUMENT

More information

Best Practices for Managing & Monitoring Active Directory and Group Policy

Best Practices for Managing & Monitoring Active Directory and Group Policy Best Practices for Managing & Monitoring Active Directory and Group Policy Contents March 15, 2007 Introduction...1 Challenges of Administering Windows Environments...2 Successfully Managing Change across

More information

Optimizing Business Continuity Management with NetIQ PlateSpin Protect and AppManager. Best Practices and Reference Architecture

Optimizing Business Continuity Management with NetIQ PlateSpin Protect and AppManager. Best Practices and Reference Architecture Optimizing Business Continuity Management with NetIQ PlateSpin Protect and AppManager Best Practices and Reference Architecture WHITE PAPER Table of Contents Introduction.... 1 Why monitor PlateSpin Protect

More information

NetIQ AppManager for Nortel Contact Center Manager Server. Management Guide

NetIQ AppManager for Nortel Contact Center Manager Server. Management Guide NetIQ AppManager for Nortel Contact Center Manager Server Management Guide July 2011 Legal Notice THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND ARE SUBJECT TO THE TERMS

More information

NetIQ Identity Manager

NetIQ Identity Manager NetIQ Identity Manager Management Guide October 2014 Legal Notice THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND ARE SUBJECT TO THE TERMS OF A LICENSE AGREEMENT OR A

More information

Getting Started Guide

Getting Started Guide Getting Started Guide Operations Center 5.0 March 3, 2014 Legal Notices THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND ARE SUBJECT TO THE TERMS OF A LICENSE AGREEMENT

More information

NetIQ AppManager for Cisco Unity Express. Management Guide

NetIQ AppManager for Cisco Unity Express. Management Guide NetIQ AppManager for Cisco Unity Express Management Guide February 2012 Legal Notice THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND ARE SUBJECT TO THE TERMS OF A LICENSE

More information

User Guide. NetIQ Agent Manager. May 2013

User Guide. NetIQ Agent Manager. May 2013 User Guide NetIQ Agent Manager May 2013 NetIQ Agent Manager is protected by United States Patent No: 05829001. THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND ARE SUBJECT

More information

NetIQ Identity Manager Identity Reporting Module Guide

NetIQ Identity Manager Identity Reporting Module Guide NetIQ Identity Manager Identity Reporting Module Guide December 2014 www.netiq.com/documentation Legal Notice THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND ARE SUBJECT

More information

User Guide. NetIQ VigilEnt Policy Center. August 2011

User Guide. NetIQ VigilEnt Policy Center. August 2011 User Guide NetIQ VigilEnt Policy Center August 2011 Legal Notice THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND ARE SUBJECT TO THE TERMS OF A LICENSE AGREEMENT OR A NON-DISCLOSURE

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

Setup Guide Access Manager Appliance 3.2 SP3

Setup Guide Access Manager Appliance 3.2 SP3 Setup Guide Access Manager Appliance 3.2 SP3 August 2014 www.netiq.com/documentation Legal Notice THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND ARE SUBJECT TO THE TERMS

More information

User Guide. NetIQ Security Manager. October 2011

User Guide. NetIQ Security Manager. October 2011 User Guide NetIQ Security Manager October 2011 NetIQ Security Manager is protected by United States Patent No: 05829001. THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND

More information

An Oracle White Paper October 2013. Oracle Data Integrator 12c New Features Overview

An Oracle White Paper October 2013. Oracle Data Integrator 12c New Features Overview An Oracle White Paper October 2013 Oracle Data Integrator 12c Disclaimer This document is for informational purposes. It is not a commitment to deliver any material, code, or functionality, and should

More information

Polar Help Desk 4.1. User s Guide

Polar Help Desk 4.1. User s Guide Polar Help Desk 4.1 User s Guide Copyright (legal information) Copyright Polar 1995-2005. All rights reserved. The information contained in this document is proprietary to Polar and may not be used or

More information

MailMarshal Exchange in a Windows Server Active/Passive Cluster

MailMarshal Exchange in a Windows Server Active/Passive Cluster MailMarshal Exchange in a Windows Server Active/Passive Cluster November, 2006 Contents Introduction 2 Preparation 3 Generic Resource Creation 4 Cluster MailMarshal Install 4 Antivirus Software 8 Known

More information

Go beyond basic up/down monitoring

Go beyond basic up/down monitoring Go beyond basic up/down monitoring Extending the value of SCOM with Foglight for SQL Server Introduction Microsoft Systems Center Operations Manager (SCOM) allows IT professionals to manage and monitor

More information

Metrics-Based IT Management White Paper November 2006

Metrics-Based IT Management White Paper November 2006 Contents Understanding Metrics-Based IT Management...1 Metrics-Based IT Management Defined...1 Objectives of Metrics-Based IT Management...1 Establishing Metrics-Based IT Management...2 Measure the Right

More information

Writers: Joanne Hodgins, Omri Bahat, Morgan Oslake, and Matt Hollingsworth

Writers: Joanne Hodgins, Omri Bahat, Morgan Oslake, and Matt Hollingsworth SQL Server Technical Article Writers: Joanne Hodgins, Omri Bahat, Morgan Oslake, and Matt Hollingsworth Technical Reviewer: Dan Jones Published: August 2009 Applies to: SQL Server 2008 R2, August CTP Summary:

More information

PlateSpin Forge 4. Rebuilding Forge 4 Appliance 2. June 14, 2014

PlateSpin Forge 4. Rebuilding Forge 4 Appliance 2. June 14, 2014 PlateSpin Forge 4 Rebuilding Forge 4 Appliance 2 June 14, 2014 Legal Notice THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND ARE SUBJECT TO THE TERMS OF A LICENSE AGREEMENT

More information

PlateSpin Protect 11.0.1 Installation and Upgrade Guide

PlateSpin Protect 11.0.1 Installation and Upgrade Guide PlateSpin Protect 11.0.1 Installation and Upgrade Guide February 2015 www.netiq.com/documentation Legal Notice THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND ARE SUBJECT

More information

The Challenges of Administering Active Directory

The Challenges of Administering Active Directory The Challenges of Administering Active Directory As Active Directory s role in the enterprise has drastically increased, so has the need to secure the data it stores and to which it enables access. The

More information

Administration Guide. SecureLogin 8.0. October, 2013

Administration Guide. SecureLogin 8.0. October, 2013 Administration Guide SecureLogin 8.0 October, 2013 Legal Notice NetIQ Product Name is protected by United States Patent No(s): nnnnnnnn, nnnnnnnn, nnnnnnnn. THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN

More information

NetIQ AppManager for WebLogic Server UNIX. Management Guide

NetIQ AppManager for WebLogic Server UNIX. Management Guide NetIQ AppManager for UNIX Management Guide May 2013 Legal Notice THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND ARE SUBJECT TO THE TERMS OF A LICENSE AGREEMENT OR A NON

More information

MailMarshal SMTP 2006 Anti-Spam Technology

MailMarshal SMTP 2006 Anti-Spam Technology MailMarshal SMTP 2006 Anti-Spam Technology August, 2006 Contents Introduction 2 Multi-layered spam detection and management 2 SpamCensor: Marshal s unique heuristic filter 2 URLCensor: Live URL blacklist

More information

PlateSpin Migrate 11.1 Installation and Upgrade Guide

PlateSpin Migrate 11.1 Installation and Upgrade Guide PlateSpin Migrate 11.1 Installation and Upgrade Guide September 22, 2014 www.netiq.com/documentation Legal Notice THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND ARE SUBJECT

More information

NetIQ Access Manager. Developer Kit 3.2. May 2012

NetIQ Access Manager. Developer Kit 3.2. May 2012 NetIQ Access Manager Developer Kit 3.2 May 2012 Legal Notice THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND ARE SUBJECT TO THE TERMS OF A LICENSE AGREEMENT OR A NON DISCLOSURE

More information

Implementing Support and Monitoring For a Business- Critical Application Migrated to Windows Azure

Implementing Support and Monitoring For a Business- Critical Application Migrated to Windows Azure Implementing Support and Monitoring For a Business- Critical Application Migrated to Windows Azure Published: August 2011 Microsoft IT had recently migrated BCWeb a complex, business-critical application

More information

How To Monitor An Exchange Server With Netiqmc On A Windows 7.X.X (Windows 7) On A Microsoft Powerbook 2.X862 (Windows) On An Ubuntu 7.5 (Windows 8) On Windows

How To Monitor An Exchange Server With Netiqmc On A Windows 7.X.X (Windows 7) On A Microsoft Powerbook 2.X862 (Windows) On An Ubuntu 7.5 (Windows 8) On Windows NetIQ AppManager for Microsoft Exchange Server 2007, 2010, and 2013 Management Guide September 2015 www.netiq.com/documentation Legal Notice THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE

More information