-
Notifications
You must be signed in to change notification settings - Fork 1
/
paper.txt
8267 lines (8267 loc) · 549 KB
/
paper.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Methods and Tools for Data Value Re-Engineering.
Active Database Technology Supports Cancer Clustering.
Dynamic Maps as Composite Views of Varied Geographic Database Servers.
An Intelligent Database System Application: The Design of EMS.
Text / Relational Database Management Systems: Harmonizing SQL and SGML.
Database Management for Real-Time Applications.
A Zoomable DBMS for Brain Structure, Function and Behavior.
Using Next generation Databases to Develop Financial Applications.
A Multidatabase Solution for a Financial Application.
Visualizing and Querying Distributed Event Traces with Hy+.
Object View Broker: A Mediation Service And Architecture to Provide Object-Oriented Views of Heterogeneous Databases.
A Notation for Describing Aggregate Relationships in an Object-Oriented Data Model.
Intelligent Networks as a Data Intensive Application (INDIA).
An Architecture for a Cooperative Database System.
Using an Extended ER-Model Based Data Dictionary to Automatically Generate Product Modeling Systems.
Combining Computation with Database Access in Biomolecular Computing.
Modeling Activities of Application Domains.
Limits Database for an Environmental Information System - A Fuzzy Set-based Querying Approach.
Efficient Image Retrieval By Color Contents.
A Gateway from DBPL to Ingres.
An Object-Oriented Database of Protein Structure Data.
Applying Next Generation Object-Oriented DBMS to Finite Element Analysis.
A Personal and Portable Database Server: the CQL Card.
Fast Document Ranking for Large Scale Information Retrieval.
Federation and Stepwise Reduction of Database Systems.
Enhancing Pre-existing Data Managers with Atomicity and Durability.
Spatial Databases.
A Physician's Workstation as an Application of Object-Oriented Database Technology in Healthcare.
Temporal Database Technology for Air Traffic Flow Management.
A DBMS-Based Multimedia Archiving Teleservice Incorporating Mail.
STAR - A Multimedia Database System For Trademark Registration.
Developing the Singapore National Information Infrastructure.
The Evolution of User Interface Tools for Database Applications.
Perfect Encoding: a Signature Method for Text Retrieval.
S-Index: a Hybrid Structure for Text Retrieval.
A Graphical Yet Formalized Framework for Specifying View Systems.
Adding View Support to ODMG-93 (Invited Paper).
Partial Replication of Object-Oriented Databases.
Towards Variability Modelling for Reuse in Hypermedia Engineering.
The Low-Level Support and Logging for Flexible Transactions.
ARIES/NT Modified for Advanced Transactions Support.
Key Integrity for Cooperative Database Environments with Stationary and Mobile Hosts.
The Impact of Using Class Inheritance in a Distributed Information System.
Social Network Problem in Enron Corpus.
Word-Based Compression Methods and Indexing for Text Retrieval Systems.
Multidimensional Enterprise Modelling using a Temporal Object-oriented Model with Roles.
View Definitions with Parameters.
Workflow Management Systems (Abstract).
An Abstract Database Machine for Cost Driven Design of Object-Oriented Database Schemas.
Data Ring: Let Us Turn the Net into a Database!
Systematization of Approaches to Equality-Generating Constraints.
SnoopIB: Interval-Based Event Specification and Detection for Active Databases.
Efficient and Coordinated Checkpointing for Reliable Distributed Data Stream Management.
Formalization and Detection of Events over a Sliding Window in Active Databases Using Interval-Based Semantics.
Transforming an Entity-Relationship Schema into Object-Oriented Database Schemas.
Data Re-Engineering - A Case Study.
Declarative Data Fusion - Syntax, Semantics, and Implementation.
OLAP Query Evaluation in a Database Cluster: A Performance Study on Intra-Query Parallelism.
Interfacing of Object Analysis and Design Methods with the Method for Interoperable Information Systems Design.
Computational Database Technology Applied to Option Pricing Via Finite Differences.
Parallel Databases: Structured Query Optimization.
A New Class Hierarchy Concurrency Control Technique in Object-Oriented Database Systems.
ML-1-2PC: An Adaptive Multi-level Atomic Commit Protocol.
Component-Based Information Systems Development Tool Supporting the SYNTHESIS Design Method.
A Family of the ODMG Object Models.
Information Sources Registration at a Subject Mediator as Compositional Development.
Mining Fuzzy Classification Rules Using an Artificial Immune System with Boosting.
Extension of Compositional Information Systems Development for the Web Services Platform.
Component Framework for Strategic Supply Network Development.
Ontology Specification and Integration Facilities in a Semantic Interoperation Framework.
Domain Based Identification and Modelling of Business Component Applications.
From Parallel Databases to Distributed Data Management in High Performance Networks: A New Challenge for Database Research (Abstract).
Conceptual Data Modeling, Implementation Prototyping, Transformation, and Application Design - An Animating Approach using RADD.
ModParOpt: A Modular Query Optimizer for Multi-Query Parallel Databases.
Bioinformatics Databases: State of the Art and Research Perspectives.
User Modelling for Conceptual Database Design Based on an Extended Entity Relationship Model: A Preliminary Study Relationship Model.
Higher Level Query System Based on Supercombinators.
Keyword Assignment to Images Using Sliding Windows.
Object-Oriented Data Base Management System with Functional Data Manipulation Language (Abstract, Poster).
A Query Language for Similarity-Based Retrieval of Multimedia Data.
On Time Complexity of Distributed Algorithms for Generalized Deadlock Detection.
Designing Databases Using the Activity Paradigm.
Access Control in an Object-Oriented Document Repository.
A Database Interface Integrating a Querying Language for Versions.
Workflow Management System Using Mobile Agents.
Clustering-Based Materialized View Selection in Data Warehouses.
A Middleware-Based Approach to Database Caching.
Multiway-Tree Retrieval Based on Treegrams.
Modeling of Dynamic Internet Transactional Workflows.
Towards the Semantic Web - An Approach to Reverse Engineering of Relational Databases to Ontologies.
On the Estimation of Query Execution Time in Object-Oriented Databases at the Early Design Stages.
Time: A Coordinate for Web Site Modelling.
Transforming Conceptual ER Schema into Object-Oriented Databases.
Semantic Web Services: The Future of Integration!
Agent-Based Traveling.
The Business Rules Repository for Information Systems Design.
Encapsulating Expert Systems for Reuse in the SYNTHESIS Environment (Extended Abstract, Poster).
WWW Access to a Philological Application.
Indexing XML to Support Path Expressions.
A Framework to Analyse and Evaluate Information Systems Specification Languages.
Proximity Determination and its Optimization for Semistructured Data.
A Framework for Merging, Repairing and Querying Inconsistent Databases.
Visually Mining on Multiple Relational Tables at Once.
Caching for Mobile Communication.
Containment of inequality queries revisited.
A Flexible Framework for a Correct Database Design.
Efficient Monitoring of Patterns in Data Mining Environments.
User Adapted Queries for Automated Selection and Sequencing of Learning Resources.
Towards Integrated Computer Aided Systems and Software Engineering Tool for Information Systems Design.
Integrated Web-Database Applications for Electronic Business (Extended Abstract).
Composition Models of Object-Oriented Databases.
Transformation from Requirements to Design for Service Oriented Information Systems.
Composition Approach to Systematic Development of Database Systems.
Spatial-match Iconic Image Representation Schemes Supporting Ranking for Indexing and Querying in Visual Databases.
Declarative Languages of Composition Database Development Method.
Motown: A Practical Approach to Workflows.
Centralized versus Distributed Index Schemes in OODBMS - A Performance Analysis.
Physical Structures Design For Relational Databases.
Optimizing Command Logs by Exploiting Semantic Knowledge.
Speeding up the Counting Method by Computing Heritage Functions in Topological Order.
MF-Retarget: Aggregate Awareness in Multiple Fact Table Schema Data Warehouses.
Semistructured Data Store Mapping with XML and Its Reconstruction.
Data Integration Using DataPile Structure.
Efficient Region Query Processing by Optimal Page Ordering.
Update Propagation in Deductive Databases Using Soft Stratification.
Specialization and Generalization in an Object Oriented Database.
Operations for Conceptual Schema Manipulation: Definitions and Semantics.
Value-Added Databases: Knowledge Discovery and Evidential Reasoning (Invited Paper).
On Efficient Query Evaluation in Multidatabase Systems.
Autonomous Applications - Towards a Better Data Integration Model.
Efficient Cache Management Protocol Based on Data Locality in Mobile DBMSs.
Static Analysis of Structural Recursion in Semistructured Databases and Its Consequences.
Comparison of the Decision Support Systems and the Transaction Support System Development Methodologies.
Concept Bases and Algebraic Modeling Methods (Extended Abstract).
A New Approach to Inferences of Semantic Constraints.
Energy Efficient Transaction Processing in Mobile Broadcast Environments.
Multirepresentation in Ontologies.
Algorithms for Rewriting Aggregate Queries Using Views.
Modeling Facilities for the Component-based Software Development Method.
Approximate Algorithms for Distance-Based Queries in High-Dimensional Data Spaces Using R-Trees.
Managing Schemata for Semistructured Databases Using Constraints.
VA-Files vs. R*-Trees in Distance Join Queries.
A New Technique to Speedup Queries in Data Warehousing.
Distance Join Queries of Multiple Inputs in Spatial Databases.
A Multi-Level Logic Programming Model of a Query Optimizer.
Duality between Document Structures and Data Base Structures.
The Impact of Buffering on Closest Pairs Queries Using R-Trees.
Object Oriented Markup Language and Restructuring Hierarchical Database Objects.
The Cause-Effect Rules of ROSES.
Conceptual Content Management for Software Engineering Processes.
Views in Object-Oriented Databases (Invited Paper).
Testing Containment of XPath Expressions in Order to Reduce the Data Transfer to Mobile Clients.
Reusing Analysis Schemas in ODB Applications: a Chart Based Approach.
Association Rule Discovery in Highly-Correlated Data: a Case Study in Web Usage Mining.
Relationship Design Using Spreadsheet Reasoning for Sets of Functional Dependencies.
X-Warehousing: An XML-Based Approach for Warehousing Complex Data.
Databases Evolution: A Metaobject Approach.
Trust Is not Enough: Privacy and Security in ASP and Web Service Environments.
Containment of Conjunctive Queries with Built-in Predicates with Variables and Constants over any Ordered Domain.
Hierarchical Data Cube for Range Queries and Dynamic Updates.
Revisiting R-Tree Construction Principles.
Spatial Temporal Queries and Triggers for Managing Moving Objects.
Magic Sets vs. SLD-Resolution.
Dflow: A Workflow Process Management System.
SLDMagic - An Improved Magic Set Technique.
A Preprocessor Approach to Persistent C++.
Designing an Object-Relational Data Warehousing System: Project ORDAWA.
On Deploying and Executing Data-Intensive Code on SMart Autonomous Storage (SmAS) Disks.
The Problem of Knowledge Synthesis in Distributed Information Environment.
A Meta Model for Structured Workflows Supporting Workflow Transformations.
Logical Design of Generalizations in Object-relational Databases.
Architecture of Pattern Management Software System.
CSP with Record Data Type for Supporting Transaction Systems Specification.
Spatio-Temporal Geographic Information Systems: A Causal Perspective.
On Harmonically Combining Active, Object-Oriented, and Deductive Databases.
Cooperative Transaction Processing between Clients and Servers.
Query Containment with Negated IDB Predicates.
Performance Assesment Framework for Distributed Object Architectures.
Modelling of an Engine Based Approach to the Decision Support.
Client-Side Dynamic Preprocessing of Transactions.
The Notion of ``Classes of a Path'' in ER Schemas.
Inductive Reasoning Using Thesaurus.
Many-Dimensional Schema Modeling.
Type Associations Identified to Support Information Resource Reuse in Megaprogramming.
Admissible Record-Oriented Evaluation Plans for Declarative Updates.
Homogeneous Localization of Structural Interactivity Dependencies in Megaprograms using Scripts.
Using Queries with Multi-Directional Functions for Numerical Database Applications.
Method for Data Models Integration in the Common Paradigm.
Recent Progress in Data Integration - A Tutorial.
Compositional Specification Calculus for Information Systems Development.
Database Research Activities in Russia: a Brief Overview.
An RMM-Based Methodology for Hypermedia Presentation Design.
Query Rewriting Using Views in a Typed Mediator Environment.
Semantic Optimization of Queries in Deductive Object-Oriented Database.
Extensible Canonical Process Model Synthesis Applying Formal Interpretation.
Appropriateness of the Activity-centred Graphs in Information System Modelling.
Type Inferencing Based on Complete Type Specifications.
Extracting Theme Melodies by Using a Graphical Clustering Algorithm for Content-Based Music Information Retrieval.
Incremental View Maintenance for Data Warehousing.
Disjunctive Rules, Maybe Tuples and Null Values: Logic Programs with Incomplete Information.
Ubiquitous Web Applications.
Probability-Based Tile Pre-fetching and Cache Replacement Algorithms for Web Geographical Information Systems.
Object-Oriented Tools for Functional Processing of Application Domain Model.
The Arc-Tree: A Novel Symmetric Access Method for Multidimensional Data.
An Abstract Algebra for Knowledge Discovery in Databases.
BiChord: An Improved Approach for Lookup Routing in Chord.
A Web-Based System for Handling Multidimensional Information through MXML.
The Gr_Tree: The Use of Active Regions in G-Trees.
Formalisation of Geographical Database Specifications.
Evaluation of a Broadcast Scheduling Algorithm.
Grouped Processing of Relational Algebra Expressions over Data Streams.
An On-Line Reorganization Framework for SAN File Systems.
An Efficient Storage Manager.
An Axiomatic Approach to Defining Approximation Measures for Functional Dependencies.
A Transaction Model For Handling Composite Events.
Symbolic Music Genre Classification Based on Note Pitch and Duration.
Towards Automatic Eps Calculation in Density-Based Clustering.
Relaxation of Correctness in Database Systems.
Safety, Translation and Evaluation of Alignment Calculus.
A Hybrid Keyword Search across Peer-to-Peer Federated Databases.
A Validation System for Object Oriented Specifications of Information Systems.
Concurrency Control in Active Database Systems with Prioritised Rules.
The Revolution in Database System Architecture.
Active System for Heterogeneous ODBMS Using Mobile Rule Codes.
Reasoning on Workflow Executions.
The Sybil Database Integration and Evolution Environment: An Overview.
Tools for Chimera: An Environment for Designing and Prototyping Advanced Applications in an Active DOOD Model.
Evolving Persistent Applications on Commercial Platforms.
Towards an Exhaustive Set of Rewriting Rules for XQuery Optimization: BizQuery Experience.
Combining Tree Structure Indexes with Structural Indexes in Query Evaluation on XML Data.
XQuery Function Inlining for Optimizing XQuery Queries.
Efficient Processing SAPE Queries Using the Dynamic Labelling Structural Indexes.
Schema-based Query Optimization for XQuery Queries.
A Prototype for Translating XQuery Expressions into XSLT Stylesheets.
Using XSLT Stylesheets to Transform XPath Queries.
2-D Spatial Indexing Scheme in Optimal Time.
Satisfiability-Test, Rewriting and Refinement of Users' XPath Queries According to XML Schema Definitions.
Panel: Object Models and Beyond.
Managing Multimedia Information in a Database Environment - A Tutorial.
Cooperative Recognition of Interdatabase Dependencies.
Data Mining in a Multidimensional Environment.
Time Series Relation Data Model.
Modeling of Census Data in a Multidimensional Environment.
Meta-Level Transformations in Systems Integration.
A Closed Approach to Vague Collections in Partly Inaccessible Distributed Databases.
Object-Oriented Data Model for Data Warehouse.
Compressing Large Signature Trees.
Discovery of Object-Oriented Schema and Schema Conflicts (Extended Abstract).
Continuous Trend-Based Classification of Streaming Time Series.
Flattening the Metamodel for Object Databases.
Towards the Object Persistence via Relational Databases.
Value-serializability and an Architecture for Managing Transactions in Multiversion Objectbase Systems.
Term Weighting in Query-Based Document Clustering (Extended Abstract).
A Strategy for Evaluating Web-Based Discretionary Decision Support Systems.
Describing the Data Mining Process with DMSL.
Semistructured Data: The Tsimmis Experience.
Intelligent Support for Information Retrieval in WWW Environment.
A New High-Dimensional Index Structure Using a Cell-Based Filtering Technique.
SBQL Views - Prototype of Updateable Views.
Complex Temporal Patterns Detection over Continuous Data Streams.
Updatable XML Views.
Drill-Across Based on Association Rules.
Distributed Information Systems (Extended Abstract).
XML Databases and Beyond - Plenty of Architectural Challenges Ahead.
A data model for annotated programs.
Database Caching - Towards a Cost Model for Populating Cache Groups.
Indexing XML Data with UB-trees.
More Functional Dependencies for XML.
Query Rewriting and Search in CROQUE.
taDOM: A Tailored Synchronization Concept with Tunable Lock Granularity for the DOM API.
On the Ordering of Rewrite Rules (Extended Abstract).
MARS: A Retrieval Service for Multimedia Authoring Environments.
Optimistic Concurrency Control Algorithm with Dynamic Serialization Adjustment for Firm Deadline Real-Time Database Systems.
Relation-Collapse: An Optimisation Technique for the Similarity Algebra.
Mining around Association and Representative Rules.
Preloading Browsers for Optimizing Automatic Access to Hidden Web: A Ranking-Based Repository Solution.
Two Phase Locking-Based Algorithm with Partial Abort for Firm Deadline Real-Time Database Systems.
Non-destructive Integration of Form-Based Views.
On a Concept of Scalable Security: PKI-based Model using Additional Cryptographic Modules.
Schema Derivation for WWW Information Sources and Their Integration with Databases in Bioinformatics.
Rule-Based Generation of XML DTDs from UML Class Diagrams.
Multiple k Nearest Neighbor Query Processing in Spatial Network Databases.
A Content-Based Music Retrieval System Using Multidimensional Index of Time-Sequenced Representative Melodies from Music Database.
IRO-DB An Object-Oriented Approach towards Federated and Interoperable DBMS (Invited Paper).
Heuristic Algorithms for Inter-Query Scheduling in Database Systems.
Integration and Handling of Hypermedia Information as a Challenge for Multimedia and Federated Database Systems.
A Timeout-Based Mobile Transaction Commitment Protocol.
Searching for Similar Trajectories on Road Networks Using Spatio-temporal Similarity.
SYNTHESIS Implementation Architecture Design by Commutative Object Models Mapping.
Monitoring Continuous Location Queries Using Mobile Agents.
MediaStore: World Wide Web Access to Multimedia Database Systems.
Association Rules... and What's Next? Towards Second Generation Data Mining Systems.
Enhancing the Functionality of the Web.
Future Data Management: "It's Nothing Business
Object-Oriented Database Programming Languages and Query Optimization (Extended Abstract).
An Object Evaluator to Generate flexible Applications (Extended Abstract).
An Access Method for Integrating Multi-scale Geometric Data.
Database and Information Systems Research in Yugoslavia.
A Model for Querying Annotated Documents.
Software Quality and Life Cycles.
Preface.
Implementation of UNIDOOR, a Deductive Object-Oriented Database System.
Evaluation of Join Strategies for Distributed Mediation.
An Architecture for Natural Language Dialog Applications in Data Exploration and Presentation Domain.
Efficient Similarity Search in Feature Spaces with the Q-Tree.
Optimistic Concurrency Control Based on Timestamp Interval for Broadcast Environment.
Using Step-Wise Refinement to Build a Flexible Lightweight Storage Manager.
Organizational Modeling for Efficient Specification of Information Security Requirements.
Object-Oriented Database as a Dynamic System with Implicit State.
An Integrated Framework for Meta Modeling.
A Formal Model for the Problem of View Selection for Aggregate Queries.
A New Algorithm for Page Access Sequencing in Join Processing.
A Declarative Way of Extracting XML Data in XSL.
Managing Schema Versions in Object-Oriented Databases.
Non-blocking Materialized View Creation and Transformation of Schemas.
An Optimal Divide-Conquer Algorithm for 2D Skyline Queries.
System Defined Prewrites for Increasing Concurrency in Databases.
Data Organization Issues for Location-Dependent Queries in Mobile Computing.
On the Correctnes of Virtual Partition Algorithm in a Nested Transaction Environment.
Evaluation of Data Modeling.
Towards Intelligent Information Retrieval Engines: A Multi-agent Approach.
Long-Term Temporal Data Representation of Personal Health Data.
On Modeling Closed Entity-Relationship Diagrams in an Elementary Mathematical Data Model.
UCYMICRA: Distributed Indexing of the Web Using Migrating Crawlers.
Active and Passive Rules in Database Systems: How Do They Relate? (Invited Paper).
Ipmicra: Toward a Distributed and Adaptable Location Aware Web Crawler.
Temporal Data Model.
CFP Taxonomy of the Approaches for Dynamic Web Content Acceleration.
Architecture of a Blended-Query and Result-Visualization Mechanism for Web-Accessible Databases and Associated Implementation Issues.
A Semantic Query Optimization Approach to Optimize Linear Datalog Programs.
Template Based, Designer Driven Design Pattern Instantiation Support.
Distributed Searching of k-Dimensional Data with Almost Constant Costs.
Optimal Database Locks for Efficient Integrity Checking.
Towards Collaborative Video Authoring.
Efficient Integrity Checking for Databases with Recursive Views.
Vague Spatial Data Types, Set Operations, and Predicates.
Variations of R-Tree Structure for Indexing of Spatial Objects.
Concurrency Control Protocol for Nested Transactions in Real-Time Databases.
Spatial Joins and R-trees.
An Indexing Algorithm for Text Retrieval.
Trust for Electronic Commerce Transactions.
Design and Implementation of a Novel Approach to Keyword Searching in Relational Databases.
Capturing Fuzziness and Uncertainty of Spatiotemporal Objects.
Optimising Performance of Object-Oriented and Object-Relational Systems by Dynamic Method Materialization.
Usable Recursive Queries.
A DataGuide-Based Concurrency Control Protocol for Cooperation on XML Data.
ICB-Index: A New Indexing Technique for Continuous Time Sequences.
Concept: A Language for Conceptual Modelling.
Database Research and Development in Japan.
Object Query Optimization in the Stack-Based Approach.
A Deductive Object-Oriented Approach to Information System Modeling.
Query Optimization through Removing Dead Subqueries.
Towards a Unified Model of Untyped Object Stores: Experience with the Tycoon Store Protocol.
Model-Theoretical and Deductive Approaches to Databases from the Point of Algebraic Logic and Geometry.
Integration of Schemas Containing Data Versions and Time Components.
Relational Database Equivalence Problem.
PPPA: Push and Pull Pedigree Analyzer for Large and Complex Pedigree Databases.
Database Research in Czech Republic.
A Standard for Representing Multidimensional Properties: The Common Warehouse Metamodel (CWM).
Towards Data and Object Modelling.
A Data Model for Flexible Querying.
Migrating Data-Oriented Applications to a Relational Database Management System.
Towards a Realistic Model of Indices in Object Bases.
Location Awareness of Information Agents.
Event Database Processing.
Semantic Similarity in Content-Based Filtering.
Reassessing the Roles of Negotiation and Contracting for Interoperable Databases (Invited Paper).
A Rule-Oriented Architecture to Incorporate Dissemination-Based Information Delivery into Information Integration Environments.
Combining Content-Based and Collaborative Filtering.
Workflow Management in the Internet Age.
ePERT: Extending PERT for Workflow Management System.
Active and Nomadic Transactions in Mobile Databases.
The Use of Aggregate and Z Formal Methods for Specification and Analysis of Distributed Systems.
Flexible Integration of Optimistic and Pessimistic Concurrency Control in Mobile Environments.
Mobile Transaction Management in Mobisnap.
Dynamic Changes in Workflow Participant Assignment.
STARBASE: A Deductive System Based on Chart Parsing
Process Query Language: A Way to Make Workflow Processes More Flexible.
Ensemble Feature Selection Based on Contextual Merit and Correlation Heuristics.
Optimizing Knowledge Discovery over the WWW.
Cognitive Load Effects on End User Understanding of Conceptual Models: An Experimental Analysis.
IndML - An Industrial Markup Language.
CASE-Repository for Project Descriptions: Standardization Directions (Extended Abstract, Poster).
Intelligent Multi-agent Based Database Hybrid Intrusion Prevention System.
Hierarchical Bitmap Index: An Efficient and Scalable Indexing Technique for Set-Valued Attributes.
Towards Quadtree-Based Moving Objects Databases.
Hierarchical Materialisation of Method Results in Object-Oriented Views.
An Object Data Warehousing Approach: a Web Site Repository.
Optimizing Pattern Queries for Web Access Logs.
Detecting Termination of Active Database Rules Using Symbolic Model Checking.
Pattern-Oriented Hierachical Clustering.
Quantifier-Elimination for the First-Order Theory of Boolean Algebras with Linear Cardinality Constraints.
SQL-Like Language for Database Mining.
The Expressivity of Constraint Query Languages with Boolean Algebra Linear Cardinality Constraints.
The Design of a High Performance Video Server for Managing TV Archives.
Transformation of UML Models into XML.
Translating Relational Queries to Object-Oriented Queries According to ODMG-93.
A Benchmarking Technique for DBMS's with Advanced Data Models.
Propagation of Structural Modifications to an Integrated Schema.
A Multilingual Information System Based on Knowledge Representation.
Finding Generalized Path Patterns for Web Log Data Mining.
Size Estimation of the Intersection Join between Two Line Segment Datasets.
Designing an Intellligent Secision Aiding System Using a Multiagent Approach.
S*-Tree: An Improved S+-Tree for Coloured Images.
From Workflows to Service Composition in Virtual Enterprises.
Identification of Versions in Databases of Software Components.
From Transactions to Transactional Workflows: Technology and Applications.
nP-Tree: Region Partitioning and Indexing for Efficient Path Planning.
Transactional Workflow Management in Distributed Systems (Invited Paper).
Using Ontologies for Database Query Reformulation.
Evolutionary Learning of Boolean Queries by Genetic Programming.
An Analysis of Alternative Methods for Storing Semistructured Data in Relations.
The System DIKE: Towards the Semi-Automatic Synthesis of Cooperative Information Systems and Data Warehouses.
Designing Persistence for Real-Time Distributed Object Systems.
A Statistics Propagation Approach to Enable Cost-Based Optimization of Statement Sequences.
Concurrency Control Protocols for Persistent Shared Virtual Memory Systems (Extended Abstract).
Towards Multimedia Fragmentation.
Prototyping a Categorial Database in P/FDM.
Integration of Web Information Sources by Mobile Users: Navigational Style of Integration and System Architecture.
On Modal Deductive Databases.
A High-Level Language for Specifying XML Data Transformations.
An Advanced Processing Environment for Managing the Continuous and Semistructured Features of Multimedia Content.
Portability of STDL on Top of the TUXEDO Transaction Monitor.
Concurrency Control in Distributed Object-Oriented Database Systems.
Presentation of a Methodology to Help the Researcher in his Experimental Process.
Main-Memory Management in Temporal Object Database Systems.
A Distributed Algorithm for Global Query Optimization in Multidatabase Systems.
Design Issues in Transaction-Time Temporal Object Database Systems.
A Distributed Architecture for Integrated Access to Legacy Database Systems.
Object and Log Management in Temporal Log-Only Object Database Systems.
A Modeling Tool for Workload Analysis and Performance Tuning of Parallel Database Applications.
Efficient Use of Signatures in Object-Oriented Database Systems.
A Flexible Personalization Architecture for Wireless Internet Based on Mobile Agents.
Data Mining Query Language for Object-Oriented Database.
Integrating Bibliographical Data from Heterogeneous Digital Libraries.
Algebraic Semantics of XML Schema.
Infrastructure for Information Spaces.
An XML Algebra for XQuery.
HM data Model and its Formal Definition.
Indices for Set-Theoretical Operations in Object Bases.
Multiple Range Query Optimization in Spatial Databases.
The MaStA I/O Cost Model and its Validation Strategy.
Reasoning About Web Information Systems Using Story Algebras.
Subject-Oriented Work: Lessons Learned from an Interdisciplinary Content Management Project.
Component-Based Modeling of Huge Databases.
Discovering Emerging Topics in Unlabelled Text Collections.
Triggering Replanning in an Integrated Workflow Planning and Enactment System.
Extending Transaction Closures by N-ary Termination Dependencies.
Computing Rules for Detecting Contradictory Transaction Termination Dependencies.
Database Systems as Middleware-Events, Notification, Messages.
Content Is Capricious: A Case for Dynamic System Generation.
Beyond Databases: An Asset Language for Conceptual Content Management.
Efficient Main-Memory Algorithms for Set Containment Join Using Inverted Lists.
How to Integrate Heterogeneous Spatial Databases in a Consistent Way?
Multiversion Data Broadcast Organizations.
Similar Sub-t7trajectory Retrieval for Moving Objects in Spatio-temporal Databases.
X2QL: An eXtensible XML Query Language Supporting User-Defined Foreign Functions.
Multi-source Materialized Views Maintenance: Multi-level Views.
Three Layer Evolution Model for XML Stored in Relational Databases.
Optimization of Storage Structures of Complex Types in Object-Relational Database Systems.
Revisiting M-Tree Building Principles.
PM-tree: Pivoting Metric Tree for Similarity Search in Multimedia Databases.
Enhancing an Extensible Query Optimizer with Support for Multiple Equivalence Types.
Navigation Through Query Result Using Concept Order.
Using Data Warehouse Resources for Assessment of E-Learning Influence on University Processes.
D-ARIES: A Distributed Version of the ARIES Recovery Algorithm.
SDQNET: Semantic Distributed Querying in Loosely Coupled Data Sources.
Integrating Caching Techniques on a Content Distribution Network.
Accommodating Changes in Semistructured Databases Using Multidimensional OEM.
Implementing a Query Language for Context-Dependent Semistructured Data.
Modeling and Storing Context-Aware Preferences.
GeoQA: a Visual Query and Analysis Tool for Geographic Information System Applications.
Interactive Discovery and Composition of Complex Web Services.
Applying CSP-like Workflow Process Specifications for their Refinement in AMN by Pre-existing Workflows.
Catalogues from a New Perspective: A Data Structure for Physical Organisation.
How to Manage Evolution in OODB?
Extending the Gemstone Smalltalk Interface Debugger to cope with Active Database Components.
Untyped Queries, Untyped Reflective Machines and Conditional Quantifiers.
Using XML and Regular Expressions in the Syntactic Analysis of Inflectional Language.
Infinite Relations in Paraconsistent Databases.
The User as Navigator.
Functional and Multivalued Dependencies for L-Relations.
Developing a Concept of Personal Database.
Decision Committee Learning with Dynamic Integration of Classifiers.
Dynamic Integration of Classifiers in the Space of Principal Components.
Arbiter Meta-Learning with Dynamic Selection of Classifiers and Its Experimental Investigation.
The Probabilistic Algorithm for Mining Frequent Sequences.
Deriving Relationships between Integrity Constraints for Schema Comparison.
Consistent Handling of Integrity Constraints and Extensional Assertions for Schema Integration.
Multiversion Linear Quadtree for Spatio-Temporal Data.
Processing of Spatio-Temporal Queries in Image Databases.
A Practitioner's View to the Integration of Virtual Enterprise Database Systems by Federation Techniques.
Deriving Type Conflicts and Object Cluster Similarities in Database Schemes by an Automatic and Semantic Approach.
Semantic Rules to Propagate Versions in Object-Oriented Databases.
Replication in Mirrored Disk Systems.
A Conceptual Graphs Approach for Business Rules Modeling.
On Business Rules Automation: The BR-Centric IS Development Framework.
Retrieval by Color Features in Image Databases.
Solving Stochastic Optimization in Distributed Databases Using Genetic Algorithms.
Modelling the Modification Component of an Information Service.
The Conceptual Optimization Technology of Data Base Systems Design.
Using Common Schemas for Information Extraction from Heterogeneous Web Catalogs.
Efficient XPath Evaluation.
Processing Sliding Window Join Aggregate in Continuous Queries over Data Streams.
``Tailor'' Approach to the Conceptual Database Design.
Computing Science Research Activities at the Faculty of Electrical Engineering, Computer Science and Informatics.
Object-Oriented Design of a Flexible Workflow Management System.
Transaction Management in Databases Supporting Collaborative Applications.
Clustering Techniques for Minimizing Object Access Time.
On the Analysis of On-Line Database Reorganization.
An Architecture for Work Flows Interoperability Supporting Electronic Commerce.
Making More Out of an Inconsistent Database.
Querying and Updating Constraint Databases with Incomplete Information.
Discovering Frequent Episodes in Sequences of Complex Events.
Interactive Constraint-Based Sequential Pattern Mining.
HASH-MINE: A New Frameword for Discovery of Frequent Itemsets.
Data Access Paths for Frequent Itemsets Discovery.
Evaluation of Common Counting Method for Concurrent Data Mining Queries.
Evaluation of the Mine-Merge Method for Data Mining Query Processing.
Itemset Materializing for Fast Mining of Association Rules.
Objects Relative to Conceptual Shell.
Object-Oriented Solutions.
Objects and their Computational Framework.
Building the Access Pointers to a Computation Environment.
A Multi-version Data Model and Semantic-Based Transaction Processing Protocol.
Efficiently Mapping Integrity Constraints from Relational Database to XML Document.
Deductive Object-Oriented Language and its Extension for Knowledge Information Processing (Invited Paper).
The System Prototyping Based on Integrated Models (Extended Abstract).
An Object Algebra for the ODMG Standard.
Formal Semantics of the ODMG 3.0 Object Query Language.
From a Database Programming Language to a Database Specification Language (Invited Paper).
Scalable Similarity Search in Computer Networks.
On Modeling Power of Object-Relational Data Models in Technical Applications.
Processing Distributed Compoud-Data Streams.
Storage and Control Model for Multimedia Objects (Extended Abstract, Poster).
FCBI: An Efficient User-Friendly Classifier Using Fuzzy Implication Table.
An Approach to Improve Text Classification Efficiency.
Supporting Interoperability of Autonomous Hospital Databases: A Case Study.
Human Resources Information Systems Improvement: Involving Financial Systems and Other Sources Data.
Fragmenting XML Documents via Structural Constraints.
Approximate Functional Dependencies for XML Data.
LORD: Lay-Out Relationship and Domain Definition Language.
Anatomy of a Data Stream Management System.
Design and Implementation of a Document Database Extension.
Efficient Processing Regular Queries In Shared-Nothing Parallel Database Systems Using Tree- And Structural Indexes.
Xeek: An Efficient Method for Supporting XPath Evaluation with Relational Databases.
Imprecise Data and Knowledge Based OLAP.
A Hybrid Ontology and Content-Based Search Engine For Multimedia Retrieval.
The MM-Tree: A Memory-Based Metric Tree Without Overlap Between Nodes.
Prediction of Bus Motion and Continuous Query Processing for Traveler Information Services.
Graphical Querying of Multidimensional Databases.
ETL Workflows: From Formal Specification to Optimization.
Combining Efficient XML Compression with Query Processing.
Improving the Performance of M-Tree Family by Nearest-Neighbor Graphs.
Harvesting and Organizing Knowledge from the Web.
Integrated Electronic Health Record Access by Object Object Versioning and Metadata.
Optimal Query Mapping in Mobile OLAP.
A Statistic Study for the ADBIS Period 1994-2006.
Applying User Profile Ontology for Mining Web Site Adaptation Recommendations.
Finding Communities in Site Web-Graphs and Citation Graphs.
Design of Web Agents Inspired by Brain Research.
RA: An XML Schema Reduction Algorithm.
Large Datasets Visualization with Neural Network Using Clustered Training Data.
Discretization Numbers for Multiple-Instances Problem in Relational Database.
A Protocol Ontology for Inter-Organizational Workflow Coordination.
Schema and Data Translation: A Personal Perspective.
A Fixpoint Approach to State Generation for Stratifiable Disjunctive Deductive Databases.
A Clustering Framework for Unbalanced Partitioning and Outlier Filtering on High Dimensional Datasets.
An Agile Process for the Creation of Conceptual Models from Content Descriptions.
Fast User Notification in Large-Scale Digital Libraries: Experiments and Results.
On the Effect of Trajectory Compression in Spatiotemporal Querying.
Incremental Validation of String-Based XML Data in Databases, File Systems, and Streams.
Update Support for Database Views Via Cooperation.
An Object-Oriented Based Algebra for Ontologies and Their Instances.
Preventing Orphan Requests by Integrating Replication and Transactions.
Quete: Ontology-Based Query System for Distributed Sources.
ODRA: A Next Generation Object-Oriented Environment for Rapid Database Application Development.
Bridging the Gap between Comparison and Conforming the Views in View Integration.
Database Implementation of a Model-Free Classifier.
Adaptive k-Nearest-Neighbor Classification Using a Dynamic Number of Nearest Neighbors.
Indexing Mobile Objects on the Plane Revisited.
Determining the Output Schema of an XSLT Stylesheet.
Aggregating Multiple Instances in Relational Database Using Semi-Supervised Genetic Algorithm-based Clustering Technique.
Fusing sensor information for location estimation.
Tailor-Made Native XML Storage Structures.
Novel Analysis Patterns in the Context of the Managed Investments Instruments.
Anomaly Detection Using Unsupervised Profiling Method in Time Series Data.
CUDL Language Semantics, Liven Up the FDB Data Model.
Business Rule Based Software System Configuration Management and Implementation Using Decision Tables.
Towards Self-Optimization of Message Transformation Processes.
Fast and Efficient Log File Compression.
A Method for Comparing Self-organizing Maps: Case Studies of Banking and Linguistic Data.
Clustering Approach to Generalized Pattern Identification Based on Multi-instanced Objects with DARA.
Towards the Design of a Scalable Email Archiving and Discovery Solution.
IDFQ: An Interface for Database Flexible Querying.
Extending Fagin's Algorithm for More Users Based on Multidimensional B-Tree.
Reclassification of Linearly Classified Data Using Constraint Databases.
Autonomic Databases: Detection of Workload Shifts with n-Gram-Models.
Multiple-Objective Compression of Data Cubes in Cooperative OLAP Environments.
On Top-kSearch with No Random Access Using Small Memory.
Improvement of Data Warehouse Optimization Process by Workflow Gridification.
Reducing Temporary Trees in XQuery.
Enabling XPath Optional Axes Cardinality Estimation Using Path Synopses.
Increasing Expressiveness of Composite Events Using Parameter Contexts.
Analysis and Interpretation of Visual Hierarchical Heavy Hitters of Binary Relations.
Evaluating Performance and Quality of XML-Based Similarity Joins.
Reference Management in a Loosely Coupled, Distributed Information System.
Dynamic Aggregation of Relational Attributes Based on Feature Construction.
HypereiDoc - An XML Based Framework Supporting Cooperative Text Editions, .
Preserving Functional Dependency in XML Data Transformation.
Randomization Techniques for Data Mining Methods.
Efficient Execution of Small (Single-Tuple) Transactions in Main-Memory Databases.
Predictive Join Processing between Regions and Moving Objects.
QUESTO: A Query Language for Uncertain and Exact Spatio-temporal Objects.
On some indexing technique for lock management in XML documents.
Cloud Computing - a new era in large scale information and data management systems.
Extensible Data Model.
Grouping Web Users based on Query Log.
CUDL Language Semantics: Authority Links.
Unifying Categorical Framework for Database Formal Models.
Pylonix: A Database Module for Collaborative Document Management.
Data Stream Analysis for Location-Aware Collaborative Information Retrieval.
Representation of Aggregated Data in Probabilistic OLAP Model.
nsP-index: A Robust and Persistent Index for Nucleotide Sequences.
An Advanced Transaction Model for Recovery Processing of Integration Processes.
Constructing of Mappings of Heterogeneous Information Models into the Canonical Models of Integrated Information Systems.
Automatic Service Composition in Large Federated Information Systems.
A Knowledge-Based Framework for Supporting and Analysing Loosely Structured Collaborative Processes.
Visitor Pattern Revisited for Recognition.
Internet-Scale Data Distribution: Some Research Problems.
Evaluation of XQuery Queries Using Lambda Calculi.
(Semi-)automatic data-adaptive ETL process framework.
Randomization Techniques for Data Mining Methods.
Cluster validity in high-dimensional space.
Minimal Coverings of Acyclic Database Schemata.
On the Properties of Join Dependencies.
A Formal Approach to Null Values in Database Relations.
Towards Designing Acyclic Database Schemes.
Nonmonotonic Reasoning and Databases.
Horizontal Decompositions for Handling Exceptions to Functional Dependencies.
On the Description of Database Transition Constraints Using Temporal Languages.
On Evaluation of Queries Containing Derived Relations in a Relational Data Base.
About Natural Logic.
Assigning Meaning to Ill-Defined Queries Expressed in Predicate Caculus Language.
Equations Compared with Clauses for Specification of Abstract Data Types.
Background for Advances in Data Base Theory.
Optimization in Deductive and Conventional Relational Database Systems.
A Decomposition Methodology for Cyclic Databases.
Eliminating Cycles in Database Schemas.
Compiling Constraint-Checking Programs from First-Order Formulas.
On Algebraic Query Processing in Logical Databases.
On th Undecidability of Equivalence Problems for Relational Expressions.
On the Feasibility of Informative Answers.
Reasoning with Data in a Deductively Augmented Data Management System.
Adequacy of Decompositions of Relational Databases.
Applications of Finite Differencing to Database Integrity Control and Query/Transaction Optimization.
Properties of Views and Their Implementation.
Decompositions of Relations: A Comprehensive Approach.
On the Integrity of Typed First Order Data Bases.
A Method for Helping Discover the Dependencies of a Relation.
Stepwise Construction of Algebraic Specifications.
Query Execution in the Presence of Data Skew in Parallel Databases.
Multiple Path Join for Nested Relational Databases.
Derivation of incremental equations for nested relations.
Multi-resolution Algorithms for Building Spatial Histograms.
A subsequence matching algorithm supporting moving average transform of arbitrary order in time-series databases using index interpolation.
Transformation selection for aptness-based web retrieval.
What's Special about Spatial?
A Model of Dynamic Resource Allocation in Workflow Systems.
Sanitisation as a Constraint on Multilevel Secure Relational Databases.
Robust Clustering of Large Data Sets with Categorial Attributes.
Design and Implementation of DB-MAN Alpha: Does Database Migration Work Well in a Real Environment?
A Generalized Modeling Framework for Schema Versioning Support.
The Complex Polyhedra Technique: An Index Structure for High-Dimensional Space.
Interoperation of Heterogeneous Data Sources - Are All the Problems Solved?
The Interval B-Tree: A New Time Indexing Structure.
Extending a Persistent Object Framework to Enhance Enterprise Application Server Performance.
Improved Retrieval Effectiveness Through Impact Transformation.
Optimization of Relational Preference Queries.
Index Compression Using Fixed Binary Codewords.
Efficient Matrix Based Transitive Closure Algorithms for Functional Dependency Graphs.
Adaptive Buffer Allocation.
The ELF Data Model and SCGL Query Language for Structured Document Databases.
A Petri Net-based Model for Web Service Composition.
Hypermedia Management in Large-Scale Information Systems Using the Functional Model of the Link.
Dynamic Restructuring of Recovery Nets.
Similarity-based algebra for multimedia database systems.
Query Classification in Multidatabase Systems.
Transformation and Reaction Rules for Data on the Web.
Smallest-First Query Evaluation for Database Systems.
An Integrated Architecture for Exploring, Wrapping, Mediating and Restructuring Information from the Web.
Issues in Active Databases.
Control of a Management Information System by Rules.
Parallel Document Retrieval Using the Connection Machine.
A Cryptographic Solution to Discretionary Access Control in Structurally Object-Oriented Databases.
Information Security in Mobile Databases.
Cooperative Query Answering for Semistructured Data.
Using Optimized Multi-Attribute Hash Indexes for Hash Joins.
Managing Persistent Objects in a Distributed Environment.
Holding a Page: Enhanced Page Level Access Control for Database Systems.
Efficient declustering techniques for temporal access structures.
Generalising Minimal Marginal Increase to Cluster Records in Multi-dimensional Data Files.
A Feedback Mechanism for Query by Navigation.
Incremental View Maintenance.
The Intelligent Developer: Towards the Automated Implementation of Information Systems.
Reasoning about participation constraints and Chen's constraints.
Using KL-ONE Knowledge Representation Techniques to Structure Active Database Rules.
Challenges in Enterprise Search.
Mapping Relational Queries to Network Queries.
How Valuable is External Link Evidence When Searching Enterprise Webs?
Questioning Query Expansion: An Examination of Behaviour and Parameters.
Object Placement in Parallel OODBMS.
Towards a Protection Model for Supporting Multiple Access Control Policies.
Querying Heterogeneous Databases Using Standardized Schemas and SQL.
Interconnection Topologies for Shared Nothing DBMS Architectures.
Methods of Integrating Knowledge-Based and Database Systems.
Computer Supported Query Formulation in an Evolving Context.
Large Multidatabases: Beyond Federation and Global Schema Integration.
Declarative Link Specifications for Reuse of Hypermedia.
Towards a Practical Auditing Method for the Prevention of Statistical Database Compromise.
Constructing Good Quality Web Page Communities.
A New Approach to Indexing in High-Dimensional Space.
Utilizing Hyperlink Transitivity to Improve Web Page Clustering.
Towards OM - An Object-Oriented Implementation of Mantra.
Diagonal Ordering: A New Approach to High-Dimensional KNN Processing.
Reverse Engineering Using Verbalization Techniques.
Using Association Rules to Make Rule-based Classifiers Robust.
Horizontal Partitioning for Distributed Database Design: A Graph-Based Approach.
Abstraction techniques for Conceptual Schema.
A Query Mediation Approach to Interoperability of Heterogeneous Databases.
A Compression Scheme for Large Databases.
Shared Result Identification for Materialized View Selection.
Customizing Internal Activity Behaviour for Flexible Process Enforcement.
On Aggregation Issues in Spatial Data Management.
Querying Databases of Annotated Speech.
Querying web distributed databases for XML-based E-businesses: requirement analysis, design, and implementation.
A Design Process of Databases Based on a Fuzzy Object-Oriented Approach.
Path Materialization Revisited: An Efficient Storage Model for XML Data.
Improving Integrity Checking by Compiling Derivation Paths.
View updates in a semantic data modelling paradigm.
Integrity Checking in Deductive Databases - the Ultimate Method?
An algorithm for the induction of defeasible logic theories from databases.
Querying Recursive Structures without Recursive Queries.
Schemes of Storing XML Query Cache.
Determining the Fitness of a Document Model by Using Conflict Instances.
Deferred Incremental Refresh of XML Materialized Views : Algorithms and Performance Evaluation.
Optimizing The Lazy DFA Approach for XML Stream Processing.
O-Storage: A Self Organizing Multi-Attribute Storage Technique for Very Large Main Memories.
Representing and Reasoning on XForms Document.
Using Ontologies to Index Conceptual Structures for Tendering Automation.
Datalog Rule Evaluation in Associative Computers and Massively Parallel SIMD Machines.
Syntactically Recognizable Modularly Stratified Programs.
A Query-sensitive Cost Model for Similarity Queries with M-tree.
Hybrid Concurrency Control in Database Systems.
Category-Theoretic Co-Products, Schema Discrepancies and Role Abstractions in Information Systems.
Design of Object-Oriented Databases - From Functional Specifications to Object Structures.
Database Support For Multiresolution Terrain Visualization.
A Critical Analysis of Distributed Database Recovery Protocols.
A Distance-Based Packing Method for High Dimensional Data.
Automated Discovery of Search Interfaces on the Web.
Automated Data Warehousing for Rule-based CRM Systems.
Performance and Cost Tradeoffs in Web Search..
On the Implication Problem for Functional Dependencies in the Higher-Order Entity-Relationship Model.
Merging Results From Isolated Search Engines.
A comparison of multi-level concurrency control protocols.
Exploring Bit-Difference for Approximate KNN Search in High-dimensional Databases.
Enumerating XML Data for Dynamic Updating.
A Framework for Information Discovery Systems.
Verification of a Two Pass Restart Algorithm for ARIES.
Scheduling Issues in Partitioned Temporal Join.
A Comparison of Techniques for Selecting Text Collections.
WEB Community Mining and WEB Log Mining: Commodity Cluster Based Execution.
Indexing Structured Text for Queries on Containment Relationships.
Locality-Based Information Retrieval.
Conflict Scheduling of Transactions on XML Documents.
A Model for Transactional Workflows.
A parameterised algorithm for mining association rules.
A Query Language for EER Schemas.
Databases, But Not As We Know Them.
Using Weakest Preconditions to Simplify Integrity Constraint Checking.
Static Analysis of XSLT Programs.
Solving the Database Update Problem Using Linear Logic.
LSDX: A New Labelling Scheme for Dynamically Updating XML Data.
Querying Heterogeneous Databases: A Case Study.
Towards a temporal world-wide web: a transaction-time server.
Parallel Query Processing in Object-Oriented Database Systems.
Logging in Main Memory Databases.
Towards Semantic Understanding -- An Approach Based on Information Extraction Ontologies.
A Bayesian Approach to Use Emerging Patterns for Classification.
An Experimental System for Conceptual Evolution in Object Databases.
Recent Advances in Transaction Management.
A Normal Form on Functional Dependencies in Object-Oriented Data Models.
Serialisability and Snapshhot Isolation.
Web Service Composition Transaction Management.
Transactions in Loosely Coupled Distributed Systems.
Web Service Composition with Case-Based Reasoning.
On the Computation of Approximations of Database Queries.
Normalisation in the Presence of Lists.
Early Experience with Recursion Optimization in an Extensible Rewriter.
A New Graphical Method of Vertical Partitioning in Database Design.
XAL: An Algebra For XML Query Optimization.
Design and Implementation of the Omega Object-Based System.
Active Database Semantics.
Backward Step: the Right Direction for Production Workflow Systems.
A Guideline for Implementing Access Method Modules in Extensible DBMS MODUS.
On Efficient Management of XML Documents.
On Optimizing Uniformly Bounded Datalog Programs.
Spatial Joins by Precomputation of Approximations.
T-Tree or B-Tree: Main Memory Database Index Structure Revisited.
Document Classification via Structure Synopses.
A Collaborative Approach for Caching Dynamic Data in Portal Applications.
Efficient Rebalancing of Tree-Type Main Memory Dictionaries.
On Building Workflow Models for Flexible Processes.
Dynamic Verification of Temporal Constraints in Production Workflows.
A Path-based Relational RDF Database.
Database Standards: Silver Bullet or Boat Anchor?
A Connectionist View on Document Classification.
An algorithm for answering queries efficiently using views.
Assessment by belief.
Self-Indexing Inverted Files.
Improved Inverted File Processing for Large Text Databases.
Efficient Range Query Retrieval for Non-Uniform Data Distributions.
Efficient Partial-match Retrieval for Skewed Data Distributions.
Heuristic algorithms for I/O scheduling for efficient retrieval of large objects from tertiary storage.
Incremental maintenance of multi-source views.
A Semi-Structured Object Model with Relations.
Genomic Information Retrieval.
Finiteness Properties of Database Queries.
What's Next? Index Structures for Efficient Phrase Querying.
Fragmentation of Multidimensional Databases.
Unknown Value Lists and Their Use for Semantic Analysis in IDA - the Integrated Deductive Approach to Natural Language Interface Design.
Aggregate Predicate Support in DBMS.
Partial View Materialisation in Deductive Databases - An Empirical Study.
Four Layer Schema for Image Modeling.
Measuring similarity of interests for clustering web-users.
A Two-Phase Commit Protocol for Mobile Wireless Environment.
Discovering User Access Pattern Based on Probabilistic Latent Factor Model.
CrystalBall : A Framework for Mining Variants of Association Rules.
Schema Analysis: Methodology, Techniques, and Prototype.
B-trees: Bearing Fruits of All Kinds.
Describing capabilities of internet data sources for information discovery and sharing.
A Temporal Algebra Based on an Abstract Model.
Modeling Highly Variable Spatio-Temporal Data.
A Study of the Relationship Among Various Notions of Serializability.
An Access Control Method Based on the Prefix Labeling Scheme for XML Repositories.
Transaction Processing in Multidatabase Systems Without Atomic Commitment Protocol.
Performance Evaluation of Combining Data Migration and Method Migration in Object Database Environments.
A Powerful and SQL-Compatible Data Model and Query Language for OLAP.
Deriving Relation Keys from XML Keys.
Approximate Retrieval of XML Data with ApproXPath.
Currency Exchange Rate Forecasting From News Headlines.
On Balancing Workload in a Highly Mobile Environment.
Evolution support in large-scale interoperable systems: a metadata driven approach.
Classifying Text Documents by Associating Terms With Text Categories.
Multiresolution Amalgamation: Dynamic Spatial Data Cube Generation.
An agent-based approach for supporting cross-enterprise workflows.
Concepts for Multimedia Database Exploitation.
On Horizontal Fragmentation of Distributed Database Design.
Operational Semantics of Transactions.
Clustering Moving Objects for Spatio-temporal Selectivity Estimation.
Towards a General Theory for the Evolution of Application Domains.
Formal Authorisation Allocation Approaches for Permission-role Assignment Using Relational Algebra Operations.
TRACK : A Novel XML Join Algorithm for Efficient Processing Twig Queries.
Representation and Manipulation of Data Collections Using Generic Types.
Pointer Swizzling in Non-Mapped Object Stores.
A Heuristic Algorithm for Combining Fuzzy Results in Multimedia Databases.
An Integrated Concurrency Control Approach in Multidatabase Systems.
Ensuring Database Availability in Dynamically Changing Mobile Computing Environment.
M+-tree : A New Dynamical Multidimensional Index for Metric Spaces.
OS Support for a Commodity Database on PC clusters - Distributed Devices vs. Distributed File Systems.
On Decomposition of Functional Dependency Manipulation for Parallel Execution.
On the Average Storage Utilisation of hB Trees.
Credible Research: Case Studies from Information Retrieval.
Indexing in an Extensible Database System.
Storage Management for Files of Dynamic Records.
Mapping One-to-One Predicates to a Relational Schema.
Approximate data mining in very large relational data.
Metadata Management in Federated Multimedia Systems.
A multi-step strategy for approximate similarity search in image databases.
Towards an Accommodation of Delay in Temporal Active Databases.
Handling of current time in native XML databases.
UML and XML Schema.
Suffix arrays: what are they good for?
Handling Dynamic Schema Change in Process Models.
Peer-to-peer form based web information systems.
Data Flow and Validation in Workflow Modelling.
Can P2P become a disruptive technology to enterprise data processing?
A Framework for Application Evolution Management.
Incremental Mining for Temporal Association Rules for Crime Pattern Discoveries.
On the unification of query algebras and their extension to rational tree structures.
Horn clauses and functional dependencies in complex-value databases.
Design theory for advanced datamodels.
Using a temporal constraint network for business process execution.
Redundancy, Dependencies and Normal Forms for XML Databases.
A further study in the data partitioning approach for frequent itemsets mining.
Integrity Preserving Updates in Object-Oriented Databases.
Using reflection for querying XML documents.
Self-maintaining web pages: an overview.
Dynamic labeling schemes for ordered XML based on type information.
Replicated Fragment Allocation Using a Clustering Methodology.
Document generality: its computation for ranking.
Is Document Retrieval English Based?
A two-phase rule generation and optimization approach for wrapper generation.
Querying and Maintaining Ordered XML Data using Relational Databases.
An optimization for query answering on ALC database.
Implementation of Very Generalised Data Structures (Abstract).
A reconstruction-based algorithm for classification rules hiding.
Implementation of Very Generalised Data Structures.
OCP: a distributed real time commit protocol.
Avoiding Redundant Computations in Evaluating Linear Queries.
Discovering task-oriented usage pattern for web recommendation.
O-Trees: A Constraint-Based Index Structure.
Dimensionality reduction in patch-signature based protein structure matching.
Compacting Discriminator Information for Spatial Trees.
Recency-based collaborative filtering.
Pseudo-Naive Evaluation.
A new approach to intelligent text filtering based on novelty detection.
An Efficient Method for Indexing Now-relative Bitemporal data.
Establishing an XML metadata klnowledge base to assist integration of structured and semi-structured databases.
CT-ITL : Efficient Frequent Item Set Mining Using a Compressed Prefix Tree with Pattern Growth.
Development and Performance Analysis of a Temporal Persistent Object Store POST/C++.
Architecture of a Scalable Medical Imaging Server.
From WebArchive to WebDigest : Concept and Examples.
Are two pictures better than one?
Selectivity Estimation by Batch-Query based Histogram and Parametric Method.
Constructing a Legal Database on Quixote.
A CORBA Cooperative Cache Approach with Popularity Admission and Routing Mechanism.
Managing Ontologies: A Comparative Study of Ontology Servers.
Database Component Ware.
Pruning SIFT for Scalable Near-duplicate Image Matching.
Views of Objects and Rules.
Building a Disordered Protein Database: A Case Study in Managing Biological Data.
Finding Similarity in Time Series Data by Method of Time Weighted Moments.
Interoperability for Geospatial Analysis: a Semantics and Ontology-based Approach.
Do Clarity Scores for Queries Correlate with User Performance?
Computer Assisted Assessment of SQL Query Skills.
HyperStore: A Persistent Object Store for Next-Generation Applications.
Distributed Text Retrieval From Overlapping Collections.
View Relevance Driven Materialized View Selection in Data Warehousing Environment.
The Privacy of k-NN Retrieval for Horizontal Partitioned Data -- New Methods and Applications.
Armstrong Relations for Functional and Multivalued Dependencies in Relational Databases.
Optimizing XPath Queries on Streaming XML Data.
Key-Based Update Anomalies and the Justification for 4NF in Database Design.
Opinion Search in Web Logs.
Extending Iterators for Advanced Query Execution.
A Heuristic Approach to Cost-Efficient Derived Horizontal Fragmentation of Complex Value Databases.
A Caching Protocol to Improve CORBA Performance.
Continuously Maintaining Order Statistics over Data Streams.
Effective compression for the web: exploiting document linkages.
Efficient Similarity Search by Summarization in Large Video Database.
Rewriting General Conjunctive Queries Using Views.
Condensative Stream Query Language for Data Streams.
Removing XML Data Redundancies Using Functional and Equality-Generating Dependencies.
A heuristic approach to cost-efficient fragmentation and allocation of complex value databases.
Beyond Purpose-Based Privacy Access Control.
A Processing Model for the Optimal Querying of Encrypted XML Documents in XQuery.
Taming the Dynamics of Distributed Data.
Web Data Management.
Interactive Mining of Frequent Itemsets over Arbitrary Time Intervals in a Data Stream.
An XML Document Transformation Algorithm Inferred from an Edit Script between DTDs.
Drill Across and Visualization of Cubes with Non-conformed Dimensions.
An Integrated Access Control for Securely Querying and Updating XML Data.
A Comparative Study of Probabalistic and Language Models for Information Retrieval.
Infrastructure for Ubiquitous Services.
A Confidence Based Recognition System for TV Commercial Extraction.
Graph Mining based on a Data Partitioning Approach.
An Integrated Approach to Video Retrieval.
Semantics based Buffer Reduction for Queries over XML Data Streams.
Computing Structural Similarity of Source XML Schemas against Domain XML Schema.
Faster Path Indexes for Search in XML Data.
Content-based Image Retrieval Using Image Regions as Query Examples.
Data Reduction Approach for Sensitive Association Classification Rule Hiding.
A Typed Higher-Order Calculus for Querying XML Databases.
Enabling Resource-Awareness for In-Network Data Processing in Wireless Sensor Networks.
UserMap : an Adaptive Enhancing of User-Driven XML-to-Relational Mapping Strategies.
XML-Based Offline Website Generation.
Vector Space Ranking: Can We Keep it Simple?
Collection-Independent Document-Centric Impacts.
Generating and Comparing Models within an Ontology.
A Testbed for Indonesian Text Retrieval.
Managing Literature References with Topic Maps.
Supporting user task based conversations via e-mail.
Boolean Classifieds Manifold.
Automatic Categorization of Announcements on the ASX.
Co-Training on Textual Documents with a Single Natural Feature Set.
XML Document Retrieval with PADRE.
A Multi-Learner Approach to E-mail Classification.
Phrases and Feature Selection in E-Mail Classification.
Is CORI Effective for Collection Selection? An Exploration of Parameters, Queries, and Data.
Information Extraction in the KELP Framework.
Workflow Based Just-in-time Training.
Towards a New Approach to Tightly Coupled Document Collaboration.
Personal Information Management: Stuff I've Seen and Beyond.
Visual Displays for Browsing RDF Documents.
PoX: Merging Prolog and XML databases.
On the Effectiveness of Relevance Profiling.
Searching for Perfection.
Tibianna: A Learning-Based Search Engine with Query Refinement.
MyNewsWave: User-centered Web search and news delivery.
Visualisation of Document and Concept Spaces.