US7805422B2 - Change notification query multiplexing - Google Patents
Change notification query multiplexing Download PDFInfo
- Publication number
- US7805422B2 US7805422B2 US11/067,778 US6777805A US7805422B2 US 7805422 B2 US7805422 B2 US 7805422B2 US 6777805 A US6777805 A US 6777805A US 7805422 B2 US7805422 B2 US 7805422B2
- Authority
- US
- United States
- Prior art keywords
- change
- query
- data
- parameter
- parameter table
- Prior art date
- Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
- Expired - Fee Related, expires
Links
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F16/00—Information retrieval; Database structures therefor; File system structures therefor
- G06F16/20—Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
- G06F16/23—Updating
- G06F16/2358—Change logging, detection, and notification
Definitions
- an exemplary general purpose computing system includes a conventional personal computer 20 or the like, including a processing unit 21 , a system memory 22 , and a system bus 23 that couples various system components including the system memory to the processing unit 21 .
- the system bus 23 may be any of several types of bus structures including a memory bus or memory controller, a peripheral bus, and a local bus using any of a variety of bus architectures.
- the system memory includes read only memory (ROM) 24 and random access memory (RAM) 25 .
- ROM read only memory
- RAM random access memory
- a number of program modules may be stored on the hard disk, magnetic disk 29 , optical disk 31 , ROM 24 or RAM 25 , including an operating system 35 , one or more application programs 36 , other program modules 37 and program data 38 .
- a user may enter commands and information into the personal computer 20 through input devices such as a keyboard 40 and pointing device 42 .
- Other input devices may include a microphone, joystick, game pad, satellite disk, scanner or the like.
- serial port interface 46 that is coupled to the system bus, but may be connected by other interfaces, such as a parallel port, game port or universal serial bus (USB).
- the watcher class can notify your application of changes to different aspects of WinFS objects, including the following:
- Event data is returned when a watcher raises an event (because it is determined that the change for which notification was requested has occurred).
- This event data includes data which allows the requesting entity to understand what has occurred, e.g., the identity of the item changed, the type of change (add, modify, delete), etc.
- Appendix A includes actual SQL code which can implement the such a query.
- the SQL code in Appendix A includes a waitfor query which waits for any item changes to occur in a folder item (folderId).
- the first portion (“SELECT 1 . . . ”) is a query which returns when an item is added to the folder.
- the second portion (“SELECT 2 . . . ”) is a query which returns when an item in the folder is modified.
- the third portion (“SELECT 3 . . . ”) is a query which returns when an item in the folder is deleted.
- FIG. 3 is a block diagram of a computer system according to one embodiment of the invention.
- a data store 310 is implemented on a database engine 320 .
- the data store 310 stores data.
- the data store is a relational database.
- the database engine 320 controls the storage of data in the data store 310 .
- the database engine 320 also accepts queries for data stored in the data store 310 , evaluates the queries, and returns data from the data store 310 in response.
- One such data store 310 and data engine 320 is available from Microsoft Corporation in SQL database products.
- the data store 310 and data engine 320 are used as a central storage system for computer system 300 .
- the data store 310 provides the storage for the computer system 300
- the database engine 320 among other tasks, provides storage functionality for application programs 306 .
- One way in which functionality is provided by the database engine 320 for application programs 306 is by exposing application programs interfaces (APIs) 315 .
- One of these APIs 315 is watcher API 315 ( a ).
- the watcher API 315 ( a ) allows a watcher to be requested by an application program 306 .
- the application program 306 can request a watcher in order to request notification whenever a specific change occurs to data in the data store 310 .
- an application program 306 may request to be notified when a document is modified.
- an application program 306 may specify a folder tree, and request notification when any document is modified under that folder tree.
- FIG. 4( b ) illustrates parameter table 400 after two change notification requests have been received and multiplexed.
- FIG. 4( b ) illustrates parameter table 400 after two change notification requests have been received and multiplexed.
- FIG. 4( b ) when an additional change request is received, it is be multiplexed by inserting an additional entry 410 ( b ) into the parameter table 400 which describes the change for which notification has been requested by the additional change request.
- the query which has been issued to the database engine 320 is unchanged.
- FIG. 4( c ) which illustrates parameter table 400 after more than two change notification requests have been received, additional entries 410 ( c ) through 410 ( n ) have been inserted into the parameter table 400 .
- tables can be created as a temporary table or a regular table.
- the data structure is a temporary table; in another, it is a regular table.
- complex change requests can be described in more than one entry 410 into parameter table 400 .
- a change request may be associated with more than one entry 410 into the parameter table 400 .
- An entry 410 into the parameter table will contain information necessary to determine what changes the change notification request is directed towards. This includes information about which items in the data store 310 to watch. Additionally, in various embodiments, the entries 410 may include some or all of:
- each change notification request is tracked.
- the query returns a result indicating a change responsive to one or more change notification requests, the appropriate requestor(s) are notified of the change that has occurred.
- FIG. 5 is a flow diagram depicting a method of handling multiple change notification requests according to one embodiment of the invention.
- an initial change notification request is received 500 .
- the initial change request is received when a requesting application program 306 invokes a method of an application programming interface (API).
- API application programming interface
- a query is issued to the database engine 320 . This query will return if the change (or one of the changes) indicated in the initial change request has occurred.
- an additional change notification request is received, step 520 .
- the already-issued query is altered. This alteration allows the query to serve both the initial change notification request and the additional change notification requests by returning to indicate a change if any change specified in the initial change request or the additional change request occurs. Further change notification requests may be received and added to the query, as indicated by dashed arrow 540 .
- the parameter table is modified by inserting rows corresponding to the new request. Because the query includes a reference to the parameter table, as a net result, the existing query will also return changes for the new request.
- the query includes a reference to a data structure such as parameter table 410 .
- Step 530 may, in one such embodiment, be accomplished solely by adding data from the additional change notification request to the data structure. In an alternate embodiment, step 530 may be accomplished by adding data to the change notification request in addition to other actions.
- FIG. 6 is a flow diagram of a method of handling a change notification request according to an embodiment of the invention in which multiple data stores exist to which change notifications may be directed, and in which each application or requesting entity has a security context, and in which only requests from entities with the same security context should be multiplexed.
- a change notification request is received, 600 , an examination is made to determine whether a previous request has been made for a change notification to the same store and with the same security context 610 . If it has not been, then a new parameter table is created, and a new query is issued, 620 . If it has been, then the relevant parameter table is modified 630 .
- the present invention may also be embodied in the form of program code that is transmitted over some transmission medium, such as over electrical wiring or cabling, through fiber optics, over a network, including the Internet or an intranet, or via any other form of transmission, wherein, when the program code is received and loaded into and executed by a machine, such as a computer, the machine becomes an apparatus for practicing the invention.
- program code When implemented on a general-purpose processor, the program code combines with the processor to provide a unique apparatus that operates analogously to specific logic circuits.
Landscapes
- Engineering & Computer Science (AREA)
- Theoretical Computer Science (AREA)
- Data Mining & Analysis (AREA)
- Databases & Information Systems (AREA)
- Physics & Mathematics (AREA)
- General Engineering & Computer Science (AREA)
- General Physics & Mathematics (AREA)
- Information Retrieval, Db Structures And Fs Structures Therefor (AREA)
Abstract
Description
-
- identification information for the change notification request (watcher id)
- identification information for the database connection session (session id)
- lower water mark (a time stamp indicating a certain time, changes occurring will only be responsive to the change notification request if they occurred after the lower water mark time); and
- an indication of whether updates, additions, and/or deletions are changes relevant to the change notification request.
APPENDIX A |
Waitfor( |
(SELECT 1 as eventType, t.TargetItemId, t._CreationLocalTS | |
as timeStamp, CONVERT(bigint, min_active_rowversion( )) as | |
lwm, t._PathHandle | |
[System.Storage.Store].[Tombstone!ItemsInDomain](@folderId) |
t |
WHERE |
(@ItemType IS NULL) OR | |
([System.Storage.Store].[IsOfItemType](t.TargetItemId, | |
@ItemType) = 1)) AND | |
t._TombstoneStatus = 0 AND | |
t._CreationLocalTS >= @LowWatermark AND | |
t._CreationLocalTS not IN | |
(select ts From | |
tempdb.dbo.[System.Storage.Watcher.Duplicates] d | |
WHERE d.SessionId = @SqlSessionId AND d.ItemId = | |
t.TargetItemId AND d.ExtOrRelId = ‘00000000-0000- | |
0000-0000-000000000000’) |
UNION ALL | |
SELECT 2 as eventType, t.TargetItemId, | |
i._ChangeTrackingInfo.LastUpdateLocalTS as timeStamp, | |
CONVERT(bigint, min_active_rowversion( )) as lwm, | |
t._PathHandle | |
[System.Storage.Store].[Tombstone!ItemsInDomain](@folderId) |
t |
INNER JOIN [System.Storage.Store].[Master!Item] i ON |
t.TargetItemId = i.ItemId |
WHERE |
((@ItemType IS NULL) OR | |
([System.Storage.Store].[IsOfItemType](t.TargetItemId, | |
@ItemType) = 1)) AND | |
i._ChangeTrackingInfo.LastUpdateLocalTS >= |
@LowWatermark AND |
i._ChangeTrackingInfo.LastUpdateLocalTS > | |
i._ChangeTrackingInfo.CreationLocalTS AND | |
i._ChangeTrackingInfo.LastUpdateLocalTS NOT IN |
(select ts From | |
tempdb.dbo.[System.Storage.Watcher.Duplicates] d | |
WHERE d.SessionId = @SqlSessionId AND d.ItemId = | |
i.ItemId AND d.ExtOrRelId = ‘00000000-0000-0000- | |
0000-000000000000’) |
UNION ALL | |
SELECT 3 as eventType, t.TargetItemId, | |
t._LastUpdateLocalTS as timeStamp, CONVERT(bigint, | |
min_active_rowversion( )) as lwm, t._PathHandle | |
FROM | |
[System.Storage.Store].[Tombstone!ItemsInDomain](@folderId) |
t |
WHERE |
((@ItemType IS NULL) OR | |
([System.Storage.Store].[IsOfItemType](t.TargetItemId, | |
@ItemType) = 1)) AND | |
t._LastUpdateLocalTS>= @LowWatermark AND | |
t._TombstoneStatus <> 0 AND | |
t._LastUpdateLocalTS not IN | |
(select ts From | |
tempdb.dbo.[System.Storage.Watcher.Duplicates] d WHERE | |
d.SessionId = @SqlSessionId AND d.ItemId = t.TargetItemId | |
AND d.ExtOrRelId = ‘00000000-0000-0000-0000-000000000000’) | |
)ORDER BY timeStamp ASC |
), timeout 30000 |
APPENDIX B |
WAITFOR(( SELECT w.WatcherId, 1 as eventType, t.TargetItemId, |
NULL, t._CreationLocalTS as timeStamp, CONVERT(bigint, |
min_active_rowversion( )) as lwm, t._PathHandle |
FROM tempdb.dbo.[System.Storage.Watcher.Parameters] w CROSS |
APPLY |
[System.Storage.Store].[Tombstone!ItemsInDomain](w.DomainRoot) t |
WHERE |
w.SessionId = @SqlSessionId AND |
w.WatchAdd = 1 AND |
w.WatcherDepth = 3 AND |
(w.WatchItem = 1) AND ((w.ItemType IS NULL) OR |
([System.Storage.Store].[IsOfItemType](t.TargetItemId, |
w.ItemType) = 1)) AND |
t._TombstoneStatus = 0 AND |
t._CreationLocalTS >= w.LowWatermark AND |
t._CreationLocalTS not IN |
(select ts From tempdb.dbo.[System.Storage.Watcher.Duplicates] |
d WHERE d.SessionId = @SqlSessionId AND WatcherId = w.WatcherId |
AND d.ItemId = t.TargetItemId AND d.ExtOrRelId = ‘00000000- |
0000-0000-0000-000000000000’) |
UNION ALL |
SELECT w.WatcherId, 2 as eventType, t.TargetItemId, NULL, |
i._ChangeTrackingInfo.LastUpdateLocalTS as timeStamp, |
CONVERT(bigint, min_active_rowversion( )) as lwm, t._PathHandle |
FROM tempdb.dbo.[System.Storage.Watcher.Parameters] w CROSS |
APPLY |
[System.Storage.Store].[Tombstone!ItemsInDomain](w.DomainRoot) t |
INNER JOIN [System.Storage.Store].[Master!Item] i ON |
t.TargetItemId = i.ItemId |
WHERE |
w.SessionId = @SqlSessionId AND |
w.WatchUpdate = 1 AND |
w.WatcherDepth = 3 AND |
(w.WatchItem = 1) AND ((w.ItemType IS NULL) OR |
([System.Storage.Store].[IsOfItemType](t.TargetItemId, |
w.ItemType) = 1)) AND |
i._ChangeTrackingInfo.LastUpdateLocalTS >= w.LowWatermark AND |
i._ChangeTrackingInfo.LastUpdateLocalTS > |
i._ChangeTrackingInfo.CreationLocalTS AND |
i._ChangeTrackingInfo.LastUpdateLocalTS NOT IN |
(select ts From tempdb.dbo.[System.Storage.Watcher.Duplicates] |
d WHERE d.SessionId = @SqlSessionId AND WatcherId = w.WatcherId |
AND d.ItemId = i.ItemId AND d.ExtOrRelId = ‘00000000-0000-0000- |
0000-000000000000’) |
UNION ALL |
SELECT w.WatcherId, 3 as eventType, t.TargetItemId, NULL, |
t._LastUpdateLocalTS as timeStamp, CONVERT(bigint, |
min_active_rowversion( )) as lwm, t._PathHandle |
FROM tempdb.dbo.[System.Storage.Watcher.Parameters] w CROSS |
APPLY |
[System.Storage.Store].[Tombstone!ItemsInDomain](w.DomainRoot) t |
WHERE |
w.SessionId = @SqlSessionId AND |
w.WatchDelete = 1 AND |
w.WatcherDepth = 3 AND |
(w.WatchItem = 1) AND ((w.ItemType IS NULL) OR |
([System.Storage.Store].[IsOfItemType](t.TargetItemId, |
w.ItemType) = 1)) AND |
t._LastUpdateLocalTS>= w.LowWatermark AND |
t._TombstoneStatus <> 0 AND |
t._LastUpdateLocalTS not IN |
(select ts From tempdb.dbo.[System.Storage.Watcher.Duplicates] |
d WHERE d.SessionId = @SqlSessionId AND WatcherId = w.WatcherId |
AND d.ItemId = t.TargetItemId AND d.ExtOrRelId = ‘00000000- |
0000-0000-0000-000000000000’) |
UNION ALL |
SELECT w.WatcherId, 4 as eventType, e.ItemId, e.TypeFamilyId, |
e._ChangeTrackingInfo.CreationLocalTS as timeStamp, |
CONVERT(bigint, min_active_rowversion( )) as lwm, t._PathHandle |
FROM tempdb.dbo.[System.Storage.Watcher.Parameters] w CROSS |
APPLY |
[System.Storage.Store].[Tombstone!ItemsInDomain](w.DomainRoot) t |
INNER JOIN [System.Storage.Store].[Master!Extension] e ON |
t.TargetItemId = e.ItemId |
WHERE w.SessionId = @SqlSessionId AND w.WatchAdd = 1 AND |
w.WatcherDepth = 3 AND |
(w.WatchExtension = 1) AND ((w.ExtensionType IS NULL) OR |
([System.Storage.Store].[IsOfExtensionType](e.ItemId, |
e.TypeFamilyId, w.ExtensionType) = 1)) AND |
e._ChangeTrackingInfo.CreationLocalTS >= w.LowWatermark AND |
e._ChangeTrackingInfo.CreationLocalTS not IN |
(select ts From tempdb.dbo.[System.Storage.Watcher.Duplicates] |
d WHERE d.SessionId = @SqlSessionId AND WatcherId = w.WatcherId |
AND d.ItemId = e.ItemId AND d.ExtOrRelId = e.TypeFamilyId) |
UNION ALL |
SELECT w.WatcherId, 5 as eventType, e.ItemId, e.TypeFamilyId, |
e._ChangeTrackingInfo.LastUpdateLocalTS as timeStamp, |
CONVERT(bigint, min_active_rowversion( )) as lwm, t._PathHandle |
FROM tempdb.dbo.[System.Storage.Watcher.Parameters] w CROSS |
APPLY |
[System.Storage.Store].[Tombstone!ItemsInDomain](w.DomainRoot) t |
INNER JOIN [System.Storage.Store].[Master!Extension] e ON |
t.TargetItemId = e.ItemId |
WHERE |
w.SessionId = @SqlSessionId AND |
w.WatchUpdate = 1 AND |
w.WatcherDepth = 3 AND |
(w.WatchExtension = 1) AND ((w.ExtensionType IS NULL) OR |
([System.Storage.Store].[IsOfExtensionType](e. ItemId, |
e.TypeFamilyId, w.ExtensionType) = 1)) AND |
e._ChangeTrackingInfo.LastUpdateLocalTS >= w.LowWatermark AND |
e._ChangeTrackingInfo.LastUpdateLocalTS > |
e._ChangeTrackingInfo.CreationLocalTS AND |
e._ChangeTrackingInfo.LastUpdateLocalTS not IN |
(select ts From tempdb.dbo.[System.Storage.Watcher.Duplicates] |
d WHERE d.SessionId = @SqlSessionId AND WatcherId = w.WatcherId |
AND d.ItemId = e.ItemId AND d.ExtOrRelId = e.TypeFamilyId) |
UNION ALL |
SELECT w.WatcherId, 6 as eventType, e.ItemId, e.TypeFamilyId, |
e._ChangeTrackingInfo.LastUpdateLocalTS as timeStamp, |
CONVERT(bigint, min_active_rowversion( )) as lwm, t._PathHandle |
FROM tempdb.dbo.[System.Storage.Watcher.Parameters] w CROSS |
APPLY |
[System.Storage.Store].[Tombstone!ItemsInDomain](w.DomainRoot) t |
INNER JOIN [System.Storage.Store].[Tombstone!Extension] e ON |
t.TargetItemId = e.ItemId |
WHERE |
w.SessionId = @SqlSessionId AND |
w.WatchDelete = 1 AND |
w.WatcherDepth = 3 AND |
(w.WatchExtension = 1) AND ((w.ExtensionType IS NULL) OR |
([System.Storage.Store].[IsOfExtensionType](e.ItemId, |
e.TypeFamilyId, w.ExtensionType) = 1)) AND |
e._TombstoneStatus <>0 AND |
e._ChangeTrackingInfo.LastUpdateLocalTS >= w.LowWatermark AND |
e._ChangeTrackingInfo.LastUpdateLocalTS not IN |
(select ts From tempdb.dbo.[System. Storage.Watcher.Duplicates] |
d WHERE d.SessionId = @SqlSessionId AND WatcherId = w.WatcherId |
AND d.ItemId = e.ItemId AND d.ExtOrRelId = e.TypeFamilyId) |
UNION ALL |
SELECT w.WatcherId, 7 as eventType, r.SourceItemId, |
r.relationshipId, r.ChangeTrackingInfo.CreationLocalTS as |
timeStamp, CONVERT(bigint, min_active_rowversion( )) as lwm, |
t._PathHandle |
FROM tempdb.dbo.[System.Storage.Watcher.Parameters] w CROSS |
APPLY |
[System.Storage.Store].[Tombstone!ItemsInDomain](w.DomainRoot) t |
INNER JOIN [System.Storage.Store].[Master!Relationship] r ON |
t.TargetItemId = r.SourceItemId |
WHERE |
w.SessionId = @SqlSessionId AND |
w.WatchAdd = 1 AND |
w.WatcherDepth = 3 AND |
(w.WatchRelation = 1) AND ((w.RelationshipType IS NULL) OR |
([System.Storage.Store].[IsOfRelationshipType](r.SourceItemId, |
r.relationshipId, w.RelationshipType) = 1)) AND |
r._ChangeTrackingInfo.CreationLocalTS >= w.LowWatermark AND |
r._ChangeTrackingInfo.CreationLocalTS not IN |
(select ts From tempdb.dbo.[System.Storage.Watcher.Duplicates] |
d WHERE SessionId = @SqlSessionId AND WatcherId = w.WatcherId |
AND d.ItemId = r.SourceItemId AND d.ExtOrRelId = |
r.RelationshipId) |
UNION ALL |
SELECT w.WatcherId, 8 as eventType, r.SourceItemId, |
r.relationshipId, r._ChangeTrackingInfo.LastUpdateLocalTS as |
timeStamp, CONVERT(bigint, min_active_rowversion( )) as lwm, |
t._PathHandle |
FROM tempdb.dbo.[System.Storage.Watcher.Parameters] w CROSS |
APPLY |
[System.Storage.Store].[Tombstone!ItemsInDomain](w.DomainRoot) t |
INNER JOIN [System.Storage.Store].[Master!Relationship] r ON |
t.TargetItemId = r.SourceItemId |
WHERE |
w.SessionId = @SqlSessionId AND |
w.WatchUpdate = 1 AND |
w.WatcherDepth = 3 AND |
(w.WatchRelation = 1) AND ((w.RelationshipType IS NULL) OR |
([System.Storage.Store].[IsOfRelationshipType](r.SourceItemId, |
r.relationshipId, w.RelationshipType) = 1)) AND |
r._ChangeTrackingInfo.LastUpdateLocalTS >= w.LowWatermark AND |
r._ChangeTrackingInfo.LastUpdateLocalTS > |
r._ChangeTrackingInfo.CreationLocalTS AND |
r._ChangeTrackingInfo.LastUpdateLocalTS not IN |
(select ts From tempdb.dbo.[System.Storage.Watcher.Duplicates] |
d WHERE SessionId = @SqlSessionId AND WatcherId = w.WatcherId |
AND d.ItemId = r.SourceItemId AND d.ExtOrRelId = |
r.RelationshipId) |
UNION ALL |
SELECT w.WatcherId, 9 as eventType, r.SourceItemId, |
r.relationshipId, r._ChangeTrackingInfo.LastUpdateLocalTS as |
timeStamp, CONVERT(bigint, min_active_rowversion( )) as lwm, |
t._PathHandle |
FROM tempdb.dbo.[System.Storage.Watcher.Parameters] w CROSS |
APPLY |
[System.Storage.Store].[Tombstone!ItemsInDomain](w.DomainRoot) t |
INNER JOIN [System.Storage.Store].[Tombstone!Relationship] r ON |
t.TargetItemId = r.SourceItemId |
WHERE w.SessionId = @SqlSessionId AND |
w.WatchDelete = 1 AND |
w.WatcherDepth = 3 AND |
(w.WatchRelation = 1) AND ((w.RelationshipType IS NULL) OR |
([System.Storage.Store].[IsOfRelationshipType] (r.SourceItemId, |
r.relationshipId, w.RelationshipType) = 1)) AND |
r._TombstoneStatus <>0 AND |
r._ChangeTrackingInfo.LastUpdateLocalTS >= w.LowWatermark AND |
r._ChangeTrackingInfo.LastUpdateLocalTS not IN |
(select ts From tempdb.dbo.[System.Storage.Watcher.Duplicates] |
d WHERE SessionId = @SqlSessionId AND WatcherId = w.WatcherId |
AND d.ItemId = r.SourceItemId AND d.ExtOrRelId = |
r.RelationshipId) |
)ORDER BY WatcherId, timeStamp ASC |
), timeout 30000 |
Claims (14)
Priority Applications (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
US11/067,778 US7805422B2 (en) | 2005-02-28 | 2005-02-28 | Change notification query multiplexing |
Applications Claiming Priority (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
US11/067,778 US7805422B2 (en) | 2005-02-28 | 2005-02-28 | Change notification query multiplexing |
Publications (2)
Publication Number | Publication Date |
---|---|
US20060195456A1 US20060195456A1 (en) | 2006-08-31 |
US7805422B2 true US7805422B2 (en) | 2010-09-28 |
Family
ID=36933010
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
US11/067,778 Expired - Fee Related US7805422B2 (en) | 2005-02-28 | 2005-02-28 | Change notification query multiplexing |
Country Status (1)
Country | Link |
---|---|
US (1) | US7805422B2 (en) |
Cited By (3)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US20100145913A1 (en) * | 2008-12-08 | 2010-06-10 | Bank Of America Corporation | Data environment change notification |
US20100217872A1 (en) * | 2009-02-26 | 2010-08-26 | Microsoft Corporation | Notification model over a server-to-server connection pool |
US20110125648A1 (en) * | 2009-11-20 | 2011-05-26 | Michael Price | Method and apparatus for maintaining high data integrity and for providing a secure audit for fraud prevention and detection |
Families Citing this family (5)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US8131739B2 (en) | 2003-08-21 | 2012-03-06 | Microsoft Corporation | Systems and methods for interfacing application programs with an item-based storage platform |
US7590643B2 (en) | 2003-08-21 | 2009-09-15 | Microsoft Corporation | Systems and methods for extensions and inheritance for units of information manageable by a hardware/software interface system |
US8166101B2 (en) | 2003-08-21 | 2012-04-24 | Microsoft Corporation | Systems and methods for the implementation of a synchronization schemas for units of information manageable by a hardware/software interface system |
US8238696B2 (en) | 2003-08-21 | 2012-08-07 | Microsoft Corporation | Systems and methods for the implementation of a digital images schema for organizing units of information manageable by a hardware/software interface system |
US20170161288A1 (en) * | 2015-12-02 | 2017-06-08 | OSNEXUS Corporation | Data analytics engine for facilitating real-time subscriber based data analysis |
Citations (194)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US5097533A (en) | 1988-11-29 | 1992-03-17 | International Business Machines Corporation | System and method for interfacing computer application programs written in different languages to a software system |
US5388257A (en) | 1991-07-24 | 1995-02-07 | At&T Corp. | Method and apparatus for operating a computer based file system |
US5442779A (en) | 1992-06-25 | 1995-08-15 | International Business Machines Corporation | System and method for enabling an interpreted programming language to be executed in a database management system environment |
US5485617A (en) | 1993-12-13 | 1996-01-16 | Microsoft Corporation | Method and system for dynamically generating object connections |
US5630114A (en) | 1993-01-22 | 1997-05-13 | Serra; Bill | Database management system embedded in an operating system command |
US5684984A (en) | 1994-09-29 | 1997-11-04 | Apple Computer, Inc. | Synchronization and replication of object databases |
US5742813A (en) | 1994-11-10 | 1998-04-21 | Cadis, Inc. | Method and apparatus for concurrency in an object oriented database using lock inheritance based on class objects |
US5758153A (en) | 1994-09-08 | 1998-05-26 | Object Technology Licensing Corp. | Object oriented file system in an object oriented operating system |
US5774717A (en) | 1995-12-15 | 1998-06-30 | International Business Machines Corporation | Method and article of manufacture for resynchronizing client/server file systems and resolving file system conflicts |
US5799307A (en) | 1995-10-06 | 1998-08-25 | Callware Technologies, Inc. | Rapid storage and recall of computer storable messages by utilizing the file structure of a computer's native operating system for message database organization |
US5806074A (en) | 1996-03-19 | 1998-09-08 | Oracle Corporation | Configurable conflict resolution in a computer implemented distributed database |
US5815415A (en) | 1996-01-19 | 1998-09-29 | Bentley Systems, Incorporated | Computer system for portable persistent modeling |
US5832496A (en) | 1995-10-12 | 1998-11-03 | Ncr Corporation | System and method for performing intelligent analysis of a computer database |
US5842213A (en) | 1997-01-28 | 1998-11-24 | Odom; Paul S. | Method for modeling, storing, and transferring data in neutral form |
US5845067A (en) | 1996-09-09 | 1998-12-01 | Porter; Jack Edward | Method and apparatus for document management utilizing a messaging system |
US5864683A (en) | 1994-10-12 | 1999-01-26 | Secure Computing Corporartion | System for providing secure internetwork by connecting type enforcing secure computers to external network for limiting access to data based on user and process access rights |
US5893106A (en) | 1997-07-11 | 1999-04-06 | International Business Machines Corporation | Object oriented server process framework with interdependent-object creation |
US5900870A (en) | 1989-06-30 | 1999-05-04 | Massachusetts Institute Of Technology | Object-oriented computer user interface |
US5905987A (en) | 1997-03-19 | 1999-05-18 | Microsoft Corporation | Method, data structure, and computer program product for object state storage in a repository |
US5937402A (en) | 1997-06-19 | 1999-08-10 | Ontos, Inc. | System for enabling access to a relational database from an object oriented program |
US5937406A (en) | 1997-01-31 | 1999-08-10 | Informix Software, Inc. | File system interface to a database |
US5937189A (en) | 1996-11-12 | 1999-08-10 | International Business Machines Corporation | Object oriented framework mechanism for determining configuration relations |
US5953514A (en) | 1995-10-23 | 1999-09-14 | Apple Computer, Inc. | Method and apparatus for transparent remote execution of commands |
US6006234A (en) | 1997-10-31 | 1999-12-21 | Oracle Corporation | Logical groupings within a database |
US6018342A (en) | 1995-07-03 | 2000-01-25 | Sun Microsystems, Inc. | Automatically generated content-based history mechanism |
EP0974895A2 (en) | 1998-07-03 | 2000-01-26 | Mitsubishi Denki Kabushiki Kaisha | System for user control of version synchronization in mobile computing |
US6047291A (en) | 1995-05-01 | 2000-04-04 | International Business Machines Corporation | Relational database extenders for handling complex data types |
US6058389A (en) * | 1997-10-31 | 2000-05-02 | Oracle Corporation | Apparatus and method for message queuing in a database system |
US6085192A (en) | 1997-04-11 | 2000-07-04 | Roampage, Inc. | System and method for securely synchronizing multiple copies of a workspace element in a network |
US6096094A (en) | 1997-10-03 | 2000-08-01 | National Instruments Corporation | Configuration manager for configuring a data acquisition system |
US6108004A (en) | 1997-10-21 | 2000-08-22 | International Business Machines Corporation | GUI guide for data mining |
US6108661A (en) | 1997-07-14 | 2000-08-22 | Microsoft Corporation | System for instance customization |
US6112024A (en) | 1996-10-02 | 2000-08-29 | Sybase, Inc. | Development system providing methods for managing different versions of objects with a meta model |
US6151606A (en) | 1998-01-16 | 2000-11-21 | Visto Corporation | System and method for using a workspace data manager to access, manipulate and synchronize network data |
US6189000B1 (en) | 1997-06-30 | 2001-02-13 | Microsoft Corporation | System and method for accessing user properties from multiple storage mechanisms |
US6195650B1 (en) | 2000-02-02 | 2001-02-27 | Hewlett-Packard Company | Method and apparatus for virtualizing file access operations and other I/O operations |
US6199195B1 (en) | 1999-07-08 | 2001-03-06 | Science Application International Corporation | Automatically generated objects within extensible object frameworks and links to enterprise resources |
US6212512B1 (en) | 1999-01-06 | 2001-04-03 | Hewlett-Packard Company | Integration of a database into file management software for protecting, tracking and retrieving data |
US6233582B1 (en) | 1998-05-14 | 2001-05-15 | Sun Microsystems, Inc. | Persistent storage interface for a configuration object-based system |
US6237143B1 (en) | 1998-09-17 | 2001-05-22 | Unisys Corp. | Method and system for monitoring and capturing all file usage of a software tool |
US6240414B1 (en) | 1997-09-28 | 2001-05-29 | Eisolutions, Inc. | Method of resolving data conflicts in a shared data environment |
US6263339B1 (en) | 1998-08-25 | 2001-07-17 | Informix Software, Inc. | Dynamic object visualization and code generation |
EP1130511A2 (en) | 2000-01-25 | 2001-09-05 | FusionOne, Inc. | Data transfer and synchronization system |
US20010037412A1 (en) | 1995-12-15 | 2001-11-01 | Miloushev Vladimir I. | Method and system for constructing software components and systems as assemblies of independent parts |
US6324533B1 (en) | 1998-05-29 | 2001-11-27 | International Business Machines Corporation | Integrated database and data-mining system |
US6338056B1 (en) | 1998-12-14 | 2002-01-08 | International Business Machines Corporation | Relational database extender that supports user-defined index types and user-defined search |
US6343287B1 (en) | 1999-05-19 | 2002-01-29 | Sun Microsystems, Inc. | External data store link for a profile service |
US6345288B1 (en) | 1989-08-31 | 2002-02-05 | Onename Corporation | Computer-based communication system and method using metadata defining a control-structure |
US20020019827A1 (en) | 2000-06-05 | 2002-02-14 | Shiman Leon G. | Method and apparatus for managing documents in a centralized document repository system |
US6349313B1 (en) | 1997-09-19 | 2002-02-19 | Microsoft Corporation | Identifying the owner responsible for processing I/O requests |
US6370541B1 (en) | 1999-09-21 | 2002-04-09 | International Business Machines Corporation | Design and implementation of a client/server framework for federated multi-search and update across heterogeneous datastores |
US20020059425A1 (en) | 2000-06-22 | 2002-05-16 | Microsoft Corporation | Distributed computing services platform |
US20020067370A1 (en) | 2000-09-15 | 2002-06-06 | Forney Paul W. | Extensible manufacturing/process control information portal server |
US20020069192A1 (en) | 2000-12-04 | 2002-06-06 | Aegerter William Charles | Modular distributed mobile data applications |
US6418438B1 (en) | 1998-12-16 | 2002-07-09 | Microsoft Corporation | Dynamic scalable lock mechanism |
US20020091702A1 (en) | 2000-11-16 | 2002-07-11 | Ward Mullins | Dynamic object-driven database manipulation and mapping system |
US20020095454A1 (en) | 1996-02-29 | 2002-07-18 | Reed Drummond Shattuck | Communications system |
US20020099713A1 (en) | 2000-04-07 | 2002-07-25 | Fernandez Roland L. | Extensible schema for defining the visual appearance of computer system components |
US6427123B1 (en) | 1999-02-18 | 2002-07-30 | Oracle Corporation | Hierarchical indexing for accessing hierarchically organized information in a relational system |
US6430564B1 (en) | 1999-03-01 | 2002-08-06 | Hewlett-Packard Company | Java data manager for embedded device |
US6438545B1 (en) | 1997-07-03 | 2002-08-20 | Value Capital Management | Semantic user interface |
US6442620B1 (en) | 1998-08-17 | 2002-08-27 | Microsoft Corporation | Environment extensibility and automatic services for component applications using contexts, policies and activators |
US20020120763A1 (en) | 2001-01-11 | 2002-08-29 | Z-Force Communications, Inc. | File switch and switched file system |
US6446092B1 (en) | 1996-11-01 | 2002-09-03 | Peerdirect Company | Independent distributed database system |
US6449659B1 (en) | 1997-07-14 | 2002-09-10 | Microsoft Corporation | System for instance customization with application independent programming of controls |
US20020143521A1 (en) | 2000-12-15 | 2002-10-03 | Call Charles G. | Methods and apparatus for storing and manipulating variable length and fixed length data elements as a sequence of fixed length integers |
US20020152422A1 (en) | 2001-03-26 | 2002-10-17 | Rahul Sharma | Method and apparatus for managing replicated and migration capable session state for a Java platform |
US20020156792A1 (en) | 2000-12-06 | 2002-10-24 | Biosentients, Inc. | Intelligent object handling device and method for intelligent object data in heterogeneous data environments with high data density and dynamic application needs |
US6473851B1 (en) | 1999-03-11 | 2002-10-29 | Mark E Plutowski | System for combining plurality of input control policies to provide a compositional output control policy |
US20020158839A1 (en) | 2000-01-31 | 2002-10-31 | Narumi Hirota | Video apparatus, holding device, and method for producing holding device |
US6477564B1 (en) | 1998-06-18 | 2002-11-05 | Bull S.A. | Process for transforming and routing data between agent servers present in some machines and a central agent server present in another machine |
US6477527B2 (en) | 1997-05-09 | 2002-11-05 | International Business Machines Corporation | System, method, and program for object building in queries over object views |
US20020174180A1 (en) | 2001-03-16 | 2002-11-21 | Novell, Inc. | Client-server model for synchronization of files |
US20020174191A1 (en) * | 2000-05-22 | 2002-11-21 | Robertson James A. | Method and system for using mobile code in a global ecosystem of interrelated services |
US20020174417A1 (en) | 2001-03-30 | 2002-11-21 | Michael Sijacic | Defining and creating custom data fields within process management software |
US20020177993A1 (en) | 1993-04-21 | 2002-11-28 | Borland Software Corporation | System and method for national language support |
US20020184401A1 (en) | 2000-10-20 | 2002-12-05 | Kadel Richard William | Extensible information system |
US20020184163A1 (en) | 2001-05-31 | 2002-12-05 | Lotter Robert A. | Shared insurance industry system for non-disruptive enhancement and substitution of insurance transaction processing |
US20020194388A1 (en) | 2000-12-04 | 2002-12-19 | David Boloker | Systems and methods for implementing modular DOM (Document Object Model)-based multi-modal browsers |
US20020198891A1 (en) | 2001-06-14 | 2002-12-26 | International Business Machines Corporation | Methods and apparatus for constructing and implementing a universal extension module for processing objects in a database |
US20030009685A1 (en) | 2001-06-29 | 2003-01-09 | Tse-Huong Choo | System and method for file system mandatory access control |
US6519597B1 (en) | 1998-10-08 | 2003-02-11 | International Business Machines Corporation | Method and apparatus for indexing structured documents with rich data types |
US6546393B1 (en) | 1999-10-07 | 2003-04-08 | Clickmarks, Inc. | System method and article of manufacture for dynamically user-generated internet search directory based on prioritized server-sided user bookmarks |
US6553391B1 (en) | 2000-06-08 | 2003-04-22 | International Business Machines Corporation | System and method for replicating external files and database metadata pertaining thereto |
US6556983B1 (en) | 2000-01-12 | 2003-04-29 | Microsoft Corporation | Methods and apparatus for finding semantic information, such as usage logs, similar to a query using a pattern lattice data space |
US20030084038A1 (en) * | 2001-11-01 | 2003-05-01 | Verisign, Inc. | Transactional memory manager |
US20030083948A1 (en) | 2001-03-20 | 2003-05-01 | John Rodriguez | Media asset management system |
US20030088654A1 (en) | 2001-11-02 | 2003-05-08 | Gordon Good | Directory server schema replication |
US20030097376A1 (en) * | 1999-06-25 | 2003-05-22 | Ortega Ruben E. | Auction notification system |
US6571245B2 (en) | 1998-12-07 | 2003-05-27 | Magically, Inc. | Virtual desktop in a computer network |
US20030101190A1 (en) | 2001-03-14 | 2003-05-29 | Microsoft Corporation | Schema-based notification service |
US20030105732A1 (en) | 2000-11-17 | 2003-06-05 | Kagalwala Raxit A. | Database schema for structure query language (SQL) server |
US6578046B2 (en) | 1998-04-01 | 2003-06-10 | International Business Machines Corporation | Federated searches of heterogeneous datastores using a federated datastore object |
US20030110188A1 (en) | 1996-11-27 | 2003-06-12 | 1 Vision Software, Inc. | Virtual directory file navigation system |
US20030110189A1 (en) | 2001-06-01 | 2003-06-12 | International Business Machines Corporation | System and method for generating horizontal view for SQL queries to vertical database |
US6591266B1 (en) * | 2000-07-14 | 2003-07-08 | Nec Corporation | System and method for intelligent caching and refresh of dynamically generated and static web content |
US6601234B1 (en) | 1999-08-31 | 2003-07-29 | Accenture Llp | Attribute dictionary in a business logic services environment |
US20030144849A1 (en) | 2001-12-14 | 2003-07-31 | Kakivaya Gopalakrishna Reddy | System and method for generalized and distributed scalable eventing system |
US20030158839A1 (en) | 2001-05-04 | 2003-08-21 | Yaroslav Faybishenko | System and method for determining relevancy of query responses in a distributed network search mechanism |
US20030158937A1 (en) * | 2002-02-20 | 2003-08-21 | Johal Sumer Singh | Methods and systems for using distributed business data using observation technology to avoid the need to integrate servers and clients |
US20030172368A1 (en) | 2001-12-26 | 2003-09-11 | Elizabeth Alumbaugh | System and method for autonomously generating heterogeneous data source interoperability bridges based on semantic modeling derived from self adapting ontology |
US6633869B1 (en) | 1995-05-09 | 2003-10-14 | Intergraph Corporation | Managing object relationships using an object repository |
US20030196052A1 (en) | 2002-04-10 | 2003-10-16 | International Business Machines Corporation | Method, system, and program for grouping objects |
US6643652B2 (en) | 2000-01-14 | 2003-11-04 | Saba Software, Inc. | Method and apparatus for managing data exchange among systems in a network |
US6671757B1 (en) | 2000-01-26 | 2003-12-30 | Fusionone, Inc. | Data transfer and synchronization system |
US20040003091A1 (en) | 2002-06-26 | 2004-01-01 | International Business Machines Corporation | Accessing a remote iSeries or AS/400 computer system from an integrated development environment |
US20040024795A1 (en) | 2000-04-10 | 2004-02-05 | Hugh Hind | System and method for synchronizing data records between multiple databases |
US20040025110A1 (en) | 2002-08-01 | 2004-02-05 | Koninklijke Philips Electronics N.V | Precise UML modeling framework of the DICOM information model |
US20040031058A1 (en) | 2002-05-10 | 2004-02-12 | Richard Reisman | Method and apparatus for browsing using alternative linkbases |
US6694336B1 (en) | 2000-01-25 | 2004-02-17 | Fusionone, Inc. | Data transfer and synchronization system |
US6694321B1 (en) | 1999-09-23 | 2004-02-17 | Affymetrix, Inc. | System, method, and product for development and maintenance of database-related software applications |
US6701314B1 (en) | 2000-01-21 | 2004-03-02 | Science Applications International Corporation | System and method for cataloguing digital information for searching and retrieval |
US6704743B1 (en) | 1999-09-13 | 2004-03-09 | Copernus, Inc. | Selective inheritance of object parameters in object-oriented computer environment |
US6708221B1 (en) | 1996-12-13 | 2004-03-16 | Visto Corporation | System and method for globally and securely accessing unified information in a computer network |
US6711560B2 (en) * | 2001-03-29 | 2004-03-23 | Hewlett-Packard Development Company, L.P. | Method of executing conflicting triggers in an active database |
US6714943B1 (en) | 2001-01-31 | 2004-03-30 | Oracle International Corporation | Method and mechanism for tracking dependencies for referential integrity constrained tables |
US20040068523A1 (en) | 2002-10-07 | 2004-04-08 | Keith Robert Olan | Method and system for full asynchronous master-to-master file synchronization |
US20040073560A1 (en) | 2001-03-27 | 2004-04-15 | Edwards Nicholas H | File synchronisation |
US20040078568A1 (en) | 2002-10-16 | 2004-04-22 | Duc Pham | Secure file system server architecture and methods |
US6728719B1 (en) | 2001-01-31 | 2004-04-27 | Oracle International Corporation | Method and mechanism for dependency tracking for unique constraints |
US6745174B2 (en) * | 2001-03-29 | 2004-06-01 | Hewlett-Packard Development Company, L.P. | Method of executing before-triggers in an active database |
US6763361B1 (en) | 2000-10-31 | 2004-07-13 | Opsware, Inc. | Object-oriented database abstraction and statement generation |
US6772178B2 (en) | 2001-07-27 | 2004-08-03 | Sun Microsystems, Inc. | Method and apparatus for managing remote data replication in a distributed computer system |
US20040177319A1 (en) | 2002-07-16 | 2004-09-09 | Horn Bruce L. | Computer system for automatic organization, indexing and viewing of information from multiple sources |
US20040193707A1 (en) | 2003-03-28 | 2004-09-30 | Microsoft Corporation | Architecture and system for location awareness |
US20040193952A1 (en) | 2003-03-27 | 2004-09-30 | Charumathy Narayanan | Consistency unit replication in application-defined systems |
US6801604B2 (en) | 2001-06-25 | 2004-10-05 | International Business Machines Corporation | Universal IP-based and scalable architectures across conversational applications using web services for speech and audio processing resources |
US20040199521A1 (en) | 2003-04-07 | 2004-10-07 | International Business Machines Corporation | Method, system, and program for managing groups of objects when there are different group types |
US6810516B2 (en) | 2001-10-30 | 2004-10-26 | Hewlett-Packard Development Company, L.P. | Mechanism allowing separation of graphical display of object status from underlying data |
US20040215858A1 (en) | 2003-04-24 | 2004-10-28 | International Business Machines Corporation | Concurrent access of shared resources |
US6823349B1 (en) | 2001-09-21 | 2004-11-23 | Emc Corporation | Method and system for establishing, maintaining, and using a persistent fracture log |
US6826560B1 (en) * | 1999-07-06 | 2004-11-30 | International Business Machines Corporation | Subscription and notification with database technology |
US20040267834A1 (en) | 2003-06-30 | 2004-12-30 | Sap Aktiengesellschaft | Data synchronization method and system |
US20040268240A1 (en) | 2003-06-11 | 2004-12-30 | Vincent Winchel Todd | System for normalizing and archiving schemas |
US20040267741A1 (en) * | 2003-06-24 | 2004-12-30 | Microsoft Corporation | System and method for database change notification |
US6839721B2 (en) | 2001-01-12 | 2005-01-04 | Hewlett-Packard Development Company, L.P. | Integration of a database into file management software for protecting, tracking, and retrieving data |
US6842906B1 (en) | 1999-08-31 | 2005-01-11 | Accenture Llp | System and method for a refreshable proxy pool in a communication services patterns environment |
US20050015363A1 (en) | 2003-07-15 | 2005-01-20 | International Business Machines Corporation | Method and structure for representing complex query elements in a modelling tool |
US20050015361A1 (en) | 2003-07-15 | 2005-01-20 | International Business Machines Corporation | Model content provider with reusable components for supporting a plurality of GUI API's |
US20050015663A1 (en) | 2003-06-25 | 2005-01-20 | Philippe Armangau | Data recovery with internet protocol replication with or without full resync |
US6851089B1 (en) | 1999-10-25 | 2005-02-01 | Amazon.Com, Inc. | Software application and associated methods for generating a software layer for structuring semistructured information |
US20050033777A1 (en) | 2003-08-04 | 2005-02-10 | Moraes Mark A. | Tracking, recording and organizing changes to data in computer systems |
US20050044108A1 (en) | 2003-08-21 | 2005-02-24 | Ashish Shah | Systems and methods for providing synchronization services for units of information manageable by a hardware/software interface system |
US20050049994A1 (en) | 2003-08-21 | 2005-03-03 | Microsoft Corporation | Systems and methods for the implementation of a base schema for organizing units of information manageable by a hardware/software interface system |
US20050050053A1 (en) | 2003-08-21 | 2005-03-03 | Microsoft Corporation. | Systems and methods for the implementation of a core schema for providing a top-level structure for organizing units of information manageable by a hardware/software interface system |
US20050055354A1 (en) | 2003-08-21 | 2005-03-10 | Microsoft Corporation | Systems and methods for representing units of information manageable by a hardware/software interface system but independent of physical representation |
WO2005024552A2 (en) | 2003-08-21 | 2005-03-17 | Microsoft Corporation | Systems and methods for providing relational hierarchical synchronization services |
WO2005024550A2 (en) | 2003-08-21 | 2005-03-17 | Microsoft Corporation | System and method for implementation of a digital image schema in a hardware/software interface |
WO2005024665A1 (en) | 2003-08-21 | 2005-03-17 | Microsoft Corporation | Systems and methods for providing synchronization services for units of information manageable by a hardware/software interface system |
WO2005024626A1 (en) | 2003-08-21 | 2005-03-17 | Microsoft Corporation | Systems for the implementation of a synchronization schemas |
US20050065977A1 (en) | 2003-09-24 | 2005-03-24 | Benson Max L. | Configuration of a directory system |
US6889231B1 (en) | 2002-08-01 | 2005-05-03 | Oracle International Corporation | Asynchronous information sharing system |
US6895586B1 (en) | 2000-08-30 | 2005-05-17 | Bmc Software | Enterprise management system and method which includes a common enterprise-wide namespace and prototype-based hierarchical inheritance |
WO2005024551A3 (en) | 2003-08-21 | 2005-05-19 | Microsoft Corp | Systems and methods for synchronizing computer systems throuth an intermediary file system share or device |
US20050165731A1 (en) * | 2002-08-20 | 2005-07-28 | Tokyo Electron Limited | Method for processing data based on the data context |
US20050209990A1 (en) * | 2004-03-18 | 2005-09-22 | Ordille Joann J | Method and apparatus for a publish-subscribe system with access controls |
US6952704B2 (en) | 2001-11-26 | 2005-10-04 | Microsoft Corporation | Extending a directory schema independent of schema modification |
WO2005024666A3 (en) | 2003-08-21 | 2005-10-20 | Microsoft Corp | Systems and methods for extensions and inheritance for units of information manageable by a hardware/software interface system |
US6963882B1 (en) * | 2000-10-02 | 2005-11-08 | International Business Machines Corporation | Method and apparatus for processing a list structure |
US6968344B2 (en) | 2001-07-26 | 2005-11-22 | Tata Consultancy Services Limited | Method and apparatus for object-oriented access to a relational database management system (RDBMS) based on any arbitrary predicate |
US20050273759A1 (en) | 2000-12-04 | 2005-12-08 | Lucassen John M | MVC (Model-View-Controller) based multi-modal authoring tool and development environment |
US6976027B2 (en) | 2002-08-21 | 2005-12-13 | International Business Machines Corporation | Implementing geographical taxonomy within network-accessible service registries using spatial extensions |
US20060004691A1 (en) * | 2004-06-30 | 2006-01-05 | Technorati Inc. | Ecosystem method of aggregation and search and related techniques |
US6986060B1 (en) * | 2000-05-23 | 2006-01-10 | Oracle International Corp. | Method and apparatus for sharing a security context between different sessions on a database server |
US6996844B2 (en) | 2001-01-31 | 2006-02-07 | International Business Machines Corporation | Switch-user security for UNIX computer systems |
US20060069702A1 (en) * | 2004-09-02 | 2006-03-30 | Broadway Technology Llc | System and method for a data protocol layer and the transfer of data objects using the data protocol layer |
US7031974B1 (en) | 2002-08-01 | 2006-04-18 | Oracle International Corporation | Replicating DDL changes using streams |
US7031973B2 (en) | 2002-06-10 | 2006-04-18 | Microsoft Corporation | Accounting for references between a client and server that use disparate e-mail storage formats |
US7043481B2 (en) | 2001-06-01 | 2006-05-09 | Thought, Inc. | System, method and software for creating, maintaining, navigating or manipulating complex data objects and their data relationships |
US20060173873A1 (en) | 2000-03-03 | 2006-08-03 | Michel Prompt | System and method for providing access to databases via directories and other hierarchical structures and interfaces |
US7089293B2 (en) | 2000-11-02 | 2006-08-08 | Sun Microsystems, Inc. | Switching system method for discovering and accessing SCSI devices in response to query |
US7099932B1 (en) | 2000-08-16 | 2006-08-29 | Cisco Technology, Inc. | Method and apparatus for retrieving network quality of service policy information from a directory in a quality of service policy management system |
US7099946B2 (en) | 2000-11-13 | 2006-08-29 | Canon Kabushiki Kaishsa | Transferring a media browsing session from one device to a second device by transferring a session identifier and a session key to the second device |
US20060236344A1 (en) | 2005-04-06 | 2006-10-19 | Brain Cameron W | Media transaction system |
US7143420B2 (en) | 2002-08-29 | 2006-11-28 | Sun Microsystems, Inc. | Strategic technology architecture roadmap |
US7145898B1 (en) | 1996-11-18 | 2006-12-05 | Mci Communications Corporation | System, method and article of manufacture for selecting a gateway of a hybrid communication system architecture |
US7158962B2 (en) | 2002-11-27 | 2007-01-02 | International Business Machines Corporation | System and method for automatically linking items with multiple attributes to multiple levels of folders within a content management system |
US7162469B2 (en) | 2002-07-20 | 2007-01-09 | Microsoft Corporation | Querying an object for properties |
US7177843B2 (en) | 2001-01-17 | 2007-02-13 | Contentguard Holdings, Inc. | Rights expression system |
US7181450B2 (en) | 2002-12-18 | 2007-02-20 | International Business Machines Corporation | Method, system, and program for use of metadata to create multidimensional cubes in a relational database |
US7191299B1 (en) | 2003-05-12 | 2007-03-13 | Veritas Operating Corporation | Method and system of providing periodic replication |
US7206788B2 (en) | 2002-07-30 | 2007-04-17 | Microsoft Corporation | Schema-based services for identity-based access to device data |
US7219327B1 (en) | 1999-07-01 | 2007-05-15 | Affinity Internet, Inc. | Extensible data model for use in an integrated platform for creating a distribution multiapplication online presence |
US7237045B2 (en) | 2002-06-28 | 2007-06-26 | Brocade Communications Systems, Inc. | Apparatus and method for storage processing through scalable port processors |
US7240072B2 (en) | 2001-10-31 | 2007-07-03 | International Business Machines Corporation | Dynamic generic framework for distributed tooling |
US7243103B2 (en) | 2002-02-14 | 2007-07-10 | The Escher Group, Ltd. | Peer to peer enterprise storage system with lexical recovery sub-system |
US7249117B2 (en) | 2002-05-22 | 2007-07-24 | Estes Timothy W | Knowledge discovery agent system and method |
US7254574B2 (en) | 2004-03-08 | 2007-08-07 | Microsoft Corporation | Structured indexes on results of function applications over data |
US7269664B2 (en) * | 2000-01-14 | 2007-09-11 | Sun Microsystems, Inc. | Network portal system and methods |
US7277928B2 (en) | 2000-12-22 | 2007-10-02 | Canon Kabushiki Kaisha | Method for facilitating access to multimedia content |
US7349913B2 (en) | 2003-08-21 | 2008-03-25 | Microsoft Corporation | Storage platform for organizing, searching, and sharing data |
US7428546B2 (en) | 2003-08-21 | 2008-09-23 | Microsoft Corporation | Systems and methods for data modeling in an item-based storage platform |
US7483915B2 (en) | 2003-08-21 | 2009-01-27 | Microsoft Corporation | Systems and method for representing relationships between units of information manageable by a hardware/software interface system |
US7555497B2 (en) | 2003-08-21 | 2009-06-30 | Microsoft Corporation | Systems and methods for separating units of information manageable by a hardware/software interface system from their physical organization |
-
2005
- 2005-02-28 US US11/067,778 patent/US7805422B2/en not_active Expired - Fee Related
Patent Citations (212)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US5097533A (en) | 1988-11-29 | 1992-03-17 | International Business Machines Corporation | System and method for interfacing computer application programs written in different languages to a software system |
US5900870A (en) | 1989-06-30 | 1999-05-04 | Massachusetts Institute Of Technology | Object-oriented computer user interface |
US6345288B1 (en) | 1989-08-31 | 2002-02-05 | Onename Corporation | Computer-based communication system and method using metadata defining a control-structure |
US5388257A (en) | 1991-07-24 | 1995-02-07 | At&T Corp. | Method and apparatus for operating a computer based file system |
US5442779A (en) | 1992-06-25 | 1995-08-15 | International Business Machines Corporation | System and method for enabling an interpreted programming language to be executed in a database management system environment |
US5630114A (en) | 1993-01-22 | 1997-05-13 | Serra; Bill | Database management system embedded in an operating system command |
US20020177993A1 (en) | 1993-04-21 | 2002-11-28 | Borland Software Corporation | System and method for national language support |
US5485617A (en) | 1993-12-13 | 1996-01-16 | Microsoft Corporation | Method and system for dynamically generating object connections |
US5758153A (en) | 1994-09-08 | 1998-05-26 | Object Technology Licensing Corp. | Object oriented file system in an object oriented operating system |
US5684984A (en) | 1994-09-29 | 1997-11-04 | Apple Computer, Inc. | Synchronization and replication of object databases |
US5864683A (en) | 1994-10-12 | 1999-01-26 | Secure Computing Corporartion | System for providing secure internetwork by connecting type enforcing secure computers to external network for limiting access to data based on user and process access rights |
US5742813A (en) | 1994-11-10 | 1998-04-21 | Cadis, Inc. | Method and apparatus for concurrency in an object oriented database using lock inheritance based on class objects |
US6047291A (en) | 1995-05-01 | 2000-04-04 | International Business Machines Corporation | Relational database extenders for handling complex data types |
US6633869B1 (en) | 1995-05-09 | 2003-10-14 | Intergraph Corporation | Managing object relationships using an object repository |
US6018342A (en) | 1995-07-03 | 2000-01-25 | Sun Microsystems, Inc. | Automatically generated content-based history mechanism |
US5799307A (en) | 1995-10-06 | 1998-08-25 | Callware Technologies, Inc. | Rapid storage and recall of computer storable messages by utilizing the file structure of a computer's native operating system for message database organization |
US5832496A (en) | 1995-10-12 | 1998-11-03 | Ncr Corporation | System and method for performing intelligent analysis of a computer database |
US5953514A (en) | 1995-10-23 | 1999-09-14 | Apple Computer, Inc. | Method and apparatus for transparent remote execution of commands |
US20010037412A1 (en) | 1995-12-15 | 2001-11-01 | Miloushev Vladimir I. | Method and system for constructing software components and systems as assemblies of independent parts |
US5774717A (en) | 1995-12-15 | 1998-06-30 | International Business Machines Corporation | Method and article of manufacture for resynchronizing client/server file systems and resolving file system conflicts |
US5815415A (en) | 1996-01-19 | 1998-09-29 | Bentley Systems, Incorporated | Computer system for portable persistent modeling |
US20020095454A1 (en) | 1996-02-29 | 2002-07-18 | Reed Drummond Shattuck | Communications system |
US5806074A (en) | 1996-03-19 | 1998-09-08 | Oracle Corporation | Configurable conflict resolution in a computer implemented distributed database |
US5845067A (en) | 1996-09-09 | 1998-12-01 | Porter; Jack Edward | Method and apparatus for document management utilizing a messaging system |
US6112024A (en) | 1996-10-02 | 2000-08-29 | Sybase, Inc. | Development system providing methods for managing different versions of objects with a meta model |
US6446092B1 (en) | 1996-11-01 | 2002-09-03 | Peerdirect Company | Independent distributed database system |
US5937189A (en) | 1996-11-12 | 1999-08-10 | International Business Machines Corporation | Object oriented framework mechanism for determining configuration relations |
US7145898B1 (en) | 1996-11-18 | 2006-12-05 | Mci Communications Corporation | System, method and article of manufacture for selecting a gateway of a hybrid communication system architecture |
US20030110188A1 (en) | 1996-11-27 | 2003-06-12 | 1 Vision Software, Inc. | Virtual directory file navigation system |
US6708221B1 (en) | 1996-12-13 | 2004-03-16 | Visto Corporation | System and method for globally and securely accessing unified information in a computer network |
US5842213A (en) | 1997-01-28 | 1998-11-24 | Odom; Paul S. | Method for modeling, storing, and transferring data in neutral form |
US6442548B1 (en) | 1997-01-31 | 2002-08-27 | International Business Machines Corporation | Database interface for database unaware applications |
US5937406A (en) | 1997-01-31 | 1999-08-10 | Informix Software, Inc. | File system interface to a database |
US5905987A (en) | 1997-03-19 | 1999-05-18 | Microsoft Corporation | Method, data structure, and computer program product for object state storage in a repository |
US6085192A (en) | 1997-04-11 | 2000-07-04 | Roampage, Inc. | System and method for securely synchronizing multiple copies of a workspace element in a network |
US6477527B2 (en) | 1997-05-09 | 2002-11-05 | International Business Machines Corporation | System, method, and program for object building in queries over object views |
US5937402A (en) | 1997-06-19 | 1999-08-10 | Ontos, Inc. | System for enabling access to a relational database from an object oriented program |
US6189000B1 (en) | 1997-06-30 | 2001-02-13 | Microsoft Corporation | System and method for accessing user properties from multiple storage mechanisms |
US6438545B1 (en) | 1997-07-03 | 2002-08-20 | Value Capital Management | Semantic user interface |
US5893106A (en) | 1997-07-11 | 1999-04-06 | International Business Machines Corporation | Object oriented server process framework with interdependent-object creation |
US6449659B1 (en) | 1997-07-14 | 2002-09-10 | Microsoft Corporation | System for instance customization with application independent programming of controls |
US6108661A (en) | 1997-07-14 | 2000-08-22 | Microsoft Corporation | System for instance customization |
US6349313B1 (en) | 1997-09-19 | 2002-02-19 | Microsoft Corporation | Identifying the owner responsible for processing I/O requests |
US6240414B1 (en) | 1997-09-28 | 2001-05-29 | Eisolutions, Inc. | Method of resolving data conflicts in a shared data environment |
US6096094A (en) | 1997-10-03 | 2000-08-01 | National Instruments Corporation | Configuration manager for configuring a data acquisition system |
US6108004A (en) | 1997-10-21 | 2000-08-22 | International Business Machines Corporation | GUI guide for data mining |
US6006234A (en) | 1997-10-31 | 1999-12-21 | Oracle Corporation | Logical groupings within a database |
US6058389A (en) * | 1997-10-31 | 2000-05-02 | Oracle Corporation | Apparatus and method for message queuing in a database system |
US6151606A (en) | 1998-01-16 | 2000-11-21 | Visto Corporation | System and method for using a workspace data manager to access, manipulate and synchronize network data |
US6578046B2 (en) | 1998-04-01 | 2003-06-10 | International Business Machines Corporation | Federated searches of heterogeneous datastores using a federated datastore object |
US6233582B1 (en) | 1998-05-14 | 2001-05-15 | Sun Microsystems, Inc. | Persistent storage interface for a configuration object-based system |
US6324533B1 (en) | 1998-05-29 | 2001-11-27 | International Business Machines Corporation | Integrated database and data-mining system |
US6477564B1 (en) | 1998-06-18 | 2002-11-05 | Bull S.A. | Process for transforming and routing data between agent servers present in some machines and a central agent server present in another machine |
US6317754B1 (en) | 1998-07-03 | 2001-11-13 | Mitsubishi Electric Research Laboratories, Inc | System for user control of version /Synchronization in mobile computing |
EP0974895A2 (en) | 1998-07-03 | 2000-01-26 | Mitsubishi Denki Kabushiki Kaisha | System for user control of version synchronization in mobile computing |
US6442620B1 (en) | 1998-08-17 | 2002-08-27 | Microsoft Corporation | Environment extensibility and automatic services for component applications using contexts, policies and activators |
US6263339B1 (en) | 1998-08-25 | 2001-07-17 | Informix Software, Inc. | Dynamic object visualization and code generation |
US6237143B1 (en) | 1998-09-17 | 2001-05-22 | Unisys Corp. | Method and system for monitoring and capturing all file usage of a software tool |
US6519597B1 (en) | 1998-10-08 | 2003-02-11 | International Business Machines Corporation | Method and apparatus for indexing structured documents with rich data types |
US6571245B2 (en) | 1998-12-07 | 2003-05-27 | Magically, Inc. | Virtual desktop in a computer network |
US6338056B1 (en) | 1998-12-14 | 2002-01-08 | International Business Machines Corporation | Relational database extender that supports user-defined index types and user-defined search |
US6418438B1 (en) | 1998-12-16 | 2002-07-09 | Microsoft Corporation | Dynamic scalable lock mechanism |
US6212512B1 (en) | 1999-01-06 | 2001-04-03 | Hewlett-Packard Company | Integration of a database into file management software for protecting, tracking and retrieving data |
US6427123B1 (en) | 1999-02-18 | 2002-07-30 | Oracle Corporation | Hierarchical indexing for accessing hierarchically organized information in a relational system |
US6430564B1 (en) | 1999-03-01 | 2002-08-06 | Hewlett-Packard Company | Java data manager for embedded device |
US6473851B1 (en) | 1999-03-11 | 2002-10-29 | Mark E Plutowski | System for combining plurality of input control policies to provide a compositional output control policy |
US6343287B1 (en) | 1999-05-19 | 2002-01-29 | Sun Microsystems, Inc. | External data store link for a profile service |
US20030097376A1 (en) * | 1999-06-25 | 2003-05-22 | Ortega Ruben E. | Auction notification system |
US7219327B1 (en) | 1999-07-01 | 2007-05-15 | Affinity Internet, Inc. | Extensible data model for use in an integrated platform for creating a distribution multiapplication online presence |
US6826560B1 (en) * | 1999-07-06 | 2004-11-30 | International Business Machines Corporation | Subscription and notification with database technology |
US6199195B1 (en) | 1999-07-08 | 2001-03-06 | Science Application International Corporation | Automatically generated objects within extensible object frameworks and links to enterprise resources |
US6842906B1 (en) | 1999-08-31 | 2005-01-11 | Accenture Llp | System and method for a refreshable proxy pool in a communication services patterns environment |
US6601234B1 (en) | 1999-08-31 | 2003-07-29 | Accenture Llp | Attribute dictionary in a business logic services environment |
US6704743B1 (en) | 1999-09-13 | 2004-03-09 | Copernus, Inc. | Selective inheritance of object parameters in object-oriented computer environment |
US6370541B1 (en) | 1999-09-21 | 2002-04-09 | International Business Machines Corporation | Design and implementation of a client/server framework for federated multi-search and update across heterogeneous datastores |
US6694321B1 (en) | 1999-09-23 | 2004-02-17 | Affymetrix, Inc. | System, method, and product for development and maintenance of database-related software applications |
US6546393B1 (en) | 1999-10-07 | 2003-04-08 | Clickmarks, Inc. | System method and article of manufacture for dynamically user-generated internet search directory based on prioritized server-sided user bookmarks |
US6851089B1 (en) | 1999-10-25 | 2005-02-01 | Amazon.Com, Inc. | Software application and associated methods for generating a software layer for structuring semistructured information |
US6556983B1 (en) | 2000-01-12 | 2003-04-29 | Microsoft Corporation | Methods and apparatus for finding semantic information, such as usage logs, similar to a query using a pattern lattice data space |
US6643652B2 (en) | 2000-01-14 | 2003-11-04 | Saba Software, Inc. | Method and apparatus for managing data exchange among systems in a network |
US7269664B2 (en) * | 2000-01-14 | 2007-09-11 | Sun Microsystems, Inc. | Network portal system and methods |
US6701314B1 (en) | 2000-01-21 | 2004-03-02 | Science Applications International Corporation | System and method for cataloguing digital information for searching and retrieval |
US6738789B2 (en) | 2000-01-25 | 2004-05-18 | Fusionone, Inc. | Data package including synchronization data |
EP1130511A2 (en) | 2000-01-25 | 2001-09-05 | FusionOne, Inc. | Data transfer and synchronization system |
US6757696B2 (en) | 2000-01-25 | 2004-06-29 | Fusionone, Inc. | Management server for synchronization system |
US6694336B1 (en) | 2000-01-25 | 2004-02-17 | Fusionone, Inc. | Data transfer and synchronization system |
US6671757B1 (en) | 2000-01-26 | 2003-12-30 | Fusionone, Inc. | Data transfer and synchronization system |
US20020158839A1 (en) | 2000-01-31 | 2002-10-31 | Narumi Hirota | Video apparatus, holding device, and method for producing holding device |
US6195650B1 (en) | 2000-02-02 | 2001-02-27 | Hewlett-Packard Company | Method and apparatus for virtualizing file access operations and other I/O operations |
US20060173873A1 (en) | 2000-03-03 | 2006-08-03 | Michel Prompt | System and method for providing access to databases via directories and other hierarchical structures and interfaces |
US20020099713A1 (en) | 2000-04-07 | 2002-07-25 | Fernandez Roland L. | Extensible schema for defining the visual appearance of computer system components |
US20040024795A1 (en) | 2000-04-10 | 2004-02-05 | Hugh Hind | System and method for synchronizing data records between multiple databases |
US20020174191A1 (en) * | 2000-05-22 | 2002-11-21 | Robertson James A. | Method and system for using mobile code in a global ecosystem of interrelated services |
US6986060B1 (en) * | 2000-05-23 | 2006-01-10 | Oracle International Corp. | Method and apparatus for sharing a security context between different sessions on a database server |
US20020019827A1 (en) | 2000-06-05 | 2002-02-14 | Shiman Leon G. | Method and apparatus for managing documents in a centralized document repository system |
US6553391B1 (en) | 2000-06-08 | 2003-04-22 | International Business Machines Corporation | System and method for replicating external files and database metadata pertaining thereto |
US6990513B2 (en) | 2000-06-22 | 2006-01-24 | Microsoft Corporation | Distributed computing services platform |
US20020059425A1 (en) | 2000-06-22 | 2002-05-16 | Microsoft Corporation | Distributed computing services platform |
US7263551B2 (en) | 2000-06-22 | 2007-08-28 | Microsoft Corporation | Distributed computing services platform |
US6591266B1 (en) * | 2000-07-14 | 2003-07-08 | Nec Corporation | System and method for intelligent caching and refresh of dynamically generated and static web content |
US7099932B1 (en) | 2000-08-16 | 2006-08-29 | Cisco Technology, Inc. | Method and apparatus for retrieving network quality of service policy information from a directory in a quality of service policy management system |
US6895586B1 (en) | 2000-08-30 | 2005-05-17 | Bmc Software | Enterprise management system and method which includes a common enterprise-wide namespace and prototype-based hierarchical inheritance |
US20020067370A1 (en) | 2000-09-15 | 2002-06-06 | Forney Paul W. | Extensible manufacturing/process control information portal server |
US6963882B1 (en) * | 2000-10-02 | 2005-11-08 | International Business Machines Corporation | Method and apparatus for processing a list structure |
US20020184401A1 (en) | 2000-10-20 | 2002-12-05 | Kadel Richard William | Extensible information system |
US6763361B1 (en) | 2000-10-31 | 2004-07-13 | Opsware, Inc. | Object-oriented database abstraction and statement generation |
US7089293B2 (en) | 2000-11-02 | 2006-08-08 | Sun Microsystems, Inc. | Switching system method for discovering and accessing SCSI devices in response to query |
US7099946B2 (en) | 2000-11-13 | 2006-08-29 | Canon Kabushiki Kaishsa | Transferring a media browsing session from one device to a second device by transferring a session identifier and a session key to the second device |
US20020091702A1 (en) | 2000-11-16 | 2002-07-11 | Ward Mullins | Dynamic object-driven database manipulation and mapping system |
US6999956B2 (en) | 2000-11-16 | 2006-02-14 | Ward Mullins | Dynamic object-driven database manipulation and mapping system |
US20030105732A1 (en) | 2000-11-17 | 2003-06-05 | Kagalwala Raxit A. | Database schema for structure query language (SQL) server |
US20020194388A1 (en) | 2000-12-04 | 2002-12-19 | David Boloker | Systems and methods for implementing modular DOM (Document Object Model)-based multi-modal browsers |
US20020069192A1 (en) | 2000-12-04 | 2002-06-06 | Aegerter William Charles | Modular distributed mobile data applications |
US20050273759A1 (en) | 2000-12-04 | 2005-12-08 | Lucassen John M | MVC (Model-View-Controller) based multi-modal authoring tool and development environment |
US20020156792A1 (en) | 2000-12-06 | 2002-10-24 | Biosentients, Inc. | Intelligent object handling device and method for intelligent object data in heterogeneous data environments with high data density and dynamic application needs |
US7178100B2 (en) | 2000-12-15 | 2007-02-13 | Call Charles G | Methods and apparatus for storing and manipulating variable length and fixed length data elements as a sequence of fixed length integers |
US20020143521A1 (en) | 2000-12-15 | 2002-10-03 | Call Charles G. | Methods and apparatus for storing and manipulating variable length and fixed length data elements as a sequence of fixed length integers |
US7277928B2 (en) | 2000-12-22 | 2007-10-02 | Canon Kabushiki Kaisha | Method for facilitating access to multimedia content |
US20020120763A1 (en) | 2001-01-11 | 2002-08-29 | Z-Force Communications, Inc. | File switch and switched file system |
US6839721B2 (en) | 2001-01-12 | 2005-01-04 | Hewlett-Packard Development Company, L.P. | Integration of a database into file management software for protecting, tracking, and retrieving data |
US7177843B2 (en) | 2001-01-17 | 2007-02-13 | Contentguard Holdings, Inc. | Rights expression system |
US6714943B1 (en) | 2001-01-31 | 2004-03-30 | Oracle International Corporation | Method and mechanism for tracking dependencies for referential integrity constrained tables |
US6728719B1 (en) | 2001-01-31 | 2004-04-27 | Oracle International Corporation | Method and mechanism for dependency tracking for unique constraints |
US6996844B2 (en) | 2001-01-31 | 2006-02-07 | International Business Machines Corporation | Switch-user security for UNIX computer systems |
US20030101190A1 (en) | 2001-03-14 | 2003-05-29 | Microsoft Corporation | Schema-based notification service |
US20020174180A1 (en) | 2001-03-16 | 2002-11-21 | Novell, Inc. | Client-server model for synchronization of files |
US20030083948A1 (en) | 2001-03-20 | 2003-05-01 | John Rodriguez | Media asset management system |
US20020152422A1 (en) | 2001-03-26 | 2002-10-17 | Rahul Sharma | Method and apparatus for managing replicated and migration capable session state for a Java platform |
US6877111B2 (en) | 2001-03-26 | 2005-04-05 | Sun Microsystems, Inc. | Method and apparatus for managing replicated and migration capable session state for a Java platform |
US20040073560A1 (en) | 2001-03-27 | 2004-04-15 | Edwards Nicholas H | File synchronisation |
US6745174B2 (en) * | 2001-03-29 | 2004-06-01 | Hewlett-Packard Development Company, L.P. | Method of executing before-triggers in an active database |
US6711560B2 (en) * | 2001-03-29 | 2004-03-23 | Hewlett-Packard Development Company, L.P. | Method of executing conflicting triggers in an active database |
US20020174417A1 (en) | 2001-03-30 | 2002-11-21 | Michael Sijacic | Defining and creating custom data fields within process management software |
US6961723B2 (en) | 2001-05-04 | 2005-11-01 | Sun Microsystems, Inc. | System and method for determining relevancy of query responses in a distributed network search mechanism |
US20030158839A1 (en) | 2001-05-04 | 2003-08-21 | Yaroslav Faybishenko | System and method for determining relevancy of query responses in a distributed network search mechanism |
US20020184163A1 (en) | 2001-05-31 | 2002-12-05 | Lotter Robert A. | Shared insurance industry system for non-disruptive enhancement and substitution of insurance transaction processing |
US6763350B2 (en) | 2001-06-01 | 2004-07-13 | International Business Machines Corporation | System and method for generating horizontal view for SQL queries to vertical database |
US20030110189A1 (en) | 2001-06-01 | 2003-06-12 | International Business Machines Corporation | System and method for generating horizontal view for SQL queries to vertical database |
US7043481B2 (en) | 2001-06-01 | 2006-05-09 | Thought, Inc. | System, method and software for creating, maintaining, navigating or manipulating complex data objects and their data relationships |
US20020198891A1 (en) | 2001-06-14 | 2002-12-26 | International Business Machines Corporation | Methods and apparatus for constructing and implementing a universal extension module for processing objects in a database |
US6697818B2 (en) | 2001-06-14 | 2004-02-24 | International Business Machines Corporation | Methods and apparatus for constructing and implementing a universal extension module for processing objects in a database |
US6801604B2 (en) | 2001-06-25 | 2004-10-05 | International Business Machines Corporation | Universal IP-based and scalable architectures across conversational applications using web services for speech and audio processing resources |
US20030009685A1 (en) | 2001-06-29 | 2003-01-09 | Tse-Huong Choo | System and method for file system mandatory access control |
US6968344B2 (en) | 2001-07-26 | 2005-11-22 | Tata Consultancy Services Limited | Method and apparatus for object-oriented access to a relational database management system (RDBMS) based on any arbitrary predicate |
US6772178B2 (en) | 2001-07-27 | 2004-08-03 | Sun Microsystems, Inc. | Method and apparatus for managing remote data replication in a distributed computer system |
US6823349B1 (en) | 2001-09-21 | 2004-11-23 | Emc Corporation | Method and system for establishing, maintaining, and using a persistent fracture log |
US6810516B2 (en) | 2001-10-30 | 2004-10-26 | Hewlett-Packard Development Company, L.P. | Mechanism allowing separation of graphical display of object status from underlying data |
US7240072B2 (en) | 2001-10-31 | 2007-07-03 | International Business Machines Corporation | Dynamic generic framework for distributed tooling |
US20030084038A1 (en) * | 2001-11-01 | 2003-05-01 | Verisign, Inc. | Transactional memory manager |
US20030088654A1 (en) | 2001-11-02 | 2003-05-08 | Gordon Good | Directory server schema replication |
US6952704B2 (en) | 2001-11-26 | 2005-10-04 | Microsoft Corporation | Extending a directory schema independent of schema modification |
US20030144849A1 (en) | 2001-12-14 | 2003-07-31 | Kakivaya Gopalakrishna Reddy | System and method for generalized and distributed scalable eventing system |
US20030172368A1 (en) | 2001-12-26 | 2003-09-11 | Elizabeth Alumbaugh | System and method for autonomously generating heterogeneous data source interoperability bridges based on semantic modeling derived from self adapting ontology |
US7243103B2 (en) | 2002-02-14 | 2007-07-10 | The Escher Group, Ltd. | Peer to peer enterprise storage system with lexical recovery sub-system |
US20030158937A1 (en) * | 2002-02-20 | 2003-08-21 | Johal Sumer Singh | Methods and systems for using distributed business data using observation technology to avoid the need to integrate servers and clients |
US6857053B2 (en) | 2002-04-10 | 2005-02-15 | International Business Machines Corporation | Method, system, and program for backing up objects by creating groups of objects |
US20030196052A1 (en) | 2002-04-10 | 2003-10-16 | International Business Machines Corporation | Method, system, and program for grouping objects |
US20040031058A1 (en) | 2002-05-10 | 2004-02-12 | Richard Reisman | Method and apparatus for browsing using alternative linkbases |
US7249117B2 (en) | 2002-05-22 | 2007-07-24 | Estes Timothy W | Knowledge discovery agent system and method |
US7031973B2 (en) | 2002-06-10 | 2006-04-18 | Microsoft Corporation | Accounting for references between a client and server that use disparate e-mail storage formats |
US20040003091A1 (en) | 2002-06-26 | 2004-01-01 | International Business Machines Corporation | Accessing a remote iSeries or AS/400 computer system from an integrated development environment |
US7237045B2 (en) | 2002-06-28 | 2007-06-26 | Brocade Communications Systems, Inc. | Apparatus and method for storage processing through scalable port processors |
US20040177319A1 (en) | 2002-07-16 | 2004-09-09 | Horn Bruce L. | Computer system for automatic organization, indexing and viewing of information from multiple sources |
US7162469B2 (en) | 2002-07-20 | 2007-01-09 | Microsoft Corporation | Querying an object for properties |
US7206788B2 (en) | 2002-07-30 | 2007-04-17 | Microsoft Corporation | Schema-based services for identity-based access to device data |
US7031974B1 (en) | 2002-08-01 | 2006-04-18 | Oracle International Corporation | Replicating DDL changes using streams |
US20040025110A1 (en) | 2002-08-01 | 2004-02-05 | Koninklijke Philips Electronics N.V | Precise UML modeling framework of the DICOM information model |
US6889231B1 (en) | 2002-08-01 | 2005-05-03 | Oracle International Corporation | Asynchronous information sharing system |
US20050125430A1 (en) | 2002-08-01 | 2005-06-09 | Oracle International Corporation | Asynchronous actions using flashback |
US20050165731A1 (en) * | 2002-08-20 | 2005-07-28 | Tokyo Electron Limited | Method for processing data based on the data context |
US6976027B2 (en) | 2002-08-21 | 2005-12-13 | International Business Machines Corporation | Implementing geographical taxonomy within network-accessible service registries using spatial extensions |
US7143420B2 (en) | 2002-08-29 | 2006-11-28 | Sun Microsystems, Inc. | Strategic technology architecture roadmap |
US20040068523A1 (en) | 2002-10-07 | 2004-04-08 | Keith Robert Olan | Method and system for full asynchronous master-to-master file synchronization |
US20040078568A1 (en) | 2002-10-16 | 2004-04-22 | Duc Pham | Secure file system server architecture and methods |
US20070050620A1 (en) | 2002-10-16 | 2007-03-01 | Duc Pham | Secure file system server architecture and methods |
US7158962B2 (en) | 2002-11-27 | 2007-01-02 | International Business Machines Corporation | System and method for automatically linking items with multiple attributes to multiple levels of folders within a content management system |
US7181450B2 (en) | 2002-12-18 | 2007-02-20 | International Business Machines Corporation | Method, system, and program for use of metadata to create multidimensional cubes in a relational database |
US20040193952A1 (en) | 2003-03-27 | 2004-09-30 | Charumathy Narayanan | Consistency unit replication in application-defined systems |
US20040193707A1 (en) | 2003-03-28 | 2004-09-30 | Microsoft Corporation | Architecture and system for location awareness |
US20040199521A1 (en) | 2003-04-07 | 2004-10-07 | International Business Machines Corporation | Method, system, and program for managing groups of objects when there are different group types |
US20040215858A1 (en) | 2003-04-24 | 2004-10-28 | International Business Machines Corporation | Concurrent access of shared resources |
US7191299B1 (en) | 2003-05-12 | 2007-03-13 | Veritas Operating Corporation | Method and system of providing periodic replication |
US20040268240A1 (en) | 2003-06-11 | 2004-12-30 | Vincent Winchel Todd | System for normalizing and archiving schemas |
US20040267741A1 (en) * | 2003-06-24 | 2004-12-30 | Microsoft Corporation | System and method for database change notification |
US20050015663A1 (en) | 2003-06-25 | 2005-01-20 | Philippe Armangau | Data recovery with internet protocol replication with or without full resync |
US7177865B2 (en) | 2003-06-30 | 2007-02-13 | Sap Ag | Data synchronization method and system |
US20040267834A1 (en) | 2003-06-30 | 2004-12-30 | Sap Aktiengesellschaft | Data synchronization method and system |
US20050015363A1 (en) | 2003-07-15 | 2005-01-20 | International Business Machines Corporation | Method and structure for representing complex query elements in a modelling tool |
US20050015361A1 (en) | 2003-07-15 | 2005-01-20 | International Business Machines Corporation | Model content provider with reusable components for supporting a plurality of GUI API's |
US20050033777A1 (en) | 2003-08-04 | 2005-02-10 | Moraes Mark A. | Tracking, recording and organizing changes to data in computer systems |
US20050044108A1 (en) | 2003-08-21 | 2005-02-24 | Ashish Shah | Systems and methods for providing synchronization services for units of information manageable by a hardware/software interface system |
WO2005024550A2 (en) | 2003-08-21 | 2005-03-17 | Microsoft Corporation | System and method for implementation of a digital image schema in a hardware/software interface |
US20050044089A1 (en) | 2003-08-21 | 2005-02-24 | Microsoft Corporation | Systems and methods for interfacing application programs with an item-based storage platform |
US20050050053A1 (en) | 2003-08-21 | 2005-03-03 | Microsoft Corporation. | Systems and methods for the implementation of a core schema for providing a top-level structure for organizing units of information manageable by a hardware/software interface system |
US7555497B2 (en) | 2003-08-21 | 2009-06-30 | Microsoft Corporation | Systems and methods for separating units of information manageable by a hardware/software interface system from their physical organization |
US20050055354A1 (en) | 2003-08-21 | 2005-03-10 | Microsoft Corporation | Systems and methods for representing units of information manageable by a hardware/software interface system but independent of physical representation |
WO2005024552A2 (en) | 2003-08-21 | 2005-03-17 | Microsoft Corporation | Systems and methods for providing relational hierarchical synchronization services |
WO2005024666A3 (en) | 2003-08-21 | 2005-10-20 | Microsoft Corp | Systems and methods for extensions and inheritance for units of information manageable by a hardware/software interface system |
US7483915B2 (en) | 2003-08-21 | 2009-01-27 | Microsoft Corporation | Systems and method for representing relationships between units of information manageable by a hardware/software interface system |
WO2005024665A1 (en) | 2003-08-21 | 2005-03-17 | Microsoft Corporation | Systems and methods for providing synchronization services for units of information manageable by a hardware/software interface system |
WO2005024626A1 (en) | 2003-08-21 | 2005-03-17 | Microsoft Corporation | Systems for the implementation of a synchronization schemas |
US20050049994A1 (en) | 2003-08-21 | 2005-03-03 | Microsoft Corporation | Systems and methods for the implementation of a base schema for organizing units of information manageable by a hardware/software interface system |
WO2005024551A3 (en) | 2003-08-21 | 2005-05-19 | Microsoft Corp | Systems and methods for synchronizing computer systems throuth an intermediary file system share or device |
US7428546B2 (en) | 2003-08-21 | 2008-09-23 | Microsoft Corporation | Systems and methods for data modeling in an item-based storage platform |
US7349913B2 (en) | 2003-08-21 | 2008-03-25 | Microsoft Corporation | Storage platform for organizing, searching, and sharing data |
US20050065977A1 (en) | 2003-09-24 | 2005-03-24 | Benson Max L. | Configuration of a directory system |
US7272598B2 (en) | 2004-03-08 | 2007-09-18 | Microsoft Corporation | Structured indexes on results of function applications over data |
US7254574B2 (en) | 2004-03-08 | 2007-08-07 | Microsoft Corporation | Structured indexes on results of function applications over data |
US20050209990A1 (en) * | 2004-03-18 | 2005-09-22 | Ordille Joann J | Method and apparatus for a publish-subscribe system with access controls |
US20060004691A1 (en) * | 2004-06-30 | 2006-01-05 | Technorati Inc. | Ecosystem method of aggregation and search and related techniques |
US20060069702A1 (en) * | 2004-09-02 | 2006-03-30 | Broadway Technology Llc | System and method for a data protocol layer and the transfer of data objects using the data protocol layer |
US20060236344A1 (en) | 2005-04-06 | 2006-10-19 | Brain Cameron W | Media transaction system |
Non-Patent Citations (120)
Title |
---|
"Computervision Launches Design Automation Development Platform for Windows", PR Newswire, Financial News, Jan. 10, 1995. |
"Developer's Guide to Apple Data Detectors-For Version 1.0.2", © Apple Computer, Inc., 1997, 1-34. |
"Mechanical Design Software (Buyers Guide)", Computer-Aided Engineering, Dec. 1993, 12(12), 32-36. |
"SyncML Sync Protocol", Dec. 7, 2000, Version 1.0, 60 pages, http://www.syncml.org/docs/syncml protocol v10 20001207.pdf. |
"Using Value Objects," by the XDoclet Team, last published May 5, 2005, 1-9 http://xdoclet.sourceforge.net/xdoclet/valueobjects.html. |
Andrews, T. et al., "Combining Language and Database Advances in an Object-Oriented Development Environment", OOPSLA Proceedings, Oct. 4-8, 1987, 430-440. |
Barker, J., "Beginning Java Objects," Wrox Press Ltd., (no month available) 2000, pp. 1 and 94. |
Beard, M.K., et al., "Multilevel and Graphical Views of Metadata", Research and Technology Advances in Digital Libraries, IEEE, 1998, 256-265. |
Beitner, N.D. et al., "Multimedia Support and Authoring in Microcosm: An Extended Model", Department of Electronics and Computer Science, University of Southampton, 12 pages. |
Berenson, H. "A Critique of ANSI SQL Isolation Levels", SIGMOD RECORD, Jun. 1995, 24(2), 10 pages. |
Berg, C., How Do I Create Persistent Java Objects? Dr. Dobb's Journal, 1997, 22(4), 98-101. |
Bernstein et al., "The Microsoft Repository," Proceedings of the 23rd VLDB Conference, (no month available) 1997, 10 pages, http://citeseer.ist.psu.edu/bernstein97microsoft.html. |
Bernstein, P. et al., "Microsoft Repository Version 2 & The Open Information Model," Microsoft Paper pub. In Information Systems, (no month available) 1999, 22(4), 1-27. |
Bhattacharya, S. et al., "Coordinating Backup/Recovery and Data Consistency Between Database and File Systems", International Conference on Management of Data and Symposium on Principles of Database Systems, Proceedings of the 2002 ACM SIGMOD International Conference on Management of Data, 2002, 500-511. |
Biliris, A., "The Performance of Three Database Storage Structures for Managing Large Objects", ACM SIGMOD, 1992, 276-285. |
Booch, Benjamin/Cummings Publishing Co, "Object-Oriented Analysis and Design with Applications", (no month available) 1994, 155, 156, 179-183. |
Booch, G. Benjamin/Cummings Publishing Co, "Object-Oriented Analysis and Design with Applications", 1994, 155, 156, 179-183. |
Bracchi et al., "Binary Logical Associations in Data Modelling", Modelling in Data Base Management Systems G.M. Nijssen, (ed); North Holland Publishing Company: 1976, 125-147. |
Buneman, P. et al., Inheritance and Persistence in Database Programming Languages, ACM, 1986, 4-15. |
Chien, A.A., "Concurrent Aggregates (CA)-Design and Experience with a Concurrent Object-Oriented Language Based on Aggregates", J. Parallel and Distributed Computing, 1995, 25(2), 174-196. |
Chryssostomidis, Chryssosiomos, et al. "Geometric Modeling Issues in Computer Aided Design of Marine Structures", MTS Journal, 22(2) pp. 15-33. |
Costa & Blair, "Integrating meta-information management and reflection in middleware" Distributed Objects and Applications, Sep. 21-23, 2000 Antwerp, Belgium, Proceedings International Symposium on Distributed Objects and Applications (DOA) 2000, 133-143. |
D'Andrea, A. et al., "Unisql's Next-Generation Object-Relational Database Management System", ACM SIGMOD Record, Sep. 1996, 25(2), 70-76. |
Darby, C., Object Serialization in Java 1.1. Making Objects Persistent, WEB Techniques, 1997, 2(9), 55, 58-59. |
Dietrich, Walter C., Jr., et al., "TGMS: An Object-Oriented System for Programming Geometry", Software-Practice and Experience, Oct. 1989, 19(10), 979-1013. |
Dobashi, Y. et al, "Skylight for Interior Lighting Design", Computer Graphics Forum, 1994, 13(3), C85-C96. |
Dorsch, J., "Accel Signs with IBM to Buy Altium PCB Unit ,"EDA Licensing, Electronic New, Jan.16, 1995, 2 pages. |
Evans, H., "XORM," Mapping Layer, Beta Version, Jul. 10, 2003, 19 pages, downloaded at http://sourceforge.net/projects/xorm. |
Fegaras, Leonidas, "Optimizing Object Queries Using an Effective Calculus", ACM Transactions on Database Systems, Dec. 2000, 25(4), 457-516. |
Fialli et al., "Java TM Architecture for XML Binding (JAXB) Specification," Sep. 12, 2002, Version 0.7, 1-178. |
Findler, R.B. et al., Contract Soundness for Object-Oriented Languages, ACM Conference on Object-Oriented Programming Systems, Languages and Applications, OOPSLA, 2001, 15 pages. |
Foley et al., Computer Graphics: Principles and Practices, Second Edition, Addison-Wesley Publishing Company, 1990, Ch. 5 and 9, pp. 201-283. |
Friis, A.-Christensen, et al."Geographic Data Modeling: Requirements and Research Issues in Geographic Data Modeling," Nov. 2001, Proceedings of the 9th ACM International Symposium on Advances in Geographic Information Systems, 2-8. |
Friis-Christensen, "Requirements and Research Issues in Geographic Data Modeling," Proceedings of the 9th ACM International Symposium on Advances in Geographic Information Systems, Nov. 2001, 2-8. |
Fuh, Y-C. et al, "Implementation of SQL3 Structured Types with Inheritance and Value Substitutability", Digital Symposium Collection, 2000, Abstract only, 2 pages, www.acm.org/sigmod/disc/p-implementationoyostw.htm. |
Garret, J.H., Jr. et al, "An Object Oriented Environment for Representing Building Design and Construction Data", Advanced Construction Technology Center, Jun. 1989, Document No. 89-37-04, 1-34. |
Godoy Simões, M. et al, "A RISC-Microcontroller Based Photovoltaic System for Illumination Applications", APEC 2000. Fifteenth Annual IEEE Applied Power Electronics Conference and Exposition, Feb. 6-10, 2000, 2, 1151-1156. |
Gordon, A.D. et al., "Typing a Multi-Language Intermediate Code," POPL '01, London, UK, Jan. 2001, 248-260. |
Goscinski, A. "Distributed Operating Systems The Logical Design", Addison-Wesley, 1991, 306-313. |
Gray, J. et al., "The Dangers of replication and a Solution", SIGMOD, (no month available) 1996, 25(2), 173-182. |
Greenwald, R. et al., "Oracle Essentials: Oracle 8 & Oracle 8i", MultiUser Concurrency, Oct. 1999, Ch. 7, 7 pages. |
Guy, R.G. et al., "Implementation of the Ficus Replicated File System", Proceedings of the Summer USENIX Conference, Jun. 1990, 63-71. |
Harrison, C.J. et al., "Structure Editors: User-Defined Type Values and Type Inference", IEEE, 2000, 241-247. |
Haverlock, K., "Object Serialization, Java, and C++", Dr. Dobb's Journal, 1998, 23(8), 32, 34, 36-37. |
Hay, David C, "Data Model Patterns: Convention of Thought", (Dorset House Publishing, New York, NY 1996, 47-67, 235-259. |
Helal, S. et al., "A Three-tier Architecture for Ubiquitous Data Access", Computer Systems and Applications ACS/IEEE, Jun. 2001, 177-180. |
Hernandez, M.A. et al, "The Merge/Purge Problem for Large Databases, International Conference on Management of Data and Symposium on Principles of Database Systems", Proceedings of the 1995 ACM SIGMOD International Conference on Management of Data, 1995, 127-138. |
Hsiao, H.I. et al., "DLFM: A Transactional Resource Manager", SIGMOD, Proceedings of the 2000 ACM SIGMOD International Conference on Management of Data, 2000, 518-528. |
Huang, Yun-Wu. et al., "Lightweight Version Vectors for Pervasive Computing Devices", IEEE, 2000, 43-48. |
If A1 is the Answer, What was the Question? An Edgy Na'if's Retrospective on Promulgating the Trusted Computer Systems Evaluation Criteria, by Marvin Schaefer, 20th Annual Computer Security Applications Conference, 2004, Publication Date: Dec. 6-10, 2004, pp. 204-228. * |
Ingalls et al., "Back to the future: the story of squek, a practical smalltalk written in itself", SIGPLAN Not. 32, Oct. 10, 1997, 318-326. |
Ip et al., "Complex Objects in Knowledge-Based Requirement Engineering", IEEE, (no month available) 1991, 8-15. |
Kaneko, K, et al, "Design of 3D CG Data Model of Move Animation Database System", Advanced Database Research and Development Series, vol. 3, Proceedings of the Second Far-East Workshop On Future Database Systems, 1992, 364-372. |
Kaneko, K. et al., Towards Dynamics Animation on Object-Oriented Animation Database System Move, Advanced Database Research and Development Series, vol. 4, Database Systems for Advanced Applications 1993, 3-10. |
Katz, R.H., "Toward a Unified Framework for Version Modeling in Engineering Databases", ACM Computing Surveys, 1990, 22(4), 375-408. |
Kawabe, S. et al, "A Framework for 3D Modeling Constraint-Based Description and Non-Manifold Geometric Modeling", A Collection of Contributions based on Lectures Presented at the 2d Toyota Conference, Organization of Engineering Knowledge for Product Modelling in Computer Integrated Manufacturing, Japan, Oct. 2-5, 1988, 325-357. |
Kempfer, L., "CAD Jumps on Windows 3.1 Bandwagon", Computer Aided Engineering, 1993, 24-25. |
Khan, L. et al, A Performance Evaluation of Storing XML Data in Relational Database Management Systems, WIDM, 2001, 31-38. |
Khoshafian, S. et al, "Object Identify", OOPSLA'86, 1986, 21, 406-416. |
Kiesling, R., "ODBC in UNIX Environments", Dr. Dobb's Journal, Dec. 2002, 27(12), 16-22. |
King et al, "TriStarp- An Investigation into the Implementation and Exploitation of Binary Relational Storage Structures", Proc. 8.sup.th BNCOD(British National Conference On Data Bases), pp. 64-84 (York 1990). |
Kistler, J.J. et al., "Disconnected Operation in the Coda File System", ACM Transactions on Computer Systems, Feb. 1992, 10(1), 3-25. |
Kistler, J.J. et al., "Increasing File System Availability through Second-Class Replication", IEEE, (no month available) 1990, 65-69. |
Krouse, J.K., "Geometric Models for CAD/CAM", Machine Design, Jul. 24, 1990, 99-105. |
LeBlanc, Andrew R., et al, "Design Data Storage and Extraction Using Objects,"Concurrent Engineering: Research and Applications, 1993, 1, 31-38. |
Leontiev, Y. et al, "On Type Systems for Object-Oriented Database Programming Languages", ACM Computing Surveys, Dec. 2002, 34(4), 409-449. |
Liebig et al., "A publish/Subscribe CORBA Persistent State Service Prototype", Middleware 2000 IFIP/ACM International Conference on Distributed Platforms, NY, NY, Apr. 2000, 25 pages. |
Lim, J.B. et al, "Transaction Processing in Mobile, Heterogeneous Database Systems", IEEE Trans. on Knowledge and Data Engineering, 2002,14(6), 1330-1346. |
Lublinsky, B., "Approaches to B2B Integration," EAI Journal, Feb. 2002, 1-10. |
Mallet, S. et al., "Myrtle: A Set-Oriented Meta-Interpreter Driven by a Relational Trace for Deductive Databases Debugging", Lecture Notes in Computer Science, 1999, 1559, 328-330. |
Mariani, J. A., Oggetto: "An Object Oriented Database Layered on a Triple Store", The Computer Journal , 1992, 35(2),108-118. |
Mazzola Paluska, J. et al., "Footloose: A Case for Physical Eventual Consistency and Selective Conflict Resolution", Proceedings of the 5th IEEE Workshop on Mobile Computing Systems and Applications, 2003, 170-179. |
Mazzola Paluska, J. et al., "Footloose: A Case for Physical Eventual Consistency and Selective Conflict Resolution", Proceedings of the 5th IEEE Workshop on Mobile Computing Systems and Applications, 2003, 170-179. |
McClanahan, C.R., "Apache Struts API Documentation: Class Redirect Tag," Version 1.1.1.1, Mar. 11, 2003, 10 pages. |
McMahon, L.E, "SED-A Non-Interactive Text Editor", Bell Laboratories, Aug. 15, 1978, 10 pages. |
Melton, J. et al, "SQL and Management of External Data", SIGMOD Record, Mar. 2001, 30(1), 70-77. |
Mitchell, W.J., "The Logic of Architecture", Massachusetts Institute of Technology, 1990, 139-143 . |
Modi, T., "Clean Up Your Wire Protocol with SOAP," Java World, Apr. 27, 2001, Part 2, 15 pages. |
Navathe, S.B., "Evolution of Data Modeling for Databases," Communications of the ACM, Sep. 1992, 35(9), 112-123. |
Nelson, M. et al, "Generic Support for Caching and Disconnected Operation", 4th Workshop on Workstation Operating Systems, Oct. 1993, 61-65. |
Nijssen, G.M. et al., "Conceptual Schema and Relational Database Design, A Fact Oriented Approach", Department of Computer Science, University of Queensland, Prentice Hall, 10-33, 42-43, 48-51, 156-170. |
Oracle 9i SQL Reference, Release 2 (9.2), Mar. 2002, 13-89 to 13-90. |
Orenstein, J, et al, "Query Processing in the Object Store Database System", ACM SIGMOD International Conference on Management of Data, Jun. 1992, 21(2),403-412. |
Ottogalli, F.G. et al., "Visualisation of Distributed Applications for Performance Debugging",Lecture Notes in Computer Science, Jan. 2001, 2074, 831-840. |
Pachet, et al, "A Combinatorial Approach to Content-Based Music Selection", Multimedia Computing and Systems, Jun. 7, 1999, 457-462. |
Papiani, M. et al, "A Distributed Scientific Data Archive Using the Web, XML and SQL/MED", SIGMOD Record, Sep. 1999, 28(3), 56-62. |
Plattner, C. et al., "Ganymed: Scalable Replication for Transactional Web Applications", IFIP International federation for Information Processing, (no month available) 2004, 155-174. |
Powell, M., "Object, References, Identifiers, and Equality White Paper", (Jul. 2, 1993), OMG TC Document 93.7.5, 1-24. |
Prague et al., Access 97 Bible, IDG Books Worldwide, Jan. 20, 1997, pp. 3, 18, 675, 676, 688. |
Prosise, J., "2-D Drafting: Why Pay More?", PC Magazine: The Independent Guide to IBM-Standard Personal Computing, 1993, 12(4), 255-289. |
Ramsey, N. et al., "An Algebraic Approach to File Synchronization", Software Engineering Notes, Association for Computing Machinery, Sep. 2001, 26(5), 175-185, XP002295139. |
Read, III, B.C., "Developing the Next Generation Cockpit Display System", IEEE Aerospace and Electronics Systems Magazine, 1996, 11(10), 411-415. |
Reiner, A. et al., "Benefits of X-based Three-Tier Client/Server Model with ESRI Applications", Virtual Solutions, 1995, 9 pages. |
Rizzo, T., "Introduction to Using ADO 2.5 with Microsoft Exchange 2000," Microsoft Website, Nov. 2000, 11 pages. |
Rouse, N. E., "CAD Pioneers are Still Trailblazing" , Machine Design, Oct. 22, 1987, 59(25),117-122. |
Roussopoulos, N. et al., "Using Semantic Networks for Data Base Management", Proceedings of the 1st Supplemental VLDB Conference, 1975, 144-172. |
Sandhu et al., "A secure kernelized architecture for multilevel object-oriented databases", IEEE, Computer Security Foundations Workshop IV, 1991. Proceedings, Jun. 18-20, 1991, 139-152. |
Santos, J.L.T. et al., "Computer Aided Mechanical Engineering Design Environment for Concurrent Design Process", Proceedings of the 1993 ITEC Workshop on Concurrent Engineering, May 4-6, 1993, Simulation in Concurrent Engineering, 71-83. |
Seshadri, P. et al., "SQLServer for Windows Ce-a Database Engine for Mobile and Embedded Platforms", Data Engineering, Proceedings of the 16th International Conference, IEEE Computer Society, Mar. 2000, 642-644. |
Seshadri, P., "Enhanced Abstract Data Types in Object-Relational Databases", The VLDB Journal, The International Journal on Very Large Databases, 1998, 7, 130-140. |
Shapiro, M. et al., "Managing Databases with Binary Large Objects", IEEE, (no month available) 1999, 185-193. |
Simon, A.R., Strategic Database Technology: Management for the Year 2000, 1995, pp. 6-9, 14-17, 55-57, Morgan Kaufmann Publishers. |
Singer, J., "JVM versus CLR: A Comparative Study," PPPJ 2003, Kilkenny City, Ireland, Jun. 16-18, 2003, 167-169. |
Singhal, A. et al., "DDB: An Object Design Data Manager for VLSI CAD", Association for Computer Machinery, 1993, 467-470. |
Soundarajan et al., Fifth International Conference on Software reuse ICSR, (no month available) 1998, 206-215. |
Sreekanth, U. et al., "A Specification Environment for Configuring a Discrete-Part Manufacturing System Simulation Infrastructure", International Conference on Systems, Man and Cybernetics, Oct. 17-20, 1993, 1, 349-354. |
Sreenath, N., "A Hybrid Computation Environment for Multibody Simulation", Mathematics and Computers in Simulation1992, 121-140. |
Stevens, T., "Value in 3-D", Industry Week, Jan. 8, 1995, 45-46. |
Stonebraker, M., "The Case for Partial Indexes", SIGMOD Record, 1989, 18(4), 4-9. |
Strickland, T.M., "Intersection of Relational and Object", Proceedings of the AM/FM International Conference XVII, Mar. 14-17, 1994, 69-75. |
Sutherland, J. et al., "The Hybrid Object-Relational Architecture (HORA), An Integration of Object-Oriented and Relational Technology", Applied Computing: States of the Art and Practice, 1993, 326-333. |
Suzuki, H. et al., "Geometric Modeling for Modeling Products", Proceedings of the Third international Conference on Engineering Graphics and Descriptive Geometry, Jul. 11-16, 1988, Vienna Austria, 2, 237-243. |
Taylor, R.H. et al., "An Integrated Robot System Architecture", Proceedings of the IEEE, Jul. 1983, 71(7), 842-856. |
Varlamis I. et al., "Bridging XML-Schema and Relational Databases. A System for generating and Manipulating Relational Databases using Valid XML Documents", DocEng' Ol, Nov. 9-10, 2001. |
Wang et al., paper on (OS) application programming interfaces (APIs), IEEE Communications Magazine, Oct. 2001, 102-113. |
Watanabe, S., "Knowledge Integration for Architectural Design", Knowledge-Based Computer-Aided Architectural Design, 1994, 123-146. |
Waugh, A., "Specifying Metadata Standards for Metadata Tool Configuration", Computer Networks and ISDN Systems, 1998, 30, 23-32. |
Wilcox, J., "Object Databases-Object Methods in Distributed Computing", Dr. Dobbs Journal, Nov. 1994, 19(13), 26-34. |
Wold, E. et al., "Content-Based Classification, Search, and Retrieval of Audio", IEEE Multimedia, IEEE Computer Society, 1996, 3, 27-36. |
Yoshikawa, M. et al., "XRel: A Path-Based Approach to Storage and Retrieval of XML Documents Using Relational Databases", ACM Transactional on Internet technology, Aug. 2001, 1(1), 110-141. |
Cited By (9)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US20100145913A1 (en) * | 2008-12-08 | 2010-06-10 | Bank Of America Corporation | Data environment change notification |
US9330197B2 (en) * | 2008-12-08 | 2016-05-03 | Bank Of America Corporation | Data environment change notification |
US9471618B2 (en) | 2008-12-08 | 2016-10-18 | Bank Of America Corporation | Data environment change notification |
US9477700B2 (en) | 2008-12-08 | 2016-10-25 | Bank Of America Corporation | Data environment change notification |
US20100217872A1 (en) * | 2009-02-26 | 2010-08-26 | Microsoft Corporation | Notification model over a server-to-server connection pool |
US8886787B2 (en) * | 2009-02-26 | 2014-11-11 | Microsoft Corporation | Notification for a set of sessions using a single call issued from a connection pool |
US20110125648A1 (en) * | 2009-11-20 | 2011-05-26 | Michael Price | Method and apparatus for maintaining high data integrity and for providing a secure audit for fraud prevention and detection |
US8805925B2 (en) * | 2009-11-20 | 2014-08-12 | Nbrella, Inc. | Method and apparatus for maintaining high data integrity and for providing a secure audit for fraud prevention and detection |
US10127562B2 (en) | 2009-11-20 | 2018-11-13 | Nbrella, Inc. | Method and apparatus for maintaining high data integrity and for providing a secure audit for fraud prevention and detection |
Also Published As
Publication number | Publication date |
---|---|
US20060195456A1 (en) | 2006-08-31 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
US7543003B2 (en) | Providing change notifications to an entity-regarding a change of a specific type to data in a relational database | |
US7502807B2 (en) | Defining and extracting a flat list of search properties from a rich structured type | |
US8356288B2 (en) | Method and apparatus for monitoring runtime of persistence applications | |
US7454516B1 (en) | Scalable virtual partitioning of resources | |
US7805408B2 (en) | Unified mechanism for presenting and resolving grouped synchronization conflicts | |
US7805422B2 (en) | Change notification query multiplexing | |
US6321219B1 (en) | Dynamic symbolic links for computer file systems | |
EP2143051B1 (en) | In-memory caching of shared customizable multi-tenant data | |
JP5787963B2 (en) | Computer platform programming interface | |
US7152224B1 (en) | Versioned project associations | |
US8112424B2 (en) | Flexible and resilient information collaboration management infrastructure | |
JP4738908B2 (en) | System and method for providing contention processing for peer-to-peer synchronization of units of information manageable by a hardware / software interface system | |
US7634728B2 (en) | System and method for providing a runtime environment for active web based document resources | |
US7349929B2 (en) | Accessing data based on user identity | |
US6163802A (en) | Message tracking system | |
US6772159B1 (en) | System and method for disconnected database access by heterogeneous clients | |
US20120272221A1 (en) | Rule based data driven validation | |
KR20050001422A (en) | Registering for and retrieving database table change information that can be used to invalidate cache entries | |
US7503075B2 (en) | Access trimmed user interface | |
US20080005062A1 (en) | Component for extracting content-index data and properties from a rich structured type | |
US7533157B2 (en) | Method for delegation of administrative operations in user enrollment tasks | |
US7113979B1 (en) | System, method and article of manufacture for enhancing electronic messages | |
US20060271384A1 (en) | Reference data aggregate service population | |
US8015570B2 (en) | Arbitration mechanisms to deal with conflicting applications and user data | |
US7991737B2 (en) | Synchronization of records of a table using bookmarks |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
AS | Assignment |
Owner name: MICROSOFT CORPORATION, WASHINGTON Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:FANG, LIJIANG;YUAN, HUA;REEL/FRAME:017106/0099 Effective date: 20050223 |
|
STCF | Information on status: patent grant |
Free format text: PATENTED CASE |
|
FEPP | Fee payment procedure |
Free format text: PAYOR NUMBER ASSIGNED (ORIGINAL EVENT CODE: ASPN); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY |
|
FPAY | Fee payment |
Year of fee payment: 4 |
|
AS | Assignment |
Owner name: MICROSOFT TECHNOLOGY LICENSING, LLC, WASHINGTON Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:MICROSOFT CORPORATION;REEL/FRAME:034543/0001 Effective date: 20141014 |
|
MAFP | Maintenance fee payment |
Free format text: PAYMENT OF MAINTENANCE FEE, 8TH YEAR, LARGE ENTITY (ORIGINAL EVENT CODE: M1552) Year of fee payment: 8 |
|
FEPP | Fee payment procedure |
Free format text: MAINTENANCE FEE REMINDER MAILED (ORIGINAL EVENT CODE: REM.); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY |
|
LAPS | Lapse for failure to pay maintenance fees |
Free format text: PATENT EXPIRED FOR FAILURE TO PAY MAINTENANCE FEES (ORIGINAL EVENT CODE: EXP.); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY |
|
STCH | Information on status: patent discontinuation |
Free format text: PATENT EXPIRED DUE TO NONPAYMENT OF MAINTENANCE FEES UNDER 37 CFR 1.362 |
|
FP | Lapsed due to failure to pay maintenance fee |
Effective date: 20220928 |