Language selection

Search

Patent 2468617 Summary

Third-party information liability

Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements.

Claims and Abstract availability

Any discrepancies in the text and image of the Claims and Abstract are due to differing posting times. Text of the Claims and Abstract are posted:

  • At the time the application is open to public inspection;
  • At the time of issue of the patent (grant).
(12) Patent: (11) CA 2468617
(54) English Title: SYSTEM AND METHOD OF QUERY TRANSFORMATION
(54) French Title: SYSTEME ET METHODE DE TRANSFORMATION DES INTERROGATIONS
Status: Granted
Bibliographic Data
(51) International Patent Classification (IPC):
  • G06F 16/9032 (2019.01)
(72) Inventors :
  • STYLES, MICHAEL E. (Canada)
(73) Owners :
  • SAP SE (Germany)
(71) Applicants :
  • COGNOS INCORPORATED (Canada)
(74) Agent: GOWLING WLG (CANADA) LLP
(74) Associate agent:
(45) Issued: 2010-06-29
(22) Filed Date: 2004-05-27
(41) Open to Public Inspection: 2004-11-27
Examination requested: 2004-05-27
Availability of licence: Yes
(25) Language of filing: English

Patent Cooperation Treaty (PCT): No

(30) Application Priority Data:
Application No. Country/Territory Date
2,429,910 Canada 2003-05-27

Abstracts

English Abstract

A query transformation system for transforming nested aggregates in a query is provided. The query transformation system comprises a nested aggregate analysis module for analysing a query that is not supported by a target database system, and a nested aggregate transformation module for transforming the query into a semantically equivalent query that is supported by the target database system.


French Abstract

Ce brevet décrit un système visant la transformation des agrégats imbriqués en requête. Le système de transformation de requête comporte un module d'analyse des agrégats imbriqués pour l'analyse de la requête non prise en charge par le système de base de données ciblé ainsi qu'un module de transformation des agrégats imbriqués pour la transformation de la requête en une demande sémantique équivalente compatible avec le système de base de données ciblé.

Claims

Note: Claims are shown in the official language in which they were submitted.



WHAT IS CLAIMED IS:

1. A query transformation system for transforming nested aggregates in a
query, the
query transformation system comprising:
a nested aggregate analysis module for analysing a query that is not supported
by
a target database system; and
a nested aggregate transformation module for transforming the query into a
semantically equivalent query that is supported by the target database system.

2. The query transformation system as claimed in claim 1, wherein the nested
aggregate
analysis module includes:
a nested aggregate detection unit for traversing a query and detecting a
nested
aggregate in the query; and
a nested aggregate tagging unit for traversing a query and tagging the nested
aggregate.

3. The query transformation system as claimed in claim 1, wherein the nested
aggregate
transformation module includes:
a derived table for storing a copy of a tagged nested aggregate; and
a query editor for inserting the tagged nested aggregate into a query that is
supported by a target database system.

4. A method of nested aggregate transformation, the method comprising the
steps of:
analysing a query that is not supported by a target database system; and
transforming the query into a semantically equivalent query that is supported
by
the target database system.

5. The method as claimed in claim 4, wherein the step of analysing includes
the steps of:
detecting a nested aggregate in a select list of a query; and
adding a tag to the nested aggregate.

6. The method as claimed in claim 4, wherein the step of analysing includes
the steps of:
creating a derived table;

12



adding a column reference to a select list in the derived table; and
adding the tagged nested aggregate to the select list of the derived table.
7. A method of nested aggregate transformation, the method comprising the
steps of:
generating a derived table to compute aggregates;
extracting nested aggregates and moving nested aggregates into a select list
of the
derived table; and
determining whether the transformation is to be performed, including the steps
of:
detecting nested aggregates; and
detecting framed aggregates and report aggregates;
if nested aggregates are detected, performing the transformation, including
the steps of:
marking a nested aggregate for insertion into an inner select list;
marking a report aggregate for insertion into the inner select list if
it does not contain a nested aggregate or there are framed aggregates
present; and
detecting framed aggregates; and
adding expressions to the inner select list of the derived table.
8. A computer data signal embodied in a carrier wave and representing
sequences of
instructions which, when executed by a processor, cause the processor to
perform a
method of nested aggregate transformation, the method comprising the steps of:
analysing a query that is not supported by a target database system; and
transforming the query into a semantically equivalent query that is supported
by
the target database system..
9. A computer-readable medium having computer readable code embodied therein
for
use in the execution in a computer of a method of nested aggregate
transformation, the
method comprising the steps of:
analysing a query that is not supported by a target database system; and
transforming the query into a semantically equivalent query that is supported
by
the target database system.

