Repository.DataWarehouse.SaveRawDataSet

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


Member of: SynthesisAPI10.Repository


Adds a new Synthesis Data Warehouse (SDW) data collection to a Synthesis repository. Returns a Boolean value; when true, indicates a successful save.

Syntax

.DataWarehouse.SaveRawDataSet(DataSet)

Parameters

DataSet

Required. The RawDataSet object to be added.

Example

VBA 

 '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
 ... 

 'Add the data collection to the Synthesis repository.  
 Call MyRepository.DataWarehouse.SaveRawDataSet(RDSet)
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
 ... 

 'Add the data collection to the Synthesis repository.  
 MyRepository.DataWarehouse.SaveRawDataSet(RDSet)