1 / 8

FLOW OF OPERATIONS

FLOW OF OPERATIONS. Use functions Adjust distributions Adjust columns Adjust tables Create test database Click-Once generation. Choose output size Choose output format Correct data types Add/Remove columns Change data types Set bindings. FEATURES. Support for bad DB design

franciscoh
Télécharger la présentation

FLOW OF OPERATIONS

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. FLOW OF OPERATIONS • Use functions • Adjust distributions • Adjust columns • Adjust tables • Create test database • Click-Once generation • Choose output size • Choose output format • Correct data types • Add/Remove columns • Change data types • Set bindings

  2. FEATURES • Support for bad DB design • DBMS independent • ”Real” and synthetic data • Data protection • Excel-like functions • Advanced data bindings • Automatic fast modeling • Easy annotations • Composite key support • Many output options • Extensible • ”Dirty” data

  3. EXTENSIBLE ARCHITECTURE Kernel System Supplied Varchar Int ... Normal Uniform ... MS SQL Oracle ... File Stream ... Mult Add ... User Extension TinyInt ... LogNormal ... Database ... ... Log10 ...

  4. DATA DEPENDENCIES COMPOSITE PK-FK BINDINGS PROJECT WORKS_ON INTRA-ROW BINDINGS EMPLOYEE Composite Primary/Foreign-keys

  5. DATA DEPENDENCIES INTER-COLUMN BINDINGS STOCK COMBINED BINDINGS STOCK

  6. TPC-C PERFORMANCE

  7. INHERITED DATATYPE EXAMPLE(C#) TinyInt <<interface>> DataType Int 1 class TinyInt : Int { 2 private bool useBaseData = false; 3 public override void PutData(IDataReader dr) { 4 base.PutData(dr); 5 if (dist.GetMaxValues() > 255 || dist.GetMinValues() < 0) 6 useBaseData = true; 7 } 8 public override string GetDataItem( string[] tuple) { 9 if (!useBaseData) 10 return base.GetDataItem(tuple); • Else • return (string)rnd.NextDouble() * 55; • } • public override bool CreatesDirtyData() { • return false; • } } +PutData(DataReader) +GetDataItem(string[]) +CreatesDirtyData() ... ... DATATYPE EXAMPLE

  8. DEMONSTRATION

More Related