13


10. A computer program product for use in the execution in a computer of a
query
transformation system for transforming nested aggregates in a query, the
computer
program product comprising:
a nested aggregate analysis module for analysing a query that is not supported
by
a target database system; and
a nested aggregate transformation module for transforming the query into a
semantically equivalent query that is supported by the target database system.

14


Description

Note: Descriptions are shown in the official language in which they were submitted.



CA 02468617 2004-05-27
System and Method of Query Transformation
FIELD OF THE INVENTION
The invention relates generally to data access middleware, and in particular
to a
S system and method of query transformation.
BACKGROUND OF THE INVENTION
A typical data access environment has a mufti-tier architecture. For
description
purposes, it can be separated into three distinct tiers:
~ Web server
~ Applications
~ Data
The tiers are based on business function, and are typically separated by
firewalls. Client
software, such as a browser or a report-authoring tool, sits above the tiers.
The web server contains a firewall and one or more gateways. All web
communication is performed through a gateway. A gateway is responsible for
passing on
requests to the application server, in tier 2, for execution.
The applications tier contains one or more application servers. The
application
server runs requests, such as reports and queries that are forwarded by a
gateway running
on the web server. Typically, one of the components of the applications tier
is a query
engine, which is data access middleware that provides universal data access to
a variety
of heterogeneous database systems. The query engine formulates queries
(typically SQL)
and passes them on to the data tier, through a native database API (such as
ODBC) for
execution.
The data tier contains database management systems (DBMS), which manage raw
data stored in a database. Examples of such systems include Oracle, DB2, and
Microsoft
SQL Server.
Although a mufti-tier architecture can be configured in several different
ways, a
typical configuration places each tier on a separate computer (server). A
database server
is typically a "high end" server, and thus can process queries at a relatively
fast speed.
An application server cannot generally process queries as quickly as a
database server.
In order to solve many business questions, a query engine may generate SQL
queries that utilize the SQLIOLAP technology introduced in the SQL:1999
standard.
1


CA 02468617 2004-05-27
However, many database systems do not support this technology. Thus, the SQL
queries
would have to be performed by the query engine on the application server that
is
generally slower than the database server. It is desirable to have as much
processing
performed on the database server.
There is a need to prevent or reduce the amount of local (application server)
processing required to process a query. In the past, the application would be
responsible
for generating SQL that contained no nested OLAP functions. Quite often,
generating
this type of SQL is more difficult since it is more complex.
One way of overcoming this problem is for the query engine to generate a
simple
base query for collecting the data, and then process the remainder of the
query (including
OLAP functions) to produce the desired result. Unfortunately, this solution
requires
extensive processing time on the application server. It is desirable to have a
way of
transforming the query into a form that minimizes the processing time on the
application
server. Ideally, the transformed query would be processed by the DBMS in its
entirety.
SUMMARY OF THE INVENTION
It is an object of the present invention to provide a method of nested
aggregate
transformation in a database system that supports SQLfOLAP, but does not
support
nested OLAP functions.
In accordance with an embodiment of the present invention, there is provided a
query transformation system for transforming nested aggregates in a query. The
query
transformation system comprises a nested aggregate analysis module for
analysing a
query that is not supported by a target database system, and a nested
aggregate
transformation module for transforming the query into a semantically
equivalent query
that is supported by the target database system.
In accordance with another embodiment of the present invention, there is
provided
a method of nested aggregate transformation. The method comprises the steps of
analysing a query that is not supported by a target database system, and
transforming the
query into a semantically equivalent query that is supported by the target
database system.
In accordance with another embodiment of the present invention, there is
provided
a method of nested aggregate transformation. The method comprises the steps of
generating a derived table to compute aggregates, extracting nested aggregates
and
moving nested aggregates into a select list of the derived table, and
determining whether
2


