mirror of
https://github.com/Wisser/Jailer.git
synced 2026-02-21 18:28:37 -06:00
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:
@@ -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->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 from wisser@desktop<br>
|
||||
02 12:37:07 CEST 2016 from wisser@desktop<br>
|
||||
--<br>
|
||||
-- extraction model: EMPLOYEE where NAME='SCOTT'
|
||||
(extractionmodel/scott.csv)<br>
|
||||
@@ -205,12 +206,14 @@ SALARYGRADE &nb
|
||||
--<br>
|
||||
-- Deleted Entities: 8<br>
|
||||
--
|
||||
DEPARTMENT 0 (-2)<br>
|
||||
--
|
||||
PROJECT
|
||||
2<br>
|
||||
--
|
||||
PROJECT_PARTICIPATION
|
||||
6<br>
|
||||
<br>
|
||||
6<br>-- SALARYGRADE 0
|
||||
(-4)<br>
|
||||
<br>
|
||||
<br>
|
||||
Delete from PROJECT_PARTICIPATION Where (PROJECTNO, EMPNO, START_DATE)
|
||||
|
||||
BIN
docs/delt2.gif
BIN
docs/delt2.gif
Binary file not shown.
|
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 71 KiB |
@@ -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">
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user