added some documentation

git-svn-id: https://svn.code.sf.net/p/jailer/code/trunk@1174 3dd849cd-670e-4645-a7cd-dd197c8d0e81
This commit is contained in:
rwisser
2017-04-05 11:36:23 +00:00
parent abbeeb5c2c
commit 6738338c11
4 changed files with 12 additions and 9 deletions

View File

@@ -106,8 +106,8 @@ DELETE statements for all exported rows which
are not associated with any non-exported row according to the
restricted data model.
Additionally tables can be excluded from deletion so that their rows
will never be deleted, see
step 2.<br>
will never be deleted (see
step 2)<br>
<h4><br>
Objective</h4>
Delete all projects which have ended before 2008-01-01. Delete all
@@ -154,7 +154,8 @@ Open the data model editor (<span style="font-style: italic;">Tools-&gt;Data
Model Editor</span>). Edit the table EMPLOYEE and switch on the
check-box "<span style="font-style: italic;">exclude from
deletion</span>".
Do the same with table ROLE.<br>
Do the same with table ROLE.<br>(Since version 6.7 it's also possible to do this via the table's context menu)<br>
<br>
<img alt="" src="delt3.gif" style="width: 600px; height: 350px;"><br>
<p><br>
@@ -174,7 +175,7 @@ Employees and roles are now excluded from deletion:<br>
<tr>
<td style="vertical-align: top; background-color: rgb(202, 225, 235);" colspan="2"><span style="font-family: monospace;"></span><span style="color: rgb(255, 0, 0); font-family: monospace;"></span><span style="font-family: monospace;">-- generated by Jailer at
Wed Fri May
02 12:37:07 CEST 2008&nbsp; from wisser@desktop<br>
02 12:37:07 CEST 2016&nbsp; from wisser@desktop<br>
--<br>
-- extraction model:&nbsp; EMPLOYEE where NAME='SCOTT'
(extractionmodel/scott.csv)<br>
@@ -205,12 +206,14 @@ SALARYGRADE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb
--<br>
-- Deleted Entities: 8<br>
--&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
DEPARTMENT&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0 (-2)<br>
--&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
PROJECT&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
2<br>
--&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
PROJECT_PARTICIPATION&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
6<br>
<br>
6<br>--&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SALARYGRADE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0
(-4)<br>
<br>
<br>
Delete from PROJECT_PARTICIPATION Where (PROJECTNO, EMPNO, START_DATE)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

After

Width:  |  Height:  |  Size: 71 KiB

View File

@@ -159,7 +159,7 @@
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
<Color blue="e6" green="e6" red="e6" type="rgb"/>
</Property>
<Property name="text" type="java.lang.String" value=" "/>
<Property name="text" type="java.lang.String" value=" "/>
</Properties>
<Constraints>
<Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription">

View File

@@ -73,7 +73,7 @@ public class ProgressPanel extends javax.swing.JPanel {
for (Entry<String, Long> e: rowsReductionPerTable.entrySet()) {
JLabel label = reductionLabels.get(e.getKey());
if (label != null) {
label.setText("-" + e.getValue() + " ");
label.setText(" (-" + e.getValue() + ") ");
}
}
}
@@ -327,7 +327,7 @@ public class ProgressPanel extends javax.swing.JPanel {
jPanel2.add(jPanel5, gridBagConstraints);
jLabel1.setForeground(new java.awt.Color(230, 230, 230));
jLabel1.setText(" ");
jLabel1.setText(" ");
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.gridx = 2;
gridBagConstraints.gridy = 11;