CA 02468617 2004-05-27
the transformation is to be performed. The step of determining includes the
steps of
detecting nested aggregates, detecting framed aggregates and report
aggregates,
performing the transformation if nested aggregates are detected, and adding
expressions
to the inner select list of the derived table. The step of performing includes
the steps of
S marking a nested aggregate for insertion into an inner select list, marking
a report
aggregate for insertion into the inner select list if it does not contain a
nested aggregate or
there are framed aggregates present, and detecting framed aggregates.
In accordance with another embodiment of the present invention, there is
provided
a computer data signal embodied in a carrier wave and representing sequences
of
instructions which, when executed by a processor, cause the processor to
perform a
method of nested aggregate transformation. The method comprises the steps of
analysing
a query that is not supported by a target database system, and transforming
the query into
a semantically equivalent query that is supported by the target database
system.
In accordance with another embodiment of the present invention, there is
provided
a computer-readable medium having computer readable code embodied therein for
use in
the execution in a computer of a method of nested aggregate transformation.
The method
comprises the steps of analysing a query that is not supported by a target
database system,
and transforming the query into a semantically equivalent query that is
supported by the
target database system.
In accordance with another embodiment of the present invention, there is
provided
a computer program product for use in the execution in a computer of a query
transformation system for transforming nested aggregates in a query. The
computer
program product comprises a nested aggregate analysis module for analysing a
query that
is not supported by a target database system, and a nested aggregate
transformation
module for transforming the query into a semantically equivalent query that is
supported
by the target database system.
BRIEF DESCRIPTION OF THE DRAWINGS
Figure 1 shows a typical data access environment.
Figure 2 shows a nested aggregate transformation system, in accordance with an
embodiment of the present invention.


CA 02468617 2004-05-27
Figure 3 shows in a flowchart an example of a method of a nested aggregate
transformation, in accordance with an embodiment of the nested aggregate
transformation
system.
Figure 4 shows in a flowchart another example of a method of a nested
aggregate
S transformation, in accordance with an embodiment of the nested aggregate
transformation
system.
DETAILED DESCRIPTION OF THE PREFERRED EMBODIMENTS
Figure 1 shows a typical data access environment 10 for processing data.
Typically, data is stored in a database 11. A database management system
(DBMS)
running on a database server 12 accesses the raw data stored in the database
11. A query
engine 15, running on a report server (or application server) 13 is used to
generate reports
on the raw data and instruct the DBMS on the database server 12 to obtain
information
pertaining to the raw data in the database 11. The query engine 15 provides
universal
data access to a variety of heterogeneous database systems. An end user uses a
client
application 14, running on a client workstation, to facilitate application
server 13
operations.
In order to solve many business questions, a query engine 15 generates SQL
queries that utilize the SQLlonline analytical programming (OLAP) technology
introduced in the SQL:1999 standard. These SQL queries include SQL/OLAP
functions
(windowed aggregates). However, many database systems 12 do not support this
technology. In order to prevent or reduce the amount of local (application
server)
processing required to process these types of queries, the query engine 15
attempts to
generate semantically equivalent queries that can be processed on the database
server 12
by the target database system. These semantically equivalent queries included
standard
aggregate functions and a GROUP BY operator.
In order to solve many business questions, SQL (Structured Query Language)
queries are generated that utilize the SQL/OLAP (Online Analytical
Programming)
technology introduced in the SQL:1999 standard. Quite often, these queries
contain
OLAP functions whose arguments and/or window specifications contain other
(nested)
OLAP functions. The SQL:1999 standard (and most databases with a SQL/OLAP
capability) does not permit this.
4


