Repository.DataWarehouse.SaveRawDataSet

From ReliaWiki
Revision as of 21:35, 23 July 2015 by Kate Racaza (talk | contribs)
Jump to navigation Jump to search
APIWiki.png


Member of: SynthesisAPI10.Repository


Saves a new RawDataSet object, which represent a Synthesis Data Warehouse (SDW) data collection, to the repository. Returns a Boolean value; when true, indicates a successful save.

Syntax

.DataWarehouse.SaveRawDataSet(DataSet)

Parameters

DataSet

The RawDataSet object to be added. (Required)

Example

VBA|VB.NET 

 'Add code to connect to a Synthesis repository. 
  Dim MyRepository As New Repository
 ... 

  'Add code to create and populate a new SDW data collection. 
 Dim RDSet As New RawDataSet
 ... 

 'Save the data collection to the Synthesis repository. The data will be visible in the Synthesis repository upon refresh.  
 Call MyRepository.DataWarehouse.SaveRawDataSet(RDSet)