IBM Lotus Software

Total Page:16

File Type:pdf, Size:1020Kb

IBM Lotus Software AD210 Application Development and Deployment for DB2-Enabled IBM Lotus Domino Server John Curtis Tom McGary IBM Software Group Agenda DEMO – “The OmniLink View” Basic IBM Domino/DB2 Enablement, with DB2 Access Views System Configuration Planning Application/Data Planning Creating DB2 Access Views and Query Views Query View Complexity and Design Filtering Function Library Overview Opening remote documents DEMO – “The Ultimate Inbox” DEMO The OmniLink View Content Disclaimers NOT a substitute for really learning DB2 SQL IBM DB2 SQL Workshop and DB2 SQL for Experienced Users http://www- 304.ibm.com/jct03001c/services/learning/ites.wss/us/en?pageType=course_descripti on&courseCode=CF120 http://www- 304.ibm.com/jct03001c/services/learning/ites.wss/us/en?pageType=course_description&c ourseCode=CF131 Publications: SQL Reference Volumes 1 and 2 (SC09-4844-00 and SC09-4845-00) Content Disclaimers (continued) NOT a substitute for really learning DB2 Administration/Tuning IBM DB2 Universal Database Administration Workshop for Windows/UNIX http://www- 304.ibm.com/jct03001c/services/learning/ites.wss/us/en?pageType=course_description&co urseCode=CF231 DB2 UDB Performance Tuning and Monitoring Workshop http://www- 304.ibm.com/jct03001c/services/learning/ites.wss?pageType=course_description&courseC ode=CF412&country=us&language=en Publications: Administration Guide: Implementation (SC09- 4820-00), Administration Guide: Performance (SC09-4821-00) and System Monitor Guide and Reference (SC09-4847-00) Online documentation: http://publib.boulder.ibm.com/infocenter/db2help/index.jsp Terminology/Acronyms DAVs or DB2 Access Views - Mechanism (DB2 View) to expose Domino data to the outside, relational world QVs or Query Views - Mechanism (Domino View) for rendering relational data using Domino views DAVPOP or DB2 Access View populator – Domino process to initialize DAVs with Domino data Federation – incorporating data from multiple sources into a central composite 2 types Domino database federation – JOINs/UNIONs across different NSFs (well, DB2NSFs) DB2 federation – pulling in data from foreign relational stores (other DB2 instances or Oracle, etc) Domino/DB2 and DB2 Access View Enablement Attend Session ID105 for more detail Setting up IBM Domino Server for DB2 Essentially, follow the directions For DB2 Access, remember to create the id file first Read documentation carefully, follow to the letter DB2 Access View Setup Use default DB2UserID for QVs if possible Keeps DB2 superuser credentials from normal QV use Application Planning Discovering Hybrid Applications - Questions What portions of corporate relational data are the most valuable to participate in Domino applications? Reduce redundancy (Re)organize presentation Enrich content, etc. Ease of implementation important (e.g. ETL is costly) What Domino databases easily “join” to present data never seen together before? What portions of Domino data are the most valuable to participate in relational applications (not covered this session) Which applications would benefit most from having Messaging/discussion/workflow data in relational form? Application Planning (continued) More Questions: What new applications are implied by the Domino/relational melding? Messaging reports, document access from outside Domino What transformation/design modification would best enable hybrid applications? Join keys, name field standardization, data uniformity HOW WELL DO YOU KNOW YOUR DATA? From Domino - Items, Forms, Views From Relational – databases, tables, columns, applications Configuration Planning Server Configuration Will DB2 run on the same (local) or different (remote) server? Advantages of DB2 on a dedicated server 64-bit memory support Disk configuration Separate tuning and administration Possible consolidation of multiple Domino servers onto a single DB2 server Will non-Domino relational data be part of the application? If yes, where will it reside and how will it be accessed? Remote access (that is, to another RDBMS) needs planning and configuration Materialized Query Tables (MQTs) – temporary local copies of relational data kept up to date automatically Configuration Planning Application Data planning How much processing will be done on the DB2/Domino Server? Full blown databases – allow for complete processing on the Domino/DB2 server Skeleton replicas (one way – in) Keep only the fields necessary to render Query View(s) Since remote documents can be opened, this is all you may need Savings are at least 95% in disk Enables consolidation of many database for highly federated QVs Interface is laborious (working on it) Configuration Planning (continued) How much processing will be done on the DB2/Domino Server (continued)? Query View – only databases Good for developing Query Views apart from production data Allow for independent (from data) access control Domain issues Repetitive work – exporting DAVs and QVs across the enterprise Creating the Design Objects DB2 Access Views What they are: Mechanism to expose Domino data to the outside, relational world Updatable DB2 Views (functionally equivalent in SQL to tables), with one row per document where rows contain Copies of selected Domino document fields, available in relational form Security information (e.g. $Readers) Domino system/navigational data (#noteid, #unid, #modified) Creating the Design Objects (continued) DB2 Access Views (continued) How they work User Defined Function (UDF) executes for every SQL statement Checks Domino privileges at database and document level Passes through SQL to DB2 Populated in DAVPOP – batch process making copies Maintained under normal NSF core updating API calls Overhead Disk footprint – even with indexes, 3% is the most measured Update costs – 8-12% extra time (wallclock) Creating the Design Objects (continued) DB2 Access Views (continued) Form-based vs. All forms – updating consideration Small cost to make form a DB2 column to add to WHERE clause Fewer DAVs = less updating/fewer objects If only one form is of interest, save space and map its documents only Including extra fields Always included #noteid, $Readers Unless you have a reason not to, include these GMT Conversion – makes date math very straightforward Creating the Design Objects (continued) DB2 Access Views (continued) Choosing columns – be thorough but judicious Know your data or you will learn about it as you go Plan for federation in advance (JOINs, UNIONs, etc.) Error avoidance/data mapping Truncation Lists and ranges vs. single occurrences Strong data typing – clean up multi-typed Domino fields Creating the Design Objects (continued) DB2 Access Views (continued) DAVPOP Debugging problems – need mechanism to get documents by NoteID Check lengths, types and occurrences Ongoing criteria enforcement – if you had problems populating, problematic data may get replicated in again Creating the Design Objects (continued) Query Views What they are Mechanism for rendering relational data using Domino views Temporary SQL query results No persistent footprint in Domino Solution for Domino view explosion Document-backed Aggregate, report data Combination How they work Map SQL query column values to Domino view columns Every time the QV is opened, it rebuilds, firing the SQL query The SQL query can be different each time Creating the Design Objects (continued) Query Views (continued) Choosing view columns – As usual in view design, but consider multiple sources and shapes of data E.g. a federated “subject” or “author” column Less is better (use SQL to your advantage) Categories and responses supported, multi-value permutation works via Lotusscript Explode Selection criteria (WHERE clause) Can be specified at runtime More restrictions are better than fewer Common restrictions (e.g. form = ‘Memo’) can be supplied via additional DB2 views ORDER BY Overridden by any Domino View column collation Useful in UNION (ALL) selects Creating the Design Objects (continued) Query Views (continued) Implicit columns (mentioned under DAVs, part of why you want them:) #noteid – for opening federated documents #oid – to support @ functions like @Created #unid – to support app calls using UniversalID Non-Domino data will not have these, but via JOINs these can be supplied e.g. – to open a Domino-resident description document from a view with relational-based manufacturing parts: SELECT a.cost, a.partno, a.partdesc, a.supplier, B.#noteid FROM corporate.parts a LEFT OUTER JOIN dom.description b ON a.partno = b.partno Creating the Design Objects (continued) Query Views (continued) SQL selection SQL columns are mapped to view columns based upon column value (type formula) = SQL column name The SQL “AS” clause projects any name to be mapped across any SQL table (e.g. SELECT rtrim(doctype) AS type FROM table) Column Construction can get ornate: SELECT lastname || ‘, ‘ || firstname || ‘ phone: ‘ || phone AS contact Query View Complexity and Design Simple Query Views Self contained, where document data in this database (i.e. using its DAV(s) only) can be: Filtered Reformatted Re-categorized Most common uses: Replace/augment existing views Replaced views create savings by eliminating update/updall processing New reports Query View Complexity and Design (continued) Complex Query Views Query references data in this database (using its DAV(s)) and at least one other source (either another DAV or relational table) Use JOIN or UNION Simplest – adding column(s) to the SELECT list: SELECT a.#noteid, a.from AS FROM,
Recommended publications
  • OS/2 Warp Catalogue
    The OS/2 Software Source: www.xeu.com/blueware/ The OS/2 Warp Catalogue The Hottest Java The Strongest Platform The OS/2 Warp Catalogue In This Catalogue Anti-virus .......................................... 4 Backup .............................................. 4 It’s Java Time CD-ROMs ........................................ 4 Communications ........................ 6 Just when you thought that OS/2 was on its way back, it is receiving a strong Database Management .......... 9 infusion from Java and the internet. Development Tools ................ 10 As Dr. Michael Cowpland, president and CEO of Corel Disk Compression .................. 14 Corporation put it: “This platform is indeed one of the Games & Entertainment ..... 19 OS/2 Warp: best operating system solutions in which to run The Hottest Corel Office for Java (http://officeforjava.corel.com/), Graphics & Multimedia ........ 20 a suite of applications that is setting the standard for The Operating System ......... 21 Java Around! Java-based office suites, and marks another milestone OS/2 Warp is developing in the evolution of Java as a whole.” Productivity ................................. 21 into a strong and speedy Programmer’s Editors .......... 23 foundation for Java. The OS/2 Warp 4.0 Java implementation was recently This perfect fit is nicely updated with a better Virtual Machine (VM) and a REXX Programming ................ 23 symbolized by “Carmen” speedy Just In Time (JIT) compiler. Also, even older OS/2 the two-sided coffee cup versions, including Warp 3.0, Warp Connect Utilities & Tools ........................ 24 by dutch ceramist Erik-Jan |and Warp Server are now fully able to suppport Java. Books ............................................. 28 Kwakkel on the cover page. But the great work does not end with that: you can Registration Service .............
    [Show full text]
  • Introduction
    Introduction Thank you. This is Patricia Murphy, Vice President of Investor Relations for IBM. I’m here with Mark Loughridge, IBM’s Senior Vice President and Chief Financial Officer. Thank you for joining our third quarter earnings presentation. The prepared remarks will be available in roughly an hour, and a replay of this webcast will be posted to our Investor Relations website by this time tomorrow. Our presentation includes certain non-GAAP financial measures, in an effort to provide additional information to investors. All non-GAAP measures have been reconciled to their related GAAP measures in accordance with SEC rules. You will find reconciliation charts at the end, and in the Form 8-K submitted to the SEC. Let me remind you that certain comments made in this presentation may be characterized as forward looking under the Private Securities Litigation Reform Act of 1995. Those statements involve a number of factors that could cause actual results to differ materially. Additional information concerning these factors is contained in the company’s filings with the SEC. Copies are available from the SEC, from the IBM web site, or from us in Investor Relations. Now, I’ll turn the call over to Mark Loughridge. Page 1 3Q 2009 Highlights Thank you for joining us today. We just finished another great quarter, driven by strong profit performance in software and services, and share gains in both hardware and software. This quarter our revenue was up sequentially, and our growth rate improved vs. second quarter. We expanded gross margin by almost 2 points and pre-tax margin by over 3 points year to year.
    [Show full text]
  • Lotus Roadmap: Enhancing Business Collaboration with Lotus Software
    Lotus Roadmap: Enhancing Business Collaboration with Lotus Software By Michael Sampson, Principal The Michael Sampson Company January 2010 Executive Summary IBM is a major player in the collaboration software market. It offers numerous collaboration software products through its Lotus Software division, has a long track record of delivering collaboration software to the market, and is one of the two titans—Microsoft being the other—in the enterprise market for collaboration software. This report looks at the go-forward strategic role of Lotus Notes and other Lotus software by end-user organizations. The report investigates (and debunks) five common myths about Lotus Notes: 1. Because Lotus Notes is 20 years old, it should be replaced with something more modern. The evidence suggests a different interpretation. 2. IBM is not committed to Lotus Notes. By looking at IBM’s historical commitment to Lotus Notes, a different conclusion is reached. 3. IBM lacks a roadmap for Lotus Notes. By considering the role of a technical roadmap from a vendor, IBM actually does have a roadmap for Lotus Notes. 4. SharePoint will “solve all your problems”. Governance and the business approach is much more critical than the mere technology used, so switching technology without revisiting the non-technology elements will actually only exacerbate any problems. 5. Notes sucks, and it’s all IBM’s fault. IBM bears some fault, but a much greater degree of fault is frequently outside of IBM’s direct control. The report outlines the difference between a technical roadmap from IBM for Lotus products, and a business roadmap created by the organization to leverage the technology that’s available to deliver enhanced business outcomes.
    [Show full text]
  • IBM Lotus Notes and Domino 6.5.1 Family of Products Maximizes Collaboration While Lowering Cost
    Programming Announcement February 3, 2004 IBM Lotus Notes and Domino 6.5.1 family of products maximizes collaboration while lowering cost Overview • Lotus Instant Messaging (Sametime ) At a Glance The first maintenance release of the • Lotus Web Conferencing IBM Lotus Notes and Domino 6.5 Helping companies maintain a (Sametime) family of products includes: competitive advantage, this latest • release: • Lotus Team Workplace Lotus Domino: IBM Lotus (QuickPlace ) Domino Messaging Server, IBM • Gives users a single access Lotus Domino Enterprise Server, • Lotus Domino Document Manager point to their most valuable IBM Lotus Domino Utility Server (Domino.Doc ) messaging, collaborative, and personal information • Lotus Domino Express: IBM Lotus • Lotus Workflow management (PIM) through the Domino Collaboration Express, • new Lotus Workplace for IBM Lotus Domino Utility Express Lotus Workplace Web Content Management Notes Welcome page • Lotus Notes • Integrates Lotus Instant This means you can upgrade your Messaging functionality to • Lotus Domino Web Access programs to Release 6.5.1 without provide presence awareness extensive testing to ensure that all • Lotus Domino Access for and enable users to initiate products work together. That Microsoft Outlook chats with colleagues — without translates to faster time to value, launching a separate • lower costs, and increased Lotus Domino WebMail application productivity. • Lotus Domino Designer • Maximizes responsiveness • Lotus Enterprise Integrator for Key Prerequisites through a follow-up function and Domino visual indicators to show users Refer to the Hardware requirements when they′ve forwarded or • Lotus Connectors and Software requirements sections. replied to e-mail messages With Release 6.5.1, Lotus continues • Helps reduce total cost of ′ to build upon Domino s established Planned availability dates ownership through minimal themes of industry-leading flexibility training requirements, end-user and choice.
    [Show full text]
  • Adminp Advanced Topics
    ® IBM Software Group AdminP Advanced Topics Susan Bulloch - IBM ISV Technical Enablement Engineer © 2003 IBM Corporation IBM Software Group | Lotus software Agenda … AdminP history AdminP processing and operations Tuning AdminP Monitoring AdminP Defining best practices Implementing tips and tricks What’s coming in Domino 8 Wrap-up 2 1 IBM Software Group | Lotus software What Was AdminP Designed to Do? AdminP is a server task (adminp) that automates many administrative tasks You initiate the tasks, and the Administration Process completes them for you It was introduced in R4 to manage name changes There were 19 requests when introduced in R4 And now? AdminP is a required server task and an integral part of the Domino system It’s taking on more work with each release 180+ requests in Domino 8 With each release, it’s becoming more efficient, too! 3 IBM Software Group | Lotus software What Does AdminP Do? AdminP automates things that can be done over time Moving files Deleting files Changing names Creating replicas on remote servers It automates things that need to be exact Server build numbers Server port names Client builds If the data needs to be exact, AdminP can often do it 4 2 IBM Software Group | Lotus software What Else Can AdminP Do? Help manage user mail access Allows the user to be set down to Editor Performs various functions that formerly required manager access Sets Out-of-Office status, mail & calendar delegation Manage registration and recertification using the CA process Allows Web-based user registration
    [Show full text]
  • Exchange 2010 Vs Domino 8.5 Whitepaper
    Get the facts Microsoft Exchange 2010 vs. IBM Lotus Domino 8.5 By Martijn de Jong 31 March 2011 Microsoft Exchange 2010 vs. IBM Lotus Domino 8.5 Contents 1. Introduction .................................................................................................... 4 1.1. About this document ...................................................................................... 5 1.2. About the author............................................................................................. 5 1.3. Disclaimer ....................................................................................................... 6 2. User Experience .............................................................................................. 7 2.1. Lotus Notes 8.5 ............................................................................................... 7 2.2. Microsoft Outlook 2010 .................................................................................. 8 2.3. iNotes ............................................................................................................. 8 2.4. Outlook Web App ............................................................................................ 9 2.5. Microsoft’s Comparison .................................................................................. 9 2.6. Conclusion ...................................................................................................... 9 3. Enterprise Services & TCO ............................................................................. 11 3.1.
    [Show full text]
  • IBM® Lotus® Sametime® Reference Architecture in a Vmware® Infrastructure 3 Environment Reference Architecture
    REFERENCE ARCHITECTURE IBM® Lotus® Sametime® Reference Architecture in a VMware® Infrastructure 3 Environment Reference Architecture IBM® Lotus® Sametime® Reference Architecture in a VMware® Infrastructure 3 Environment VMware Virtual Infrastructure 3 Real-time collaboration has become a vital component of on-demand business, and IBM Lotus Sametime has quickly become an important component in many IBM Lotus Notes® and IBM Lotus Domino® environments. Typical Lotus Sametime deployments that support several thousand users require multiple servers in the physical environment, which results in high capital and operating costs. Virtualization offers unprecedented opportunities in commodity server consolidation, workload management, and return on investment. VMware Infrastructure 3 does the following: Consolidates the server sprawl in Sametime physical environments into fewer servers. Provides a dynamically adapting, highly available solution to deploy IBM Lotus Sametime that is not possible in physical environments. Together, IBM and VMware deployed and proved that the complex configuration of IBM Lotus Sametime 7.5.1 can scale on VMware ESX Server 3.0.2, using one powerful machine. This white paper validates this solution and provides the reference architecture to deploy it in production. The test results clearly demonstrate that a Lotus Sametime deployment running in a VMware Infrastructure 3 environment can successfully support 100,000 Lotus Sametime chat users while maintaining the service level agreement (SLA) requirement for end-user response time. The following topics are discussed in this paper: “Introduction” on page 2 “Objectives and Methodology” on page 3 “Test Configuration” on page 4 “Test Results” on page 6 “More Observations” on page 10 “Conclusion” on page 10 “References” on page 10 Introduction IBM and VMware continue to collaborate on leveraging VMware Infrastructure 3 to offer a solid, robust virtualization platform to deploy IBM’s software products on.
    [Show full text]
  • Lotus® Learning Management System R1 Quick
    Lotus ® Learning Management System R1 Version 1.0.4 March 2004 Quick Install Guide G210-1793-00 Disclaimer THE INFORMATION CONTAINED IN THIS DOCUMENTATION IS PROVIDED FOR INFORMATIONAL PURPOSES ONLY. WHILE EFFORTS WERE MADE TO VERIFY THE COMPLETENESS AND ACCURACY OF THE INFORMATION CONTAINED IN THIS DOCUMENTATION, IT IS PROVIDED “AS IS” WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED. IN ADDITION, THIS INFORMATION IS BASED ON IBM’S CURRENT PRODUCT PLANS AND STRATEGY, WHICH ARE SUBJECT TO CHANGE BY IBM WITHOUT NOTICE. IBM SHALL NOT BE RESPONSIBLE FOR ANY DAMAGES ARISING OUT OF THE USE OF, OR OTHERWISE RELATED TO, THIS DOCUMENTATION OR ANY OTHER DOCUMENTATION. NOTHING CONTAINED IN THIS DOCUMENTATION IS INTENDED TO, NOR SHALL HAVE THE EFFECT OF, CREATING ANY WARRANTIES OR REPRESENTATIONS FROM IBM (OR ITS SUPPLIERS OR LICENSORS), OR ALTERING THE TERMS AND CONDITIONS OF THE APPLICABLE LICENSE AGREEMENT GOVERNING THE USE OF IBM SOFTWARE. Licensed Materials - Property of IBM ©Copyright IBM Corporation 1998 - 2004 All rights reserved. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GS ADP Schedule Contract with IBM Corp. Lotus Software IBM Software Group One Rogers Street Cambridge, MA 02142 List of Trademarks IBM, the IBM logo, AIX, AS/400, DB2, LearningSpace, LearningSpace Forum, IBM Directory Server, RS/6000, iSeries, xSeries, MQSeries, Cloudscape, Netfinity, OfficeVision, OS/2, OS/390, OS/400, S/390, Tivoli, WebSphere, 1- 2-3, cc:Mail, Domino, Domino Designer, Freelance Graphics, iNotes, Lotus, Lotus Discovery Server, Lotus Enterprise Integrator, Lotus Mobile Notes, Lotus Notes, Lotus Organizer, LotusScript, Notes, QuickPlace, Sametime, SmartSuite, and Word Pro are trademarks or registered trademarks of International Business Machines Corporation in the United States, other countries, or both.
    [Show full text]
  • Session List
    PLEASE NOTE: This document is current as of 21 July 2008. The content is subject to change. LOTUS COLLABORATION AND PORTAL TECHNICAL UNIVERSITY 2008 SESSION LIST 16 – 19 SEPTEMBER SYDNEY, AUSTRALIA Don’t wait another minute – start planning your learning agenda at Lotus Collaboration and Portal Technical University. Use this portable, printable list of sessions to help identify the tracks and sessions that interest you. Messaging and Collaboration Infrastructure pg 2 Messaging and Collaboration Application Development pg 3 Portal and Solutions Infrastructure pg 4 Portal and Solutions Application Development pg 5 UCC, Collaborative Document Services and Social Software Infrastructure pg 6 UCC, Collaborative Document Services and Social Software Application Development pg 7 Visit www.ibm.com/training/au/lcptu and reserve your place today! SESSION LIST Track: Messaging and Collaboration Infrastructure IBM Lotus Notes Domino the Road Ahead Using the IBM Lotus Notes Domino 8.5 Vault Best Practices for Deploying IBM Lotus Notes Domino 8/8.5 IBM Lotus Notes Domino 8/8.5 Directories IBM Lotus Notes Domino 8/8.5 Directory Integration Single Sign On: What’s new and what’s on the Horizon IBM Lotus Notes Domino Administration New and Best Practices Group Policies and Best Practices for Policy-Based Management Implementing IBM Lotus Domino 8/8.5 Administration Features IBM Lotus Notes Domino Serviceability What’s new in IBM Lotus Domino 8/8.5 Security What’s new in IBM Lotus Domino Web Access/iNotes 8.02/8.5 IBM Lotus Notes Domino 8.5
    [Show full text]
  • Slovenian Ministry of Justice and Public Administration Enables Mobile Users
    IBM Software Government Case Study Slovenian Ministry of Justice and Public Administration enables mobile users ODDO solution provides safe access to IBM Lotus Domino mail server and information via mobile devices The Slovenian Ministry of Justice and Public Administration (MJPA) Overview manages regulatory responsibilities and provision of government services to the citizenry of Slovenia. It aims to present a friendly face to the public Mobile information access needed while executing its duties so effectively that the country ranks first in Complex processes and employee mobility required access to state services, email and the European Union on advanced organization, user satisfaction, and information from remote locations. efficient use of resources. MJPA team delivers With IBM® Lotus® software, MJPA gave Mobile employees needed information access employees secure access to state services, MJPA had room for improvement of its business processes, which were email, and information from mobile devices. increasingly complex and reliant on mobile employees. This required Safe from any location information access in different environments, calling for a solution Encrypted access, identity verification, and enabling employees to check email and view information with their lockout upon misuse of user credentials smartphones and other mobile devices. But mobile devices can pose ensure security. security challenges. IBM Lotus capabilities help enable secure access Solution Components With its business partners, the local information infrastructure section Software of MJPA set up secure remote access to state-authorized services, email • IBM® Lotus® iNotes® and information through thin clients. MJPA first introduced the solution, • IBM Lotus Notes® Traveler named ODDO, to internal users. Services • IBM Business Partner SRC.Si.d.d.
    [Show full text]
  • IBM Presentations
    September 2012 IBM Software Business Partner Guide © 2012 IBM Corporation This document is for IBM and IBM Business Partner use only. It is not intended for client distribution or use with clients. IBM Software Guide – Table of Contents How to Make Money Selling IBM Software IBM Strategy and the Software Opportunity Getting Started Software Value Propositions Business Analytics Collaboration Solutions (Lotus) Industry Solutions Information Management Mobile Foundation PureSystems Rational Security Tivoli WebSphere Click here for Table of Contents 2 © 2012 IBM Corporation This document is for IBM and IBM Business Partner use only. It is not intended for client distribution or use with clients. Join the IBM Software Team TODAY and Increase Your Profit Potential . IBM Software Business Partners have higher overall satisfaction . Fee-free: no program enrollment fees . Incentives for new licenses and renewals 36% more gross profit per deal . 15:1 increased profitability . 9:1 increased revenue due due to IBM Software Value Plus to IBM Software Value Plus Authorization Authorization 36% . Up to $50K “You Pass, We . Pay” course and test Competitors IBM Revenue from <$100K reimbursement for Premier Gross Profit leads passed averages $1M Business Partners from Middleware Deals . Rich IBM Software incentives reward Business Partners for value-add, influence and referral Click here for Table of Contents Source: 2009 IBM Software Business Partner Profitability Study, 2010 IBM Business 3 Partner Diagnostics Survey, 2011 IBM SVP Program Assessment,
    [Show full text]
  • Partnerworld WITHOUT BOUNDARIES 2005 Advance Program Guide
    PartnerWorld WITHOUT BOUNDARIES 2005 Advance Program Guide February 27th - March 2nd Mandalay Bay Hotel and Convention Center visit ibm.com/partnerworld/2005 PartnerWorld WITHOUT BOUNDARIES 2005 Welcome to PartnerWorld 2005 Dear IBM Business Partner, Has there ever been a better time to be an IBM Business Partner? The answer depends upon whether you are looking at the way business has been done before or looking to a future full of endless possibilities and emerging opportunities. PartnerWorld 2005 is about seeing the On Demand Business vision in a way that transcends business today. Together we’re helping our clients move to a place where they are integrated...optimized... connected. We’re delivering the solutions for On Demand Business that help them become more competitive and able to respond more quickly to their clients and changing market conditions. At PartnerWorld 2005 you’ll get the immediate information you need to help you realize the possibilities. From Exchange Sessions and Executive Forums to the General Sessions, it’s all there. In addition to the many valuable sessions, I hope you will spend time at the conference meeting one-on-one with IBM executives and connecting with other Business Partners. Over three full days there will be plenty of opportunity to take advantage of the many peer-to-peer networking activities and learn about exciting new technologies in the Solution Center. Sure to be the hub of activity this year, the Solution Center is a great place to network. Has there ever been a better time to be an IBM Business Partner? You’ll find the answer at PartnerWorld 2005 in Las Vegas where we’ll explore opportunities Without Boundaries.
    [Show full text]