CA 02468617 2004-05-27
Figure 2 shows a nested aggregate transformation system 20 for generating a
query with no nested OLAP functions that is semantically equivalent to a query
having
nested OLAP functions. 'The nested aggregate transformation system 20
comprises a
nested aggregate analysis module 21 for analyzing SQL/OLAP queries containing
nested
OLAP functions that are not supported by a target database system, and a
nested
aggregate transformation module 22 for transforming these SQL/OLAP queries
into
semantically equivalent queries that are supported by the target database
system. The
nested aggregate analysis module 21 may include a nested aggregate detection
unit for
traversing a query and detecting a nested aggregate in the query, and a nested
aggregate
tagging unit for traversing a query and tagging the nested aggregate. The
nested
aggregate transformation module may include a derived table for storing a copy
of the
tagged nested aggregate, and a query editor for inserting the tagged nested
aggregate into
a query that is supported by a target database system.
The nested aggregate transformation system 20 may be implemented as a sub-
system of the query engine 15 in the data access environment 10. This
transformation 20
may generate queries that can be processed in their entirety on the database
server 12, or
queries that require processing on both the application server 13 and the
database server
12.
Figure 3 shows in a flowchart an example of a method of nested aggregate
transformation (30), in accordance with an embodiment of the nested aggregate
transformation system 20. The method (30) begins with analyzing a query
containing a
nested aggregate functions that is not supported by a target database system
(31 ). Next,
the query is transformed into a semantically equivalent query that is
supported by the
target database system (32). The method (30) is done (33).
Advantageously, the nested aggregate transformation system 20 eases the task
of
generating SQL by eliminating the need to analyze all aggregation required by
the report,
and by eliminating the need to generate nested derived tables. Furthermore,
the nested
aggregate transformation system 20 allows the query engine 15 to only perform
the
transformation if necessary.
There are two types of OLAP functions: framed functions and report functions.
Framed OLAP functions contain a window frame specification (ROWS or RANGE) and
an ORDER BY clause. Through window frames, capabilities such as cumulative
5


CA 02468617 2004-05-27
(running) sums and moving averages can be supported. Report functions do not
contain a
window frame specification, and produce the same value for each row in a
partition.
A nested aggregate/OLAP function is any aggregate/OLAP function appearing
inside the specification of another aggregatelOLAP function. These
aggregates/OLAP
functions may appear in the operand, the PARTITION BY clause, the AT (compute
break) clause, or the ORDER BY clause. Nested aggregates are computed prior to
the
parent aggregate being computed. Framed OLAP functions are given special
attention
when performing the nested aggregate transformation 20 due to the presence of
the
ORDER BY clause.
Figure 4 shows a flowchart of an example of a method of nested aggregate
transformation (40), in accordance with an embodiment of the nested aggregate
transformation system 20. The method (40) begins with searching for nested
aggregates
and framed aggregates in a select list (41). If nested aggregates are not
found (42), then
the method is done (46). If nested aggregates are found (42), then the select
list is
traversed again with tags added to appropriate aggregates (43). A derived
table is created
(44). Once again, the select list is traversed and simple column references
and tagged
aggregates are added to the select list of the derived table (45). The method
(40) is done
(46).
The nested aggregate transformation system 20 generates a derived table to
compute these aggregates. Nested aggregates are extracted and moved into the
select list
of the derived table. This process may be repeated several times, depending on
the level
of nesting.
To determine whether the transformation must be performed, each expression in
the select list is analyzed to detect the presence (if any) of nested
aggregates (31). This
analysis comprises the following:
~ Detection of nested aggregates.
~ Detection of framed aggregates (nRAggregates) and report aggregates
(nXAggregates).
If nested aggregates are detected (32), the transformation is performed.
The transformation performs a second analysis of the select list to determine
how
the transformation should be performed. This analysis comprises:
~ Marking a nested aggregate for insertion into the inner select list.
6


CA 02468617 2004-05-27
~ Marking a report aggregate for insertion into the inner select list if it
does
not contain a nested aggregate or there are framed aggregates present
(nltAggregates > 0).
Detection of framed aggregates.
Once this is complete, the select list is traversed again, with the following
types of
expressions being added to the inner select list:
1. Simple column references.
2. Aggregates marked for insertion. For all other aggregates, the AT,
PARTITION BY, and ORDER BY clauses are processed according to the
rules outlined here.
3. Expressions that do not contain nested aggregates or framed aggregates.
All other expressions are traversed, and processed according to the rules
outlined here.
Once the nested aggregate transformation is performed, other query
transformations can be performed as required.
Example 1
In this example, a nested OLAP function appears in the operand of another OLAP
function, so the query must be transformed.
Original Quern
SELECT MAX( SUM( QTY ) OVER ( PARTITION BY SNO ) ) OVER ()
FROM SUPPLY
Transformed Uuery
SELECT MAX( CO ) OVER ()
FROM ( SELECT SUM{ QTY ) OVER ( PARTITION BY SNO ) CO
FROM SUPPLY ) T1
Explanation
Against Oracle9i, the original query will result in an error since the OLAP
function MAX contains a nested SUM function in its operand. To eliminate the
nesting, a
derived table T1 is created, and the SUM function is pushed into the select
list.
Example 2
7


