J
Java Database Connectivity (JDBC)
A standard protocol used to access databases in a platform-independent manner.
Contrast with
data element
JDBC
See Java Database Connectivity (JDBC).
job
In BIRT iHub System, a request from a user to convert the format of a report, generate a report, or print a report. Converted and generated files are stored in a volume. A job schedule specifies the date, time, and recurrence of a job.
Related terms
BIRT iHub System, job schedule, report, request, volume
Contrast with
completed job, pending job, running job, scheduled job
job completion notice
Information about the status of a report scheduled to run, convert to a specified format, or print. This information includes success or failure status, the name of the executable file or source document, any output document, and messages showing the progress of the job. A completion notice links to the resulting report document. A temporary report does not generate a completion notice.
Related terms
job, report, run, temporary report
job schedule
A schedule to run a report or convert a BIRT document to a different format. BIRT iHub System supports running jobs at one or more specified times or intervals.
Related terms
BIRT iHub System, job, report, run
Contrast with
completed job, pending job, scheduled job
join
A SQL (Structured Query Language) query operation that combines records from two tables and returns them in a result set based on the values in the join fields. For example, customer and order tables are joined on a common field such as customer ID. The result set contains combined customer and order records in which the customer IDs are equal. The WHERE clause in the following SQL SELECT statement shows joins that use the custID columns:
SELECT customers.custID, orders.orderID, orders.shipByDate
FROM customers, orders
WHERE customers.custID = orders.custID
ORDER BY customers.custID, orders.shipByDate, orders.orderID
Related terms
field, result set, SQL SELECT statement, table
Contrast with
inner join, join condition, outer join
join condition
A condition that specifies a match in the values of related fields in two tables. Typically, the values are equal. For example, if two tables have a field called customer ID, a join condition exists where the customer ID value in one table equals the customer ID value in the second table.
Related terms
field, join, table
joint data set
A data set that combines data from two or more data sets.
Related terms
data, data set
JSAPI (Actuate JavaScript API)
See Actuate JavaScript API (JSAPI).