Scripting OBIEE Is UDML and XML all you need?

Size: px
Start display at page:

Download "Scripting OBIEE Is UDML and XML all you need?"

Transcription

1 Scripting OBIEE Is UDML and XML all you need? Andreas Nobbmann Consultant Business Intelligence Brighton, May 14th, 2009 Basel Baden Bern Lausanne Zürich Düsseldorf Frankfurt/M. Freiburg i. Br. Hamburg München Stuttgart Wien

2 Why scripting OBIEE? Scripting OBIEE Is UDML and XML all you need? 2

3 Agenda What is UDML? How to use UDML? Good examples for UDML usage XML Data is always part of the game. Good examples for XML usage The last word Scripting OBIEE Is UDML and XML all you need? 3

4 Agenda What is UDML? How to use UDML? Good examples for UDML usage XML Data is always part of the game. Good examples for XML usage The last word Scripting OBIEE Is UDML and XML all you need? 4

5 What is UDML? UDML = Universal Database Markup Language Commonly known as: Scripting and definition language to describe databases or perform certain actions against databases In OBIEE: E.g. DDL creation etc. Undocumented feature in BI Server repository to manage mouseless administrative scripting Oracle recommends for example to merge Oracle BI repositories by using UDML Scripting OBIEE Is UDML and XML all you need? 5

6 What to use it for In general for scripting or describing everything stored in your Oracle BI repository file Connection pools Users / groups, LDAP server definitions, Security settings, privileges Initialization blocks, variables physical, aliases, logical tables, views... Primary / secondary keys, Foreign key, complex joins Dimensions / hierarchies External name settings (DISPLAY NAME CN_.. / CD_..)... Scripting OBIEE Is UDML and XML all you need? 6

7 Agenda What is UDML? How to use UDML? Good examples for UDML usage XML Data is always part of the game. Good examples for XML usage The last word Scripting OBIEE Is UDML and XML all you need? 7

8 How to use UDML? Ad Hoc Simply do copy (CTRL+C) on the object you want to script Paste (CTRL+V) it to your favoured editor, edit script and copy back to repository Scripting OBIEE Is UDML and XML all you need? 8

9 How to use UDML? Ad Hoc Attention: Copy is context sensitive, means place your cursor on the father of the object you want to insert the UDML If new Business Model (BM) do not click on any object and paste into the BM window If new table source Go to BM and paste it into And so on Remark: users and groups cannot be copied this way, they can only be merged into repositories Scripting OBIEE Is UDML and XML all you need? 9

10 How to use UDML? UDML generation Use nqudmlgen.exe generates UDML from your repository - N - Q - S does not generate upgrade IDs (needed for versioning) without security objects only security objects (overwrites Q parameter) -N use if you want to create a repository from the scratch, OBIA creates new object ID s c:\oraclebi\server\bin\nqudmlgen.exe U Administrator P Administrator R c:\oraclebi\server\repository\paint.rpd O paint_udml Scripting OBIEE Is UDML and XML all you need? 10

11 How to use UDML? merging repositories Use nqudmlexec.exe merges UDML into repository and optionally backs it up - I - B - O -8 input script name optional base repository name output repository name is for UTF-8 c:\oraclebi\server\bin\nqudmlexec.exe U Administrator P Administrator I c:\oraclebi\server\repository\changerepo_2_proddb_udml.txt -B c:\oraclebi\server\repository\sales.rpd O c:\oraclebi\server\repository\sales_new.rpd Remark: always make a backup before working with nqudmlexec. Scripting OBIEE Is UDML and XML all you need? 11

12 How to use UDML? update via data source Use nqudmlcli.exe adding UDML to OBIEE repository via Data Source -D -w -P Data Source name as in odbcad32.exe (ODBC Data Source Administrator) optional passphrase for SSL connections if you leave empty it uses the profile of the client you are connecting from c:\oraclebi\server\bin\nqudmlcli.exe U Administrator P Administrator -D AnalyticsWeb I c:\oraclebi\server\repository\changerepo_2_proddb_udml.txt Remark: sometimes this tool is not running because of lacking privileges. Copy it with all DLLs named NQSUDMLxx.dll into another directory and restart. Scripting OBIEE Is UDML and XML all you need? 12

13 Agenda What is UDML? How to use UDML Good examples for UDML usage XML Data is always part of the game. Good examples for XML usage The last word Scripting OBIEE Is UDML and XML all you need? 13

14 Good examples for UDML usage Parsing your repository Development street Automating import of user groups Update row counts Add icons to your repository To be continued...

15 Good UDML examples Parsing your repository Download UDML parser jar-ball from Copy it to a directory you want Use nqudmlgen.exe with options N Q -8 for the repository Fire java jar udmlparser0_4.jar udml=yourudmlfile.txt rpdxml=yourudml_xml.xml against YourUDMLFile.txt. You get a well formed XML, which is of course editable and transformable via Style Sheets etc. Thanks to Daniel Galassi for the parser Scripting OBIEE Is UDML and XML all you need? 15

16 UDML examples Development street Assume we have three environments, where DWHDEV, DWHTST and DWHPRD, are the data sources names defined within TNSNAMES.ora Export the UDML from your DEV repository with nqudmlgen.exe c:\oraclebi\server\bin\nqudmlgen.exe U Administrator P Administrator R c:\oraclebi\server\repository\sales.rpd O sales_dev_udml search for the connection pool (DECLARE CONNECTION POOL) Copy the whole block of the connection pool into two text files Scripting OBIEE Is UDML and XML all you need? 16

17 UDML examples Development street cont. In the first file replace the text within the {} with DWHTST In the second file replace it with DWHPRD Adapt your user settings as required Save them as for example DBConnectInfos_UDML_DWHTST and DBConnectInfos_UDML_DWHPRD Generate the repository sales_tst.rpd by using nqudmlexec c:\oraclebi\server\bin\nqudmlexec.exe U Administrator P Administrator I c:\oraclebi\server\repository\dbconnectinfos_udml_ DWHTST -B c:\oraclebi\server\repository\sales.rpd O c:\oraclebi\server\repository\sales_tst.rpd Thanks to Venkat, John and Mark for their blogs around that! Scripting OBIEE Is UDML and XML all you need? 17

18 UDML examples Development street cont. Another way is to copy this into the files Scripting OBIEE Is UDML and XML all you need? 18

19 UDML examples Automating user group import Get your user groups from your table with a simple SQL Select DECLARE SECURITY ROLE usergroup AS usergroup UPGRADE ID description{data Security Group usergroup } PRIVILEGES (READ); from DWH_APP.usergroups Save the result of your SQL in a text file and update your repository with nqudmlexec c:\oraclebi\server\bin\nqudmlexec.exe U Administrator P Administrator I c:\oraclebi\server\repository\usergroups_udml -B c:\oraclebi\server\repository\sales.rpd O c:\oraclebi\server\repository\sales_usergroups.rpd Thanks to Venkat for his blog around that! Scripting OBIEE Is UDML and XML all you need? 19