CA 02468617 2004-05-27
In this example, a nested OLAP function appears in the operand of an OLAP
function. As well, the same nested OLAP function appears on its own in the
select list.
This query must be transformed.
S Ori~inalOuery
SELECT SNO, PNO, SUM( QTY ) OVER ( PARTITION BY SNO ),
MAX( SUM( QTY ) OVER ( PARTITION BY SNO ) ) OVER Q
FROM SUPPLY
Transformed Ouery
SELECT C0, C1, C2, MAX( C2 ) OVER Q
FROM ( SELECT SNO C0, PNO C1,
SUM( QTY ) OVER ( PARTITION BY SNO ) C2
FROM SUPPLY ) T1
Explanation
Against Oracle9i, the original query will result in an error since the OLAP
function MAX contains a nested SUM function in its operand. To eliminate the
nesting, a
derived table T1 is created, and the SUM function is pushed into the select
list. Note also
that a small optimization is performed with respect to the first OLAP function
(SUM} in
the select list of the original query, since it is identical to the operand of
the MAX
function. The SUM function only needs to be computed once.
Example 3
In this example, a nested OLAP function appears in the operand of an OLAP
function. As well, the nested OLAP function itself contains a nested OLAP
function in
its PARTITION BY clause. This query must be transformed.
Original Ouery
SELECT SNO, PNO,
SUM( QTY ) OVER { PARTITION BY
AVG( QTY ) OVER ( PARTITION BY JNO ) ),
MAX( SUM( QTY } OVER ( PARTITION BY
AVG( QTY ) OVER ( PARTITION BY JNO ) ) } OVER Q
8


CA 02468617 2004-05-27
FROM SUPPLY
Transformed Query
Pass 1
SELECT C0, Cl, C2, MAX( C2 ) OVER ()
FROM ( SELECT C0, Cl,
SUM( C2 ) OVER ( PARTITION BY
AVG( QTY ) OVER ( PARTITION BY JNO ) ) C2
FROM SUPPLY ) TO
Pass 2
SELECT C0, C1, C2, MAX( C2 ) OVER ()
FROM ( SELECT C0, C1, SUM( C2 ) OVER ( PARTITION BY C3 ) C2
FROM ( SELECT SNO C0, PNO Cl, QTY C2,
AVG( QTY ) OVER ( PARTITION BY JNO ) C3
FROM SUPPLY ) TO ) T1
Explanation
Against Oracle9i, the original query will result in an error since the OLAP
functions SUM and MAX contain nested OLAP functions. This particular example
requires 2 passes. In the first pass, the SUM function is pushed into a
derived table to
eliminate all nested aggregation in the top-level select list. The second
pass, required
since the SUM function contains a nested AVG function in its PARTITION BY
clause,
results in the AVG function being moved into another derived table.
Example 4
In this example, a nested OLAP function appears in the operand of an OLAP
function. As well, the select list contains a framed aggregate that computes a
cumulative
SUM. This query must be transformed.
Original Query
SELECT SNO, PNO,
SUM( QTY ) OVER(
ORDER BY SNO, PNO ROWS UNBOUNDED PRECEDING ),
9


