You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafodion.apache.org by db...@apache.org on 2015/11/26 00:40:26 UTC

[1/4] incubator-trafodion git commit: Adding cleanat script to clean the TLOG audit tables from the instance.

Repository: incubator-trafodion
Updated Branches:
  refs/heads/master f8856ebd2 -> d226c4535


Adding cleanat script to clean the TLOG audit tables
from the instance.

This is in response to JIRA 1644


Project: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/commit/abbc2385
Tree: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/tree/abbc2385
Diff: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/diff/abbc2385

Branch: refs/heads/master
Commit: abbc23853c85214e2964695b6045037a6333936a
Parents: f8856eb
Author: Sean Broeder <sb...@dev02.trafodion.org>
Authored: Tue Nov 24 21:46:40 2015 +0000
Committer: Sean Broeder <sb...@dev02.trafodion.org>
Committed: Tue Nov 24 21:46:40 2015 +0000

----------------------------------------------------------------------
 core/sqf/sql/scripts/cleanat | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/abbc2385/core/sqf/sql/scripts/cleanat
----------------------------------------------------------------------
diff --git a/core/sqf/sql/scripts/cleanat b/core/sqf/sql/scripts/cleanat
new file mode 100755
index 0000000..e260e29
--- /dev/null
+++ b/core/sqf/sql/scripts/cleanat
@@ -0,0 +1,16 @@
+sqstop
+if [ -f $MY_SQROOT/sql/scripts/swhbase ]
+then swhbase <<EOF
+disable_all 'TRAFODION._DTM_.*'
+y
+drop_all 'TRAFODION._DTM_.*'
+y
+EOF
+else hbase shell <<EOF
+disable_all 'TRAFODION._DTM_.*'
+y
+drop_all 'TRAFODION._DTM_.*'
+y
+EOF
+fi
+


[3/4] incubator-trafodion git commit: Update cleanat

Posted by db...@apache.org.
Update cleanat

Project: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/commit/32745f42
Tree: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/tree/32745f42
Diff: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/diff/32745f42

Branch: refs/heads/master
Commit: 32745f425511c590896f217dfee8ecdf42090b9a
Parents: 3abd4bf
Author: Sean Broeder <se...@esgyn.com>
Authored: Tue Nov 24 15:28:07 2015 -0800
Committer: Sean Broeder <se...@esgyn.com>
Committed: Tue Nov 24 15:28:07 2015 -0800

----------------------------------------------------------------------
 core/sqf/sql/scripts/cleanat | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/32745f42/core/sqf/sql/scripts/cleanat
----------------------------------------------------------------------
diff --git a/core/sqf/sql/scripts/cleanat b/core/sqf/sql/scripts/cleanat
index fd1b549..6059a23 100755
--- a/core/sqf/sql/scripts/cleanat
+++ b/core/sqf/sql/scripts/cleanat
@@ -1,4 +1,4 @@
-/bin/bash
+!/bin/bash
 #
 # @@@ START COPYRIGHT @@@
 #


[2/4] incubator-trafodion git commit: Update cleanat

Posted by db...@apache.org.
Update cleanat

Project: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/commit/3abd4bfa
Tree: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/tree/3abd4bfa
Diff: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/diff/3abd4bfa

Branch: refs/heads/master
Commit: 3abd4bfaff974b88dd5dc5ec76b6c87229af2e21
Parents: abbc238
Author: Sean Broeder <se...@esgyn.com>
Authored: Tue Nov 24 15:27:13 2015 -0800
Committer: Sean Broeder <se...@esgyn.com>
Committed: Tue Nov 24 15:27:13 2015 -0800

----------------------------------------------------------------------
 core/sqf/sql/scripts/cleanat | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/3abd4bfa/core/sqf/sql/scripts/cleanat
----------------------------------------------------------------------
diff --git a/core/sqf/sql/scripts/cleanat b/core/sqf/sql/scripts/cleanat
index e260e29..fd1b549 100755
--- a/core/sqf/sql/scripts/cleanat
+++ b/core/sqf/sql/scripts/cleanat
@@ -1,3 +1,26 @@
+/bin/bash
+#
+# @@@ START COPYRIGHT @@@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+# @@@ END COPYRIGHT @@@
+
 sqstop
 if [ -f $MY_SQROOT/sql/scripts/swhbase ]
 then swhbase <<EOF


[4/4] incubator-trafodion git commit: Merge [TRAFODION-1644] PR 188 adding cleanat script to clean TLOGs

Posted by db...@apache.org.
Merge [TRAFODION-1644] PR 188 adding cleanat script to clean TLOGs


Project: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/commit/d226c453
Tree: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/tree/d226c453
Diff: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/diff/d226c453

Branch: refs/heads/master
Commit: d226c4535096a229670bd31a44381304feadf299
Parents: f8856eb 32745f4
Author: Dave Birdsall <db...@apache.org>
Authored: Wed Nov 25 23:37:46 2015 +0000
Committer: Dave Birdsall <db...@apache.org>
Committed: Wed Nov 25 23:39:39 2015 +0000

----------------------------------------------------------------------
 core/sqf/sql/scripts/cleanat | 39 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)
----------------------------------------------------------------------