20 UDML examples update row counts 2 general steps to do so normally Right click on table and do update row count Or use tools / update all row counts WAITING When using hints in Oracle or an event table for Cache you can get the updated row count from there and copy the results into a UDML file DECLARE TABLE "U".."SYSTEM"."S_ETL_DAY" AS "S_ETL_DAY" UPGRADE ID NO INTERSECTION ROW COUNT LAST UPDATED ' :22:43 PRIVILEGES ( READ); Scripting OBIEE Is UDML and XML all you need?

21 UDML examples making the repository intuitive Assign the dollar sign to all fact tables DECLARE TABLE "Paint"..."Fact" AS "Fact" UPGRADE ID 554 ICON INDEX 102 HAVING Assign the stop sign to the database connections when you work on them for a longer period of time DECLARE DATABASE "Forecast" AS "Forecast" UPGRADE ID 162 ICON INDEX 92 TYPE XMLDirect Other examples: Question mark (Index 90), globe (Index 81), work cone (index 81) etc. Scripting OBIEE Is UDML and XML all you need?

22 Agenda What is UDML? How to use UDML Good examples for UDML usage XML Data is always part of the game. Good examples for XML usage The last word Scripting OBIEE Is UDML and XML all you need? 22

23 XML Is used for everything defined in the presentation catalog Requests Prompts, filters Dashboards, dashboard pages User objects, group objects Privileges Descriptions etc. Scripting OBIEE Is UDML and XML all you need? 23

24 XML 3 ways to insert XML into catalog Advanced tab in request Paste XML and Click Set XML In catalog manager Edit and paste Or directly in the file system under <OracleBIData>\web\catalog\<YourCatalog>\path_to_your_report\YourReport Open with editor Paste XML and save Scripting OBIEE Is UDML and XML all you need? 24

25 Agenda What is UDML? How to use UDML Good examples for UDML usage XML Data is always part of the game. Good examples for XML usage The last word Scripting OBIEE Is UDML and XML all you need? 25

26 Good examples for XML usage Automatically create pivot-table label heading style Format all columns with Percent in name Format all columns depending on their data type Editing XML directly in your editor To be continued... Scripting OBIEE Is UDML and XML all you need? 26

27 XML examples create pivot-table Scripting OBIEE Is UDML and XML all you need? 27

28 XML examples create pivot-table Here the XML source: Scripting OBIEE Is UDML and XML all you need? 28

29 XML examples create pivot-table column formulas Now open a good XML editor (for example XMLSpy) and create a XSLT stylesheet Add namespaces, start at / elements, then match all saw:report elements and copy them to target Copy all saw:report = all attributes With this part of the stylesheet you copy all the column formulas. <saw:column formula=""d2 Market"."M01 Market"" columnid="c0"/>... Scripting OBIEE Is UDML and XML all you need? 29

30 XML examples create pivot-table parameters The next part is related to parameters needed for formatting purpose You see the parameters aggrule halign fontstyle aggregation rule within Pivot Allignment Font Style 3 = # of views in compoundview parameters Scripting OBIEE Is UDML and XML all you need? 30

31 XML examples create pivot-table compoundview Next is the standard compoundview Here also the pivottableview1 is added Scripting OBIEE Is UDML and XML all you need? 31

32 XML examples create pivot-table makepivot next part is creating the Pivot table in XML dynamically Parameters are used with { } Parameter {aggrule} Scripting OBIEE Is UDML and XML all you need? 32

33 XML examples format all Percent columns Let s take a look on the pattern functionalities of XML We define the rule for the percent pattern on template saw:column <xsl:if test="contains(@formula, 'Percentage')"> <xsl:attribute name="percent" select="'true'"/> </xsl:if> pattern Pretty easy, isn t it? Scripting OBIEE Is UDML and XML all you need? 33

34 XML examples format on data type Let s derive the data type from the UDML-XML we parsed from the original sales sample Goal: define all columns with data type double like ,00 Scripting OBIEE Is UDML and XML all you need? 34

35 XML examples format on data type Get presentation column depending on your input column on Xpath level PresentationColumnMappingID Get the logical column from your UDML data by searching the presentation column on Xpath level LogicalColumnCalculation Scripting OBIEE Is UDML and XML all you need? 35

36 XML examples format on data type cont. Get the physical column by searching for the logical column on Xpath level PhysicalColumnID and derive the data type PhysicalColumnDatatype from physical column Scripting OBIEE Is UDML and XML all you need? 36

37 XML examples format on data type The test result looks like that of course it can be further extended by formatting per data type Scripting OBIEE Is UDML and XML all you need? 37

38 XML examples editing directly in your editor If you have a good editor (like UltraEdit etc.) installed on your PC then it probably has the column mode, you can put your cursor to a column and edit multiple columns at the same time Scripting OBIEE Is UDML and XML all you need? 38

39 Agenda What is UDML? How to use UDML Good examples for UDML usage XML Data is always part of the game. Good examples for XML usage The last word Scripting OBIEE Is UDML and XML all you need? 39

40 The last word UDML and XML are really very useful for scripting Good news: everything can be automated by scripts Cache Seeding, Backup, Synchronizing styles & skins with OC4J, users & user groups, repository, presentation catalog... UDML&XML provide a good approach for creating repositories and reports automatically from the metadata I am working on it Good news: new tool Content Accelerator Framework (CAF) published within : Venkat blogged already about it content-accelerator-framework-caf-synchronizer-a-reviewpreview-xudml/ My resumee: Scripting with OBIEE is fun! Scripting OBIEE Is UDML and XML all you need? 40

41 Thank you very much!? Basel Baden Bern Lausanne Zürich Düsseldorf Frankfurt/M. Freiburg i. Br. Hamburg München Stuttgart Wien

42 If you have any questions or want the scripts Please feel free to drop me a note or give me a call Andreas.Nobbmann@trivadis.com Trivadis AG Basel Consultant Business Intelligence Scripting OBIEE Is UDML and XML all you need? 42

43 Appendix Error Messages UDML parser Data is always part of the game. Scripting OBIEE Is UDML and XML all you need? 43

44 UDML Parser error messages UDML Parser Messages This category contains message numbers 28xxx Near Near String must be in a single line. Cause. The named string must be on a single line. Response. Remove all the new lines within this string Near Near (@2%s): End of file has been reached. Cause. The singly or doubly quoted string does not have a matching quote. Response. Add single or double quote at the end Near near (@2%s): Syntax Cause. A keyword was misspelled or an unexpected identifier was encountered. Response. Verify the syntax and correct any errors before retrying the action Near (@2%s): Duplicate definition. Cause. The same object was defined more than once. Response. Change the name of one of the objects. Scripting OBIEE Is UDML and XML all you need? 44