CA 02468617 2004-05-27
SUM( QTY ) OVER ( PARTITION BY SNO ),
MAX( SUM( QTY ) OVER ( PARTITION BY SNO ) OVER ()
FROM SUPPLY
Transformed Ouery
Pass 1
SELECT C0, C 1,
SUM( C2 ) OVER(
ORDER BY C1, C2 ROWS UNBOUNDED PRECEDING ) C2,
C3, C4
FROM ( SELECT SNO C0, PNO C1, QTY C2
SUM( QTY ) OVER ( PARTITION BY SNO ) C3,
MAX( SUM( QTY ) OVER ( PARTITION BY SNO )
OVER Q C4
FROM SUPPLY ) TO
Pass 2
SELECT C0, C1,
SUM( C2 ) OVER( ORDER BY C1, C2
ROWS UNBOUNDED PRECEDING ) C2,
C3, C4
FROM ( SELECT C0, C1, C2, C3, MAX( C3 ) OVER() C4
FROM ( SELECT SNO C0, PNO C1, QTY C2,
SUM( QTY ) OVER ( PARTITION BY SNO ) C3
FROM SUPPLY ) TO ) T1
Explanation
Against Oracle9i, the original query will result in an error since the OLAP
function MAX contains a nested SUM function in its operand. This particular
example
requires 2 passes. In the first pass, the SUM and MAX functions are pushed
into a
derived table since the main select list contains a framed aggregate. The
framed
aggregate is left in the main select list since it requires the data to be
ordered a specific
way to compute the value. If this aggregate was pushed into the inner select
list, any
sorting required to compute aggregates in the main select may disrupt the
ordering of


CA 02468617 2004-05-27
values produced by the framed aggregate. The second pass, required since the
MAX
function contains a nested SUM function in its operand, results in the SUM
function
being moved into another derived table.
The systems and methods according to the present invention may be implemented
by any hardware, software or a combination of hardware and software having the
functions described above. The software code, either in its entirety or a part
thereof, may
be stored in a computer readable memory. Further, a computer data signal
representing
the software code that may be embedded in a carrier wave may be transmitted
via a
communication network. Such a computer readable memory and a computer data
signal
are also within the scope of the present invention, as well as the hardware,
software and
the combination thereof.
While particular embodiments of the present invention have been shown and
described, changes and modifications may be made to such embodiments without
departing from the true scope of the invention.
11

Representative Drawing
A single figure which represents the drawing illustrating the invention.
Administrative Status

For a clearer understanding of the status of the application/patent presented on this page, the site Disclaimer , as well as the definitions for Patent , Administrative Status , Maintenance Fee  and Payment History  should be consulted.

Administrative Status

Title Date
Forecasted Issue Date 2010-06-29
(22) Filed 2004-05-27
Examination Requested 2004-05-27
(41) Open to Public Inspection 2004-11-27
(45) Issued 2010-06-29

Abandonment History

There is no abandonment history.

Maintenance Fee

Last Payment of $458.08 was received on 2022-05-16


 Upcoming maintenance fee amounts

Description Date Amount
Next Payment if small entity fee 2023-05-29 $253.00
Next Payment if standard fee 2023-05-29 $624.00

Note : If the full payment has not been received on or before the date indicated, a further fee may be required which may be one of the following

  • the reinstatement fee;
  • the late payment fee; or
  • additional fee to reverse deemed expiry.

Patent fees are adjusted on the 1st of January every year. The amounts above are the current amounts if received by December 31 of the current year.
Please refer to the CIPO Patent Fees web page to see all current fee amounts.

Payment History

Fee Type Anniversary Year Due Date Amount Paid Paid Date
Request for Examination $800.00 2004-05-27
Application Fee $400.00 2004-05-27
Registration of a document - section 124 $100.00 2004-09-29
Maintenance Fee - Application - New Act 2 2006-05-29 $100.00 2006-04-27
Maintenance Fee - Application - New Act 3 2007-05-28 $100.00 2007-04-27
Maintenance Fee - Application - New Act 4 2008-05-27 $100.00 2008-04-25
Maintenance Fee - Application - New Act 5 2009-05-27 $200.00 2009-04-27
Registration of a document - section 124 $100.00 2009-07-03
Registration of a document - section 124 $100.00 2009-07-03
Registration of a document - section 124 $100.00 2009-07-03
Registration of a document - section 124 $100.00 2009-07-03
Maintenance Fee - Application - New Act 6 2010-05-27 $200.00 2010-03-26
Final Fee $300.00 2010-04-01
Maintenance Fee - Patent - New Act 7 2011-05-27 $400.00 2011-07-27
Registration of a document - section 124 $100.00 2012-10-16
Maintenance Fee - Patent - New Act 8 2012-05-28 $400.00 2013-05-27
Maintenance Fee - Patent - New Act 9 2013-05-27 $200.00 2013-05-27
Maintenance Fee - Patent - New Act 10 2014-05-27 $250.00 2014-04-24
Registration of a document - section 124 $100.00 2014-10-21
Maintenance Fee - Patent - New Act 11 2015-05-27 $250.00 2015-04-23
Maintenance Fee - Patent - New Act 12 2016-05-27 $250.00 2016-04-22
Maintenance Fee - Patent - New Act 13 2017-05-29 $250.00 2017-05-15
Maintenance Fee - Patent - New Act 14 2018-05-28 $250.00 2018-05-14
Maintenance Fee - Patent - New Act 15 2019-05-27 $450.00 2019-05-14
Maintenance Fee - Patent - New Act 16 2020-05-27 $450.00 2020-05-19
Maintenance Fee - Patent - New Act 17 2021-05-27 $459.00 2021-05-17
Maintenance Fee - Patent - New Act 18 2022-05-27 $458.08 2022-05-16
Owners on Record

Note: Records showing the ownership history in alphabetical order.

Current Owners on Record
SAP SE
Past Owners on Record
COGNOS INCORPORATED
COGNOS ULC
IBM INTERNATIONAL GROUP BV
INTERNATIONAL BUSINESS MACHINES CORPORATION
SAP AG
STYLES, MICHAEL E.
Past Owners that do not appear in the "Owners on Record" listing will appear in other documentation within the application.
Documents

To view selected files, please enter reCAPTCHA code :



To view images, click a link in the Document Description column. To download the documents, select one or more checkboxes in the first column and then click the "Download Selected in PDF format (Zip Archive)" or the "Download Selected as Single PDF" button.

List of published and non-published patent-specific documents on the CPD .

If you have any difficulty accessing content, you can call the Client Service Centre at 1-866-997-1936 or send them an e-mail at CIPO Client Service Centre.


Document
Description 
Date
(yyyy-mm-dd) 
Number of pages   Size of Image (KB) 
Abstract 2004-05-27 1 12
Description 2004-05-27 11 515
Claims 2004-05-27 3 96
Drawings 2004-05-27 3 42
Representative Drawing 2004-11-01 1 7
Cover Page 2004-11-05 1 31
Claims 2006-01-18 3 117
Claims 2007-08-07 4 118
Claims 2008-09-03 5 188
Claims 2009-12-17 4 174
Cover Page 2010-06-02 1 32
Correspondence 2004-06-30 1 26
Assignment 2004-05-27 2 78
Prosecution-Amendment 2008-03-03 3 119
Fees 2006-04-27 1 38
Fees 2008-04-25 1 39
Assignment 2004-09-29 3 130
Prosecution-Amendment 2005-07-18 4 153
Prosecution-Amendment 2006-01-18 10 466
Correspondence 2010-04-01 1 24
Prosecution-Amendment 2007-02-05 4 169
Prosecution-Amendment 2007-01-29 1 30
Fees 2007-04-27 1 38
Prosecution-Amendment 2007-08-07 8 280
Assignment 2008-08-06 41 1,343
Prosecution-Amendment 2008-09-03 10 412
Prosecution-Amendment 2008-12-18 1 33
Prosecution-Amendment 2009-06-22 2 37
Assignment 2009-07-03 21 604
Fees 2009-04-27 1 41
Correspondence 2011-08-08 1 19
Fees 2011-07-27 1 29
Prosecution-Amendment 2009-12-17 2 84
Correspondence 2009-12-17 2 72
Correspondence 2010-01-20 1 15
Correspondence 2010-01-20 1 22
Correspondence 2011-08-29 1 15
Fees 2011-07-27 1 30
Correspondence 2011-08-24 1 26
Correspondence 2011-08-08 1 27
Assignment 2012-10-16 10 368
Correspondence 2012-10-16 4 160
Correspondence 2012-11-02 1 13
Correspondence 2012-11-02 1 16
Correspondence 2013-05-13 1 27
Correspondence 2013-05-21 1 28
Fees 2013-05-27 4 144
Fees 2013-05-27 1 37
Correspondence 2013-05-27 3 101
Correspondence 2013-07-26 1 42
Correspondence 2013-08-29 1 14
Assignment 2014-10-21 25 952