Class IngresVectorwiseLoader

  • All Implemented Interfaces:
    org.pentaho.di.core.ExtensionDataInterface, HasLogChannelInterface, org.pentaho.di.core.logging.LoggingObjectInterface, org.pentaho.di.core.logging.LoggingObjectLifecycleInterface, org.pentaho.di.core.variables.VariableSpace, StepInterface

    public class IngresVectorwiseLoader
    extends BaseStep
    implements StepInterface
    Performs a streaming bulk load to a VectorWise table. Based on Sven Boden's Oracle Bulk Loader step
    Since:
    14-apr-2009
    Author:
    matt
    • Method Detail

      • execute

        public boolean execute​(IngresVectorwiseLoaderMeta meta)
                        throws org.pentaho.di.core.exception.KettleException
        Throws:
        org.pentaho.di.core.exception.KettleException
      • createCommandLine

        public String createCommandLine​(IngresVectorwiseLoaderMeta meta)
                                 throws org.pentaho.di.core.exception.KettleException
        Create the command line for a sql process depending on the meta information supplied.
        Parameters:
        meta - The meta data to create the command line from
        Returns:
        The string to execute.
        Throws:
        org.pentaho.di.core.exception.KettleException - Upon any exception
      • processRow

        public boolean processRow​(StepMetaInterface smi,
                                  StepDataInterface sdi)
                           throws org.pentaho.di.core.exception.KettleException
        Description copied from interface: StepInterface
        Perform the equivalent of processing one row. Typically this means reading a row from input (getRow()) and passing a row to output (putRow)).
        Specified by:
        processRow in interface StepInterface
        Overrides:
        processRow in class BaseStep
        Parameters:
        smi - The steps metadata to work with
        sdi - The steps temporary working data to work with (database connections, result sets, caches, temporary variables, etc.)
        Returns:
        false if no more rows can be processed or an error occurred.
        Throws:
        org.pentaho.di.core.exception.KettleException
      • verifyDatabaseConnection

        protected void verifyDatabaseConnection()
                                         throws org.pentaho.di.core.exception.KettleException
        Throws:
        org.pentaho.di.core.exception.KettleException
      • checkSqlProcessRunning

        public boolean checkSqlProcessRunning​(Process sqlProcess)