45 UDML Parser error messages cont Near Multiple matches found in the current repository. Cause. More than one match was found in the repository. The repository may be corrupted. Response. Repair the repository. Restore it from a back-up, or use the Check Consistency command in the Administration Tool to identify compilation errors. Correct any problems before retrying your actions Near (@2%s): Not defined. Cause. The named symbol is not defined either in the script or the repository. Response. Define the named symbol in the script or create an object in the repository. If necessary, contact Siebel Systems technical support for assistance Near (@2%s): This data type is not supported. Cause. The named data type is not supported. Response. Correct the data type and retry the action. If necessary, contact Siebel Systems technical support for assistance Near (@2%s): This database type is not supported. Cause. The named database type is not supported. Response. Correct the database type and retry the action. If necessary, contact Siebel Systems technical support for assistance. Scripting OBIEE Is UDML and XML all you need? 45

46 UDML Parser error messages cont Near This connection type is not supported. Cause. The named connection type is not supported. Response. Correct the connect type and retry the action. If necessary, contact Siebel Systems technical support for assistance Near It cannot be a parent or container of itself. Cause. A circular definition was found. Response. Correct the appropriate definitions to break the circle. If necessary, contact Siebel Systems technical support for assistance Near (@2%s): This role is not defined. Cause. The required role is missing. Each relationship needs to have two roles. This is an internal error. Response. Contact Siebel Systems technical support for assistance Near (@2%s): This object privilege cannot be used for none set. Cause. This object privilege is wrong. This is an internal error. Response. Contact Siebel Systems technical support for assistance Near (@2%s): This object privilege cannot be used for read set. Cause. This object privilege is wrong. This is an internal error. Response. Contact Siebel Systems technical support for assistance. Scripting OBIEE Is UDML and XML all you need? 46

47 UDML Parser error messages cont Near This connection type is not supported. Cause. The named connection type is not supported. Response. Correct the connect type and retry the action. If necessary, contact Siebel Systems technical support for assistance Near It cannot be a parent or container of itself. Cause. A circular definition was found. Response. Correct the appropriate definitions to break the circle. If necessary, contact Siebel Systems technical support for assistance Near (@2%s): This role is not defined. Cause. The required role is missing. Each relationship needs to have two roles. This is an internal error. Response. Contact Siebel Systems technical support for assistance Near (@2%s): This object privilege cannot be used for none set. Cause. This object privilege is wrong. This is an internal error. Response. Contact Siebel Systems technical support for assistance Near (@2%s): This object privilege cannot be used for read set. Cause. This object privilege is wrong. This is an internal error. Response. Contact Siebel Systems technical support for assistance. Scripting OBIEE Is UDML and XML all you need? 47

48 UDML Parser error messages cont Near This object privilege cannot be used for read_write set. Cause. This object privilege is wrong. This is an internal error. Response. Contact Siebel Systems technical support for assistance Near This object privilege cannot be used for erase set. Cause. This object privilege is wrong. Response. Contact Siebel Systems technical support for assistance Near This object privilege cannot be used for grant set. Cause. This object privilege is wrong. Response. Contact Siebel Systems technical support for assistance Near This object privilege cannot be used for all set. Cause. This object privilege is wrong. Response. Contact Siebel Systems technical support for assistance Near In the metadata expression the following error occurred: Cause. The named expression has one or more errors. This can be caused by spelling errors or objects referenced in the expression that are missing. Response. Ignore and then reconstruct the problem expressions. Scripting OBIEE Is UDML and XML all you need? 48

49 UDML Parser error messages cont Near is already in the repository and it's ID is different from the designated ID. Cause. An object of the same name exists in the repository but with a different ID. The repository may be corrupted. Response. Repair the repository. Restore it from a back-up, or use the Check Consistency command in the Administration Tool to identify compilation errors. Correct any problems before retrying your actions Near (@2%s): is an invalid feature. Cause. The system could not find the named feature. Response. Verify the spelling of the named feature Near (@2%s): is an invalid value for the feature (@3%s) Cause. The specified value is invalid for the named Boolean feature. Response. Valid values include words like YES, NO, ON or OFF. Make the appropriate changes before retrying the action Near (@2%s): is an invalid value repository property name. Cause. The property name is wrong. Response. Use 'CustomPresentationLayer' Near (@2%s): This alias appears more than once. Cause. The alias appeared twice in the repository, either as the name or alias of an object of the same type. Response. Find the duplicates in the repository using the Query tool and make the appropriate changes. Scripting OBIEE Is UDML and XML all you need? 49

50 UDML Parser error messages cont Near This alias is the same as an object in the script. Cause. The alias has the same name as another object of the same type in the script. Response. Correct the script so the alias and the object use different names Near This alias is the same as an object in the repository. Cause. The alias has the same name as another object of the same type in the repository. Response. Correct the repository so the alias and the object use different names Near The Administrator security role does not inherit from any other roles. Cause. The Administrators role inherited from another role. Response. The Administrator security role can only be a root level role Near (@2%s): Invalid DateTime format. Cause. The format of the Datetime string is invalid. Response. Correct the format of the Datetime string and retry the action Invalid level relationship found. Please recreate the level(s) relationships. Cause. The level with the required ID does not exist in the repository. The repository may be corrupted. Response. Repair the repository. Restore it from a back-up, or use the Check Consistency command in the Administration Tool to identify compilation errors. Correct any problems before retrying your actions. Scripting OBIEE Is UDML and XML all you need? 50

51 UDML Parser error messages cont Error: The object does not exist. If it is on-line mode, please check in changes from the File menu. Cause. The object with the required ID does not exist in the repository. The object may not be checked in. Response. If the repository is in on-line mode, use the Check-in function from the File menu to make the object available Error: Cannot open the Cause. Cannot open the named UDML script file. The file may not exist, or may be in use. Response. Verify that the file exists and is not in use by another process. If the problem persists, contact Siebel Systems technical support for assistance. Source: (Siebel 2004) Scripting OBIEE Is UDML and XML all you need? 51

52 How to use UDML? equalize repositories Use equalizerpds.exe equalizes 2 repositories into a new one -X -Y -O treats name-wise similar facts as one (e.g facts Factxxxx as Fact) equals the string sets does not update directly, creates a new repository c:\oraclebi\server\bin\equalizerpds.exe A Administrator B Administrator -C c:\oraclebi\server\repository\sales_version1.rpd -D Administrator E Administrator -F c:\oraclebi\server\repository\sales_version2.rpd X -Y Scripting OBIEE Is UDML and XML all you need? 52

Copyright 2010, Oracle. All rights reserved.

Copyright 2010, Oracle. All rights reserved. Agenda Interactive Dashboards Master-Detail Linking New Prompt Controls Pivot Table Interactions Enhanced Dashboard Builder Analysis Editor Overview Working with the analysis editor step by step Praxisteil

More information

1Z0-526

