Codota Logo
JobLogTable.setTableName
Code IndexAdd Codota to your IDE (free)

How to use
setTableName
method
in
org.pentaho.di.core.logging.JobLogTable

Best Java code snippets using org.pentaho.di.core.logging.JobLogTable.setTableName (Showing top 4 results out of 315)

  • Common ways to obtain JobLogTable
private void myMethod () {
JobLogTable j =
  • Codota IconJobMeta jobMeta;jobMeta.getJobLogTable()
  • Smart code suggestions by Codota
}
origin: pentaho/pentaho-kettle

private void getJobLogTableOptions( JobLogTable jobLogTable ) {
 // The connection...
 //
 jobLogTable.setConnectionName( wLogconnection.getText() );
 jobLogTable.setSchemaName( wLogSchema.getText() );
 jobLogTable.setTableName( wLogTable.getText() );
 jobLogTable.setLogInterval( wLogInterval.getText() );
 jobLogTable.setLogSizeLimit( wLogSizeLimit.getText() );
 jobLogTable.setTimeoutInDays( wLogTimeout.getText() );
 for ( int i = 0; i < jobLogTable.getFields().size(); i++ ) {
  TableItem item = wOptionFields.table.getItem( i );
  LogTableField field = jobLogTable.getFields().get( i );
  field.setEnabled( item.getChecked() );
  field.setFieldName( item.getText( 1 ) );
 }
}
origin: pentaho/pentaho-kettle

jobMeta.setJobversion( getString( rootNode, PROP_JOB_VERSION ) );
jobMeta.setJobstatus( (int) rootNode.getProperty( PROP_JOB_STATUS ).getLong() );
jobMeta.getJobLogTable().setTableName( getString( rootNode, PROP_TABLE_NAME_LOG ) );
origin: pentaho/pentaho-kettle

jobLogTable.setTableName( XMLHandler.getTagValue( jobnode, "logtable" ) );
jobLogTable.setBatchIdUsed( "Y".equalsIgnoreCase( XMLHandler.getTagValue( jobnode, "use_batchid" ) ) );
jobLogTable.setLogFieldUsed( "Y".equalsIgnoreCase( XMLHandler.getTagValue( jobnode, "use_logfield" ) ) );
origin: pentaho/pentaho-kettle

jobMeta.getJobLogTable().setTableName(
 jobRow.getString( KettleDatabaseRepository.FIELD_JOB_TABLE_NAME_LOG, null ) );
jobMeta.getJobLogTable().setBatchIdUsed(
org.pentaho.di.core.loggingJobLogTablesetTableName

Popular methods of JobLogTable

  • getLogSizeLimit
  • setLogSizeLimit
  • getDatabaseMeta
  • getLogInterval
    Get the logging interval in seconds. Disabled if the logging interval is
  • getTableName
  • setConnectionName
  • getDefault
  • isBatchIdUsed
  • isLogFieldUsed
  • setAllGlobalParametersToNull
  • setBatchIdUsed
  • setLogFieldUsed
  • setBatchIdUsed,
  • setLogFieldUsed,
  • setLogInterval,
  • <init>,
  • clone,
  • findField,
  • getActualSchemaName,
  • getActualTableName,
  • getFields

Popular in Java

  • Making http post requests using okhttp
  • requestLocationUpdates (LocationManager)
  • getContentResolver (Context)
  • getExternalFilesDir (Context)
  • InputStream (java.io)
    A readable source of bytes.Most clients will use input streams that read data from the file system (
  • HttpURLConnection (java.net)
    An URLConnection for HTTP (RFC 2616 [http://tools.ietf.org/html/rfc2616]) used to send and receive d
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • DecimalFormat (java.text)
    DecimalFormat is a concrete subclass ofNumberFormat that formats decimal numbers. It has a variety o
  • HttpServlet (javax.servlet.http)
    Provides an abstract class to be subclassed to create an HTTP servlet suitable for a Web site. A sub
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now