Tabnine Logo
JobLogTable.setTableName
Code IndexAdd Tabnine 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)

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

  • Reactive rest calls using spring rest template
  • findViewById (Activity)
  • getContentResolver (Context)
  • getExternalFilesDir (Context)
  • BufferedImage (java.awt.image)
    The BufferedImage subclass describes an java.awt.Image with an accessible buffer of image data. All
  • PrintWriter (java.io)
    Wraps either an existing OutputStream or an existing Writerand provides convenience methods for prin
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
  • ThreadPoolExecutor (java.util.concurrent)
    An ExecutorService that executes each submitted task using one of possibly several pooled threads, n
  • JFrame (javax.swing)
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • 14 Best Plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now