1Z0-526 1Z0-526 Passing Score: 800 Time Limit: 4 min Exam A QUESTION 1 ABC's Database administrator has divided its region table into several tables so that the west region is in one table and all the other regions

More information

Using SQL Developer. Oracle University and Egabi Solutions use only

Using SQL Developer. Oracle University and Egabi Solutions use only Using SQL Developer Objectives After completing this appendix, you should be able to do the following: List the key features of Oracle SQL Developer Identify menu items of Oracle SQL Developer Create a

More information

Edition-Based Redefinition

Edition-Based Redefinition Edition-Based Redefinition Janina Patolla Trivadis AG, Basel Basel Baden Bern Brugg Lausanne Zurich Düsseldorf Frankfurt/M. Freiburg i. Br. Hamburg Munich Stuttgart Vienna Introduction Upgrading critical

More information

Oracle BI 11g R1: Build Repositories Course OR102; 5 Days, Instructor-led

Oracle BI 11g R1: Build Repositories Course OR102; 5 Days, Instructor-led Oracle BI 11g R1: Build Repositories Course OR102; 5 Days, Instructor-led Course Description This Oracle BI 11g R1: Build Repositories training is based on OBI EE release 11.1.1.7. Expert Oracle Instructors

More information

Oracle BI 11g R1: Build Repositories

Oracle BI 11g R1: Build Repositories Oracle University Contact Us: 02 6968000 Oracle BI 11g R1: Build Repositories Duration: 5 Days What you will learn This course provides step-by-step procedures for building and verifying the three layers

More information

Analytics: Server Architect (Siebel 7.7)

Analytics: Server Architect (Siebel 7.7) Analytics: Server Architect (Siebel 7.7) Student Guide June 2005 Part # 10PO2-ASAS-07710 D44608GC10 Edition 1.0 D44917 Copyright 2005, 2006, Oracle. All rights reserved. Disclaimer This document contains

More information

This document lists new features, system requirements, known issues, and fixed issues for Noetix Generator 3.5 for Oracle Business Intelligence.

This document lists new features, system requirements, known issues, and fixed issues for Noetix Generator 3.5 for Oracle Business Intelligence. Release Notes Noetix Generator 3.5 for Oracle Business Intelligence This document lists new features, system requirements, known issues, and fixed issues for Noetix Generator 3.5 for Oracle Business Intelligence.

More information

Oracle BI 11g R1: Build Repositories

Oracle BI 11g R1: Build Repositories Oracle University Contact Us: + 36 1224 1760 Oracle BI 11g R1: Build Repositories Duration: 5 Days What you will learn This Oracle BI 11g R1: Build Repositories training is based on OBI EE release 11.1.1.7.

More information

You'll even like your Data Guard more with Flashback

You'll even like your Data Guard more with Flashback You'll even like your Data Guard more with Flashback Hervé Schweitzer Mathias Zarick München, 26.01.2010 Baden Basel Bern Brugg Lausanne Zürich Düsseldorf Frankfurt/M. Freiburg i. Br. Hamburg München Stuttgart

More information

Oracle BI 12c: Build Repositories

Oracle BI 12c: Build Repositories Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 67863102 Oracle BI 12c: Build Repositories Duration: 5 Days What you will learn This Oracle BI 12c: Build Repositories training teaches you

More information

Oracle 1Z0-620 Exam Questions & Answers

Oracle 1Z0-620 Exam Questions & Answers Oracle 1Z0-620 Exam Questions & Answers Number: 1Z0-620 Passing Score: 800 Time Limit: 120 min File Version: 35.7 http://www.gratisexam.com/ Oracle 1Z0-620 Exam Questions & Answers Exam Name: Siebel7.7

More information

SIEBEL ANALYTICS SERVER ADMINISTRATION GUIDE

SIEBEL ANALYTICS SERVER ADMINISTRATION GUIDE SIEBEL ANALYTICS SERVER ADMINISTRATION GUIDE VERSION 7.5.3 JULY 2003 12-FRKILT Siebel Systems, Inc., 2207 Bridgepointe Parkway, San Mateo, CA 94404 Copyright 2003 Siebel Systems, Inc. All rights reserved.

More information

Query Optimizer MySQL vs. PostgreSQL

Query Optimizer MySQL vs. PostgreSQL Percona Live, Frankfurt (DE), 7 November 2018 Christian Antognini @ChrisAntognini antognini.ch/blog BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE MUNICH STUTTGART

More information

Perceptive Matching Engine

Perceptive Matching Engine Perceptive Matching Engine Advanced Design and Setup Guide Version: 1.0.x Written by: Product Development, R&D Date: January 2018 2018 Hyland Software, Inc. and its affiliates. Table of Contents Overview...

More information

SIEBEL ANALYTICS INSTALLATION AND CONFIGURATION GUIDE

SIEBEL ANALYTICS INSTALLATION AND CONFIGURATION GUIDE SIEBEL ANALYTICS INSTALLATION AND CONFIGURATION GUIDE VERSION 7.7, REV. A MARCH 2004 Siebel Systems, Inc., 2207 Bridgepointe Parkway, San Mateo, CA 94404 Copyright 2004 Siebel Systems, Inc. All rights

More information

Oracle BI 11g R1: Build Repositories

Oracle BI 11g R1: Build Repositories Oracle BI 11g R1: Build Repositories Volume I - Student Guide D63514GC11 Edition 1.1 June 2011 D73309 Author Jim Sarokin Technical Contributors and Reviewers Marla Azriel Roger Bolsius Bob Ertl Alan Lee

More information

Query Optimizer MySQL vs. PostgreSQL

Query Optimizer MySQL vs. PostgreSQL Percona Live, Santa Clara (USA), 24 April 2018 Christian Antognini @ChrisAntognini antognini.ch/blog BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE MUNICH

More information

Oracle In-Memory & Data Warehouse: The Perfect Combination?

Oracle In-Memory & Data Warehouse: The Perfect Combination? : The Perfect Combination? UKOUG Tech17, 6 December 2017 Dani Schnider, Trivadis AG @dani_schnider danischnider.wordpress.com BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN

More information

PASS4TEST. IT Certification Guaranteed, The Easy Way! We offer free update service for one year

PASS4TEST. IT Certification Guaranteed, The Easy Way!   We offer free update service for one year PASS4TEST IT Certification Guaranteed, The Easy Way! \ http://www.pass4test.com We offer free update service for one year Exam : 1Z0-630 Title : Siebel7.7 Analytics Server Architect Professional Core Exam

More information

EMC Documentum Composer

EMC Documentum Composer EMC Documentum Composer Version 6.0 SP1.5 User Guide P/N 300 005 253 A02 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 2008 EMC Corporation. All

More information

Oracle Policy Automation Connector for Siebel V10.2 Release Notes

Oracle Policy Automation Connector for Siebel V10.2 Release Notes Oracle Policy Automation Connector for Siebel V10.2 Release Notes Copyright 2009, 2010, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or

More information

Lesson 1: Creating and formatting an Answers analysis

Lesson 1: Creating and formatting an Answers analysis Lesson 1: Creating and formatting an Answers analysis Answers is the ad-hoc query environment in the OBIEE suite. It is in Answers that you create and format analyses to help analyze business results.

More information

EMC Documentum Composer

EMC Documentum Composer EMC Documentum Composer Version 6.5 SP2 User Guide P/N 300-009-462 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright 2008 2009 EMC Corporation. All

More information

Mischa Kölliker. JavaLounge Zürich, 23. Juni 2009

Mischa Kölliker. JavaLounge Zürich, 23. Juni 2009 Mischa Kölliker Ueli Kistler JavaLounge Zürich, 23. Juni 2009 Basel Baden Bern Brugg Lausanne Zürich Düsseldorf Frankfurt/M. Freiburg i. Br. Hamburg München Stuttgart Wien & The RIA space What is Adobe

More information

Oracle BI Publisher 11g R1: Fundamentals

Oracle BI Publisher 11g R1: Fundamentals Oracle BI Publisher 11g R1: Fundamentals Volume I Student Guide D68420GC10 Edition 1.0 June 2011 D73304 Authors Lea Shaw Sindhu Rao Technical Contributors and Reviewers Timothy McGlue Nikos Psomas Pradeep

More information

Index A Access data formats, 215 exporting data from, to SharePoint, forms and reports changing table used by form, 213 creating, cont

Index A Access data formats, 215 exporting data from, to SharePoint, forms and reports changing table used by form, 213 creating, cont Index A Access data formats, 215 exporting data from, to SharePoint, 215 217 forms and reports changing table used by form, 213 creating, 237 245 controlling availability of, 252 259 data connection to,

More information

1Z0-430

1Z0-430 1Z0-430 Passing Score: 800 Time Limit: 0 min Exam A QUESTION 1 On a normally well-performing environment, you are experiencing unexpected slow response times, or no server response, for some page requests

More information

www.informatik-aktuell.de IT-Tage Datenbanken in Frankfurt, 17. Dezember 2015 Christian Antognini Udo Fohrmann BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE

More information

Best Practices for Testing SOA Suite 11g based systems

Best Practices for Testing SOA Suite 11g based systems Best Practices for Testing SOA Suite 11g based systems ODTUG 2010 Guido Schmutz, Technology Manager / Partner Trivadis AG 29.06.2010, Washington Basel Baden Bern Lausanne Zürich Düsseldorf Frankfurt/M.

More information

Designing for Performance: Database Related Worst Practices ITOUG Tech Day, 11 November 2016, Milano (I) Christian Antognini

Designing for Performance: Database Related Worst Practices ITOUG Tech Day, 11 November 2016, Milano (I) Christian Antognini Designing for Performance: Database Related Worst Practices ITOUG Tech Day, 11 November 2016, Milano (I) Christian Antognini BASLE BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN

More information

COGNOS (R) 8 FRAMEWORK MANAGER USER GUIDE. Framework Manager User Guide Framework Manager 8.1

COGNOS (R) 8 FRAMEWORK MANAGER USER GUIDE. Framework Manager User Guide Framework Manager 8.1 COGNOS (R) 8 FRAMEWORK MANAGER USER GUIDE Framework Manager User Guide 01-08-2005 Framework Manager 8.1 Cognos(R) 8 Business Intelligence Readme Framework Manager User Guide USER GUIDE THE NEXT LEVEL OF

More information

Release Notes. PREEvision. Version 6.5 SP14 English

Release Notes. PREEvision. Version 6.5 SP14 English Release Notes PREEvision Version 6.5 SP14 English Imprint Vector Informatik GmbH Ingersheimer Straße 24 70499 Stuttgart, Germany Vector reserves the right to modify any information and/or data in this

More information

5. Single-row function

5. Single-row function 1. 2. Introduction Oracle 11g Oracle 11g Application Server Oracle database Relational and Object Relational Database Management system Oracle internet platform System Development Life cycle 3. Writing

More information

MySQL 5.0 Certification Study Guide

MySQL 5.0 Certification Study Guide MySQL 5.0 Certification Study Guide Paul DuBois, Stefan Hinz, and Carsten Pedersen MySQC Press 800 East 96th Street, Indianapolis, Indiana 46240 USA Table of Contents Introduction 1 About This Book 1 Sample

More information

A Case Study Building Financial Report and Dashboard Using OBIEE Part I

A Case Study Building Financial Report and Dashboard Using OBIEE Part I A Case Study Building Financial Report and Dashboard Using OBIEE Part I This is a 1 st document in the series of building financial reports and dashboard taking Essbase as Data Source. This document briefs

More information

Release notes for version 3.7.2

Release notes for version 3.7.2 Release notes for version 3.7.2 Important! Create a backup copy of your projects before updating to the new version. Projects saved in the new version can t be opened in versions earlier than 3.7. Breaking

More information

OBIEE. Oracle Business Intelligence Enterprise Edition. Rensselaer Business Intelligence Finance Author Training

OBIEE. Oracle Business Intelligence Enterprise Edition. Rensselaer Business Intelligence Finance Author Training OBIEE Oracle Business Intelligence Enterprise Edition Rensselaer Business Intelligence Finance Author Training TABLE OF CONTENTS INTRODUCTION... 1 USER INTERFACE... 1 HOW TO LAUNCH OBIEE... 1 TERMINOLOGY...

More information

<Insert Picture Here> BI Design Best Practices Nicolas Barasz - Oracle BI EPM Product Assurance April 2012

<Insert Picture Here> BI Design Best Practices Nicolas Barasz - Oracle BI EPM Product Assurance April 2012 BI Design Best Practices Nicolas Barasz - Oracle BI EPM Product Assurance April 2012 Agenda Oracle BI Principles Repository design best practices Dashboards and reports design best

More information

OSR Administration 3.7 User Guide. Updated:

OSR Administration 3.7 User Guide. Updated: OSR Administration 3.7 User Guide Updated: 2013-01-31 Copyright OneStop Reporting AS www.onestopreporting.com Table of Contents Introduction... 1 Who should read this manual... 1 What s included in this

More information

Backup Methods from Practice

Backup Methods from Practice Backup Methods from Practice Optimized and Intelligent Roland Stirnimann @rstirnimann_ch BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE MUNICH STUTTGART VIENNA

More information

Oracle Database: SQL and PL/SQL Fundamentals NEW

Oracle Database: SQL and PL/SQL Fundamentals NEW Oracle University Contact Us: 001-855-844-3881 & 001-800-514-06-97 Oracle Database: SQL and PL/SQL Fundamentals NEW Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals

More information

Get Groovy with ODI Trivadis

Get Groovy with ODI Trivadis BASEL 1 BERN BRUGG LAUSANNE ZUERICH DUESSELDORF FRANKFURT A.M. FREIBURG I.BR. HAMBURG MUNICH STUTTGART VIENNA AGENDA 1 What is Groovy? 2 Groovy in ODI 3 What I want to reach 4 Live Demo 5 Helpful documentation

More information

C1 CMS User Guide Orckestra, Europe Nygårdsvej 16 DK-2100 Copenhagen Phone

C1 CMS User Guide Orckestra, Europe Nygårdsvej 16 DK-2100 Copenhagen Phone 2017-02-13 Orckestra, Europe Nygårdsvej 16 DK-2100 Copenhagen Phone +45 3915 7600 www.orckestra.com Content 1 INTRODUCTION... 4 1.1 Page-based systems versus item-based systems 4 1.2 Browser support 5

More information

Giving Your Headings Meaningful Names (Desktop and Plus) p. 158 Rearranging the Order of the Output p. 160 Formatting Data p. 163 Formatting Columns

Giving Your Headings Meaningful Names (Desktop and Plus) p. 158 Rearranging the Order of the Output p. 160 Formatting Data p. 163 Formatting Columns Acknowledgments p. xxi Introduction p. xxiii Getting Started with Discoverer An Overview of Discoverer p. 3 Business Intelligence and Your Organization p. 4 Business Intelligence and Trends p. 5 Discoverer's

More information

Follow these steps to get started: o Launch MS Access from your start menu. The MS Access startup panel is displayed:

Follow these steps to get started: o Launch MS Access from your start menu. The MS Access startup panel is displayed: Forms-based Database Queries The topic presents a summary of Chapter 3 in the textbook, which covers using Microsoft Access to manage and query an Access database. The screenshots in this topic are from

More information

Quark XML Author for FileNet 2.5 with BusDocs Guide

Quark XML Author for FileNet 2.5 with BusDocs Guide Quark XML Author for FileNet 2.5 with BusDocs Guide CONTENTS Contents Getting started...6 About Quark XML Author...6 System setup and preferences...8 Logging in to the repository...8 Specifying the location

More information

Emergency Bug Fixes (9.7.0)... 1 Fixed Limitations (9.7.0)... 2 Known Limitations (9.7.0)... 3 Informatica Global Customer Support...

Emergency Bug Fixes (9.7.0)... 1 Fixed Limitations (9.7.0)... 2 Known Limitations (9.7.0)... 3 Informatica Global Customer Support... Informatica Corporation Dynamic Data Masking Version 9.7.0 Release Notes August 2015 Copyright (c) 1993-2015 Informatica Corporation. All rights reserved. Contents Emergency Bug Fixes (9.7.0)... 1 Fixed

More information

C_HANAIMP142

C_HANAIMP142 C_HANAIMP142 Passing Score: 800 Time Limit: 4 min Exam A QUESTION 1 Where does SAP recommend you create calculated measures? A. In a column view B. In a business layer C. In an attribute view D. In an

More information

Hyperion Interactive Reporting Reports & Dashboards Essentials

Hyperion Interactive Reporting Reports & Dashboards Essentials Oracle University Contact Us: +27 (0)11 319-4111 Hyperion Interactive Reporting 11.1.1 Reports & Dashboards Essentials Duration: 5 Days What you will learn The first part of this course focuses on two

More information

Information Design Tool User Guide SAP BusinessObjects Business Intelligence platform 4.0 Support Package 4

Information Design Tool User Guide SAP BusinessObjects Business Intelligence platform 4.0 Support Package 4 Information Design Tool User Guide SAP BusinessObjects Business Intelligence platform 4.0 Support Package 4 Copyright 2012 SAP AG. All rights reserved.sap, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign,

More information

EnterpriseTrack Reporting Data Model Configuration Guide Version 17

EnterpriseTrack Reporting Data Model Configuration Guide Version 17 EnterpriseTrack EnterpriseTrack Reporting Data Model Configuration Guide Version 17 October 2018 Contents About This Guide... 5 Configuring EnterpriseTrack for Reporting... 7 Enabling the Reporting Data

More information

ORANET- Course Contents

ORANET- Course Contents ORANET- Course Contents 1. Oracle 11g SQL Fundamental-l 2. Oracle 11g Administration-l 3. Oracle 11g Administration-ll Oracle 11g Structure Query Language Fundamental-l (SQL) This Intro to SQL training

More information

Release notes for version 3.7.1

Release notes for version 3.7.1 Release notes for version 3.7.1 Important! Create a backup copy of your projects before updating to the new version. Projects saved in the new version can t be opened in versions earlier than 3.7. What

More information

Using SAP NetWeaver Business Intelligence in the universe design tool SAP BusinessObjects Business Intelligence platform 4.1

Using SAP NetWeaver Business Intelligence in the universe design tool SAP BusinessObjects Business Intelligence platform 4.1 Using SAP NetWeaver Business Intelligence in the universe design tool SAP BusinessObjects Business Intelligence platform 4.1 Copyright 2013 SAP AG or an SAP affiliate company. All rights reserved. No part

More information

RulePoint Proactive PowerCenter Monitoring

RulePoint Proactive PowerCenter Monitoring Contents Informatica Corporation RulePoint Release Notes June 27, 2011 Copyright 1998-2011 Informatica Corporation Abstract... 1 RulePoint Proactive PowerCenter Monitoring... 1 Installation... 1 Enhancements...

More information

Quark XML Author for FileNet 2.8 with BusDocs Guide

Quark XML Author for FileNet 2.8 with BusDocs Guide Quark XML Author for FileNet.8 with BusDocs Guide Contents Getting started... About Quark XML Author... System setup and preferences... Logging on to the repository... Specifying the location of checked-out

More information

Push up your code next generation version control with (E)Git

Push up your code next generation version control with (E)Git Push up your code next generation version control with (E)Git Dominik Schadow Senior Consultant Application Development dominik.schadow@trivadis.com Java Forum Stuttgart, 07.07.2011 Basel Bern Lausanne

More information

1Z0-630 Questions & Answers

1Z0-630 Questions & Answers 1Z0-630 Questions & Answers Number: 1Z0-630 Passing Score: 800 Time Limit: 120 min File Version: 38.2 http://www.gratisexam.com/ 1Z0-630 Questions & Answers Exam Name: Siebel7.7 Analytics Server Architect

More information

Configuring the Oracle Network Environment. Copyright 2009, Oracle. All rights reserved.

Configuring the Oracle Network Environment. Copyright 2009, Oracle. All rights reserved. Configuring the Oracle Network Environment Objectives After completing this lesson, you should be able to: Use Enterprise Manager to: Create additional listeners Create Oracle Net Service aliases Configure

More information

EMC Documentum Composer

EMC Documentum Composer EMC Documentum Composer Version 6 SP1 User Guide P/N 300 005 253 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 2008 EMC Corporation. All rights

More information

Top 24 Obiee Interview Questions & Answers

Top 24 Obiee Interview Questions & Answers Top 24 Obiee Interview Questions & Answers 1) Mention what is Obiee? Obiee stands for Oracle Business Intelligence Enterprise Edition (OBIEE). It is a business intelligence system for the enterprise that

More information

Big Data Big Mess? Ein Versuch einer Positionierung

Big Data Big Mess? Ein Versuch einer Positionierung Big Data Big Mess? Ein Versuch einer Positionierung Autor: Daniel Liebhart (Peter Welkenbach) Datum: 10. Oktober 2012 Ort: DBTA Workshop on Big Data, Cloud Data Management and NoSQL BASEL BERN LAUSANNE

More information

Interactive Reporting & Essbase. interrel Consulting

Interactive Reporting & Essbase. interrel Consulting Interactive Reporting & Essbase interrel Consulting interrel - Founded in 1997 2008 Oracle Titan Award winner for EPM Solution of the year 2008 Oracle Excellence Award winner with Pearson Education One

More information

Index A, B, C. Rank() function, steps, 199 Cloud services, 2 Comma-separated value (CSV), 27

Index A, B, C. Rank() function, steps, 199 Cloud services, 2 Comma-separated value (CSV), 27 Index A, B, C Calculations, Power Query distinct customers code implementations, 205 duplicate date and customer, 204 group by dialog configuration, 204 objective, 202 output, 205 Query Editor toolbar,

More information

Talend Open Studio for Data Quality. User Guide 5.5.2

Talend Open Studio for Data Quality. User Guide 5.5.2 Talend Open Studio for Data Quality User Guide 5.5.2 Talend Open Studio for Data Quality Adapted for v5.5. Supersedes previous releases. Publication date: January 29, 2015 Copyleft This documentation is

More information

OBIEE Metadata Repository Deployment Guide Oracle FLEXCUBE Universal Banking Release [May] [2017]

OBIEE Metadata Repository Deployment Guide Oracle FLEXCUBE Universal Banking Release [May] [2017] OBIEE Metadata Repository Deployment Guide Oracle FLEXCUBE Universal Banking Release 12.4.0.0.0 [May] [2017] Table of Contents 1. OBIEE METADATA REPOSITORY DEPLOYMENT GUIDE... 1-1 1.1 INTRODUCTION... 1-1

More information

Oracle Syllabus Course code-r10605 SQL

Oracle Syllabus Course code-r10605 SQL Oracle Syllabus Course code-r10605 SQL Writing Basic SQL SELECT Statements Basic SELECT Statement Selecting All Columns Selecting Specific Columns Writing SQL Statements Column Heading Defaults Arithmetic

More information

Peak ETA Developers Guide

Peak ETA Developers Guide Oracle Business Intelligence 11g Peak ETA Developers Guide Antony Heljula / Paul Oprea January 2013 Peak Indicators Limited 2 Peak ETA Developers Guide Agenda About the Peak ETA Console About the Peak

More information

Standard Professional Premium

Standard Professional Premium Standard Professional Premium Company size:

More information

Table of Contents DATA MANAGEMENT TOOLS 4. IMPORT WIZARD 6 Setting Import File Format (Step 1) 7 Setting Source File Name (Step 2) 8

Table of Contents DATA MANAGEMENT TOOLS 4. IMPORT WIZARD 6 Setting Import File Format (Step 1) 7 Setting Source File Name (Step 2) 8 Data Management Tools 1 Table of Contents DATA MANAGEMENT TOOLS 4 IMPORT WIZARD 6 Setting Import File Format (Step 1) 7 Setting Source File Name (Step 2) 8 Importing ODBC Data (Step 2) 10 Importing MSSQL

More information

IBM Security Access Manager Version January Federation Administration topics IBM

IBM Security Access Manager Version January Federation Administration topics IBM IBM Security Access Manager Version 9.0.2.1 January 2017 Federation Administration topics IBM IBM Security Access Manager Version 9.0.2.1 January 2017 Federation Administration topics IBM ii IBM Security

More information

API Gateway Version September Key Property Store User Guide

API Gateway Version September Key Property Store User Guide API Gateway Version 7.5.2 15 September 2017 Key Property Store User Guide Copyright 2017 Axway All rights reserved. This documentation describes the following Axway software: Axway API Gateway 7.5.2 No

More information

Apache Tamaya Configuring your Containers...

Apache Tamaya Configuring your Containers... Apache Tamaya Configuring your Containers... BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENF HAMBURG KOPENHAGEN LAUSANNE MÜNCHEN STUTTGART WIEN ZÜRICH About Me Anatole Tresch Principal Consultant,

More information

User's Guide c-treeace SQL Explorer

User's Guide c-treeace SQL Explorer User's Guide c-treeace SQL Explorer Contents 1. c-treeace SQL Explorer... 4 1.1 Database Operations... 5 Add Existing Database... 6 Change Database... 7 Create User... 7 New Database... 8 Refresh... 8

More information

Using SQL with SQL Developer 18.2

Using SQL with SQL Developer 18.2 One Introduction to SQL 2 - Definition 3 - Usage of SQL 4 - What is SQL used for? 5 - Who uses SQL? 6 - Definition of a Database 7 - What is SQL Developer? 8 Two The SQL Developer Interface 9 - Introduction

More information

Braindumps.1z QA

Braindumps.1z QA Braindumps.1z0-591.120.QA Number: 1z0-591 Passing Score: 800 Time Limit: 120 min File Version: 4.4 http://www.gratisexam.com/ 1z0-591 Oracle Business Intelligence Foundation Suite 11g Essentials I found

More information

1z0-591.exam.70q.

1z0-591.exam.70q. 1z0-591.exam.70q Number: 1z0-591 Passing Score: 800 Time Limit: 120 min 1z0-591 Oracle Business Intelligence Foundation Suite 11g Essentials Exam A QUESTION 1 Query limits tab can be accessed through.

More information

RELEASE NOTES. Version NEW FEATURES AND IMPROVEMENTS

RELEASE NOTES. Version NEW FEATURES AND IMPROVEMENTS S AND S Implementation of the Google Adwords connection type Implementation of the NetSuite connection type Improvements to the Monarch Swarm Library Column sorting and enhanced searching Classic trapping

More information

Table of Contents. PDF created with FinePrint pdffactory Pro trial version

Table of Contents. PDF created with FinePrint pdffactory Pro trial version Table of Contents Course Description The SQL Course covers relational database principles and Oracle concepts, writing basic SQL statements, restricting and sorting data, and using single-row functions.

More information

SQL Server 2014 Highlights der wichtigsten Neuerungen In-Memory OLTP (Hekaton)

SQL Server 2014 Highlights der wichtigsten Neuerungen In-Memory OLTP (Hekaton) SQL Server 2014 Highlights der wichtigsten Neuerungen Karl-Heinz Sütterlin Meinrad Weiss March 2014 BASEL BERN BRUGG LAUSANNE ZUERICH DUESSELDORF FRANKFURT A.M. FREIBURG I.BR. HAMBURG MUNICH STUTTGART

More information

ER/Studio Enterprise Portal User Guide

ER/Studio Enterprise Portal User Guide ER/Studio Enterprise Portal 1.0.3 User Guide Copyright 1994-2009 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco, CA 94111 U.S.A. All rights

More information

Release Notes. PREEvision. Version 6.5 SP13 English

Release Notes. PREEvision. Version 6.5 SP13 English Release Notes PREEvision Version 6.5 SP13 English Imprint Vector Informatik GmbH Ingersheimer Straße 24 70499 Stuttgart, Germany Vector reserves the right to modify any information and/or data in this

More information

Siebel Application Deployment Manager Guide. Version 8.0, Rev. A April 2007

Siebel Application Deployment Manager Guide. Version 8.0, Rev. A April 2007 Siebel Application Deployment Manager Guide Version 8.0, Rev. A April 2007 Copyright 2005, 2006, 2007 Oracle. All rights reserved. The Programs (which include both the software and documentation) contain

More information

Dockit Migrator. Release Notes

Dockit Migrator. Release Notes Dockit Migrator Release Notes Version 11.0.6646 Performance improvement in folder migration in File share module. Improvements in loading users and groups from SharePoint sites during migration. Fixed

More information

Business Processes and Rules: Siebel Enterprise Application Integration. Siebel Innovation Pack 2013 Version 8.1/8.

Business Processes and Rules: Siebel Enterprise Application Integration. Siebel Innovation Pack 2013 Version 8.1/8. Business Processes and Rules: Siebel Enterprise Application Integration Siebel Innovation Pack 2013 September 2013 Copyright 2005, 2013 Oracle and/or its affiliates. All rights reserved. This software

More information

Using SQL with SQL Developer 18.1 Part II

Using SQL with SQL Developer 18.1 Part II One Data Manipulation in SQL Developer 2 - Introduction 3 - Updating a record in Data 4 - Updating a Primary Key in Data 6 - Reverting Changes using Refresh 7 - Updating a table with a trigger in Data

More information

1Z Oracle Business Intelligence (OBI) Foundation Suite 11g Essentials Exam Summary Syllabus Questions

1Z Oracle Business Intelligence (OBI) Foundation Suite 11g Essentials Exam Summary Syllabus Questions 1Z0-591 Oracle Business Intelligence (OBI) Foundation Suite 11g Essentials Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-591 Exam on Oracle Business Intelligence (OBI) Foundation

More information

OBIEE Course Details

OBIEE Course Details OBIEE Course Details By Besant Technologies Course Name Category Venue OBIEE (Oracle Business Intelligence Enterprise Edition) BI Besant Technologies No.24, Nagendra Nagar, Velachery Main Road, Address

More information

TX DWA Contents RELEASE DOCUMENTATION

TX DWA Contents RELEASE DOCUMENTATION TX DWA 16.7 RELEASE DOCUMENTATION Contents Introduction... 2 New Features... 2 Differential Deployment... 3 Deployment Status Report... 3 Managed Deployment... 4 Data Export... 4 Dynamic Project Variables...

More information

Quality Gates User guide

Quality Gates User guide Quality Gates 3.3.5 User guide 06/2013 1 Table of Content 1 - Introduction... 4 2 - Navigation... 5 2.1 Navigation tool bar... 5 2.2 Navigation tree... 5 2.3 Folder Tree... 6 2.4 Test history... 7 3 -

More information

Kintana Object*Migrator System Administration Guide. Version 5.1 Publication Number: OMSysAdmin-1203A

Kintana Object*Migrator System Administration Guide. Version 5.1 Publication Number: OMSysAdmin-1203A Kintana Object*Migrator System Administration Guide Version 5.1 Publication Number: OMSysAdmin-1203A Kintana Object*Migrator, Version 5.1 This manual, and the accompanying software and other documentation,

More information

Oracle Communications Design Studio

Oracle Communications Design Studio Oracle Communications Design Studio Order and Service Management Cartridge Migration Guide Release 7.2.2 E37690-01 January 2013 Oracle Communications Design Studio Order and Service Management Cartridge

More information

Sample Data. Sample Data APPENDIX A. Downloading the Sample Data. Images. Sample Databases

Sample Data. Sample Data APPENDIX A. Downloading the Sample Data. Images. Sample Databases APPENDIX A Sample Data Sample Data If you wish to follow the examples used in this book and I hope you will you will need some sample data to work with. All the files referenced in this book are available

More information

Oracle Database New Performance Features

Oracle Database New Performance Features Oracle Database 12.1.0.2 New Performance Features DOAG 2014, Nürnberg (DE) Christian Antognini BASEL BERN BRUGG LAUSANNE ZUERICH DUESSELDORF FRANKFURT A.M. FREIBURG I.BR. HAMBURG MUNICH STUTTGART VIENNA

More information

Quark XML Author October 2017 Update with Business Documents

Quark XML Author October 2017 Update with Business Documents Quark XML Author 05 - October 07 Update with Business Documents Contents Getting started... About Quark XML Author... Working with documents... Basic document features... What is a business document...

More information

WELCOME. Oracle Almost Maximum Availability. Martin Schmitter 28th Sep 2011

WELCOME. Oracle Almost Maximum Availability. Martin Schmitter 28th Sep 2011 WELCOME Almost Maximum Availability Martin Schmitter 28th Sep 2011 BASEL BERN LAUSANNE ZÜRICH DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. HAMBURG MÜNCHEN STUTTGART WIEN 1 About me.. Consultant at Trivadis,

More information

SPSS Statistics 21.0 Fix Pack 1 Fix List

SPSS Statistics 21.0 Fix Pack 1 Fix List SPSS Statistics 21.0 Fix Pack 1 Fix List Release notes Abstract A comprehensive list of defect corrections for the SPSS Statistics 21.0 Fix Pack 1. Details of the fixes are listed below under the tab for

More information

Using the VMware vcenter Orchestrator Client. vrealize Orchestrator 5.5.1

Using the VMware vcenter Orchestrator Client. vrealize Orchestrator 5.5.1 Using the VMware vcenter Orchestrator Client vrealize Orchestrator 5.5.1 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments

More information

Vector Issue Tracker and License Manager - Administrator s Guide. Configuring and Maintaining Vector Issue Tracker and License Manager

Vector Issue Tracker and License Manager - Administrator s Guide. Configuring and Maintaining Vector Issue Tracker and License Manager Vector Issue Tracker and License Manager - Administrator s Guide Configuring and Maintaining Vector Issue Tracker and License Manager Copyright Vector Networks Limited, MetaQuest Software Inc. and NetSupport

More information