You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafodion.apache.org by su...@apache.org on 2015/10/06 21:26:12 UTC

[05/31] incubator-trafodion git commit: Copyright changes part 3 and cleanup work in dcs

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/conn/unixodbc/odbc/odbcclient/unixcli/ossbit/ossbit.h
----------------------------------------------------------------------
diff --git a/core/conn/unixodbc/odbc/odbcclient/unixcli/ossbit/ossbit.h b/core/conn/unixodbc/odbc/odbcclient/unixcli/ossbit/ossbit.h
deleted file mode 100644
index adf333f..0000000
--- a/core/conn/unixodbc/odbc/odbcclient/unixcli/ossbit/ossbit.h
+++ /dev/null
@@ -1,252 +0,0 @@
-#include "sql.h"
-#include "sqlext.h"
-
-#define ODBCTAB "NSKTAB"
-
-#define SQL_MAX_DB_NAME_LEN			60
-#define MAX_CONNECT_STRING      256
-#define MAX_SQLSTRING_LEN				4000
-#define STATE_SIZE							6
-#define SQL_MAX_DRIVER_LENGTH		300
-#define MAX_NUM_COLUMNS					13
-#define	MAX_COLUMN_OUTPUT				300
-#define	SQL_MAX_TABLE_TYPE_LEN		10
-#define	SQL_MAX_REMARK_LEN			60
-#define END_LOOP								"END_LOOP"
-#define CREATE_TABLE						"create table "
-#define	INSERT_TABLE						"insert into "
-#define SELECT_TABLE						"select "
-#define DROP_TABLE							"drop table "
-
-// global struct to be used everywhere in the program.
-typedef struct TestInfo 
-{
-   char DataSource[SQL_MAX_DSN_LENGTH];
-   char UserID[SQL_MAX_USER_NAME_LEN];
-   char Password[SQL_MAX_USER_NAME_LEN];
-   char Database[SQL_MAX_DB_NAME_LEN];
-	 char Catalog[SQL_MAX_CATALOG_NAME_LEN];
-	 char Schema[SQL_MAX_SCHEMA_NAME_LEN];
-	 char Table[SQL_MAX_TABLE_NAME_LEN];
-   SQLHENV henv;
-   SQLHDBC hdbc;
-   SQLHSTMT hstmt;
-} TestInfo;
-
-// max sql string that can be used in this program.
-char	SQLStmt[MAX_SQLSTRING_LEN];
-int		Actual_Num_Columns;
-char DSN[SQL_MAX_DSN_LENGTH];
-char UID[SQL_MAX_USER_NAME_LEN];
-char PWD[SQL_MAX_USER_NAME_LEN];
-int		rowdata;
-
-// SQL Datatype
-struct
-{
-	char	*DataTypestr;
-	SWORD	DataType;
-	SWORD	CDataType;
-	char	*Name;				// column name
-	BOOL	PriKey;				// primary key
-	char	*Description;
-	char	*Precision;
-	char	*Scale;
-} ColumnInfo[] = 
-{
-	{"SQL_CHAR",SQL_CHAR,SQL_C_CHAR,"Column_Char",TRUE,"char","200",""},
-	{"SQL_VARCHAR",SQL_VARCHAR,SQL_C_CHAR,"Column_Varchar",FALSE,"varchar","254",""},
-	{"SQL_DECIMAL",SQL_DECIMAL,SQL_C_CHAR,"Column_Decimal",FALSE,"decimal","15","5"},
-	{"SQL_NUMERIC",SQL_NUMERIC,SQL_C_CHAR,"Column_Numeric",FALSE,"numeric","15","5"},
-	{"SQL_SMALLINT",SQL_SMALLINT,SQL_C_SHORT,"Column_Smallint",FALSE,"smallint","",},
-	{"SQL_INTEGER",SQL_INTEGER,SQL_C_LONG,"Column_Integer",TRUE,"integer","",},
-	{"SQL_REAL",SQL_REAL,SQL_C_FLOAT,"Column_Real",FALSE,"real","",},
-	{"SQL_FLOAT",SQL_FLOAT,SQL_C_DOUBLE,"Column_Float",FALSE,"float","",},
-	{"SQL_DOUBLE",SQL_DOUBLE,SQL_C_DOUBLE,"Column_Double",FALSE,"double precision","",},
-	{"SQL_DATE",SQL_DATE,SQL_C_DATE,"Column_Date",FALSE,"date","",},
-	{"SQL_TIME",SQL_TIME,SQL_C_TIME,"Column_Time",FALSE,"time","",},
-	{"SQL_TIMESTAMP",SQL_TIMESTAMP,SQL_C_TIMESTAMP,"Column_Timestamp",FALSE,"timestamp","",},
-	{"SQL_BIGINT",SQL_BIGINT,SQL_C_CHAR,"Column_Bint",FALSE,"largeint","",},
-	{END_LOOP,}
-};
-
-struct
-{
-	char	*DataTypestr;
-	SWORD	DataType;
-	SWORD	CDataType;
-	char	*Name;				// column name
-	BOOL	PriKey;				// primary key
-	char	*Description;
-	char	*Precision;
-	char	*Scale;
-	char    *Default;
-} ColumnInfo2[] = 
-{
-	{"SQL_LONGVARCHAR",SQL_LONGVARCHAR,SQL_C_CHAR,"Column_LongVarchar",FALSE,"long varchar","255","","'Default LongVarChar Value'"},
-	{"SQL_INTERVAL_YEAR",SQL_INTERVAL_YEAR,SQL_C_INTERVAL_YEAR,"Column_IntervalYear",FALSE,"interval year(4)","","","{interval '1000' year(4)}"},
-	{"SQL_INTERVAL_MONTH",SQL_INTERVAL_MONTH,SQL_C_INTERVAL_MONTH,"Column_IntervalMonth",FALSE,"interval month(3)","","","{interval '100' month(3)}"},
-	{"SQL_INTERVAL_YEAR_TO_MONTH",SQL_INTERVAL_YEAR_TO_MONTH,SQL_C_INTERVAL_YEAR_TO_MONTH,"Column_IntervalYearToMonth",FALSE,"interval year(3) to month","","","{interval '100-10' year(3) to month}"},
-	{"SQL_INTERVAL_DAY",SQL_INTERVAL_DAY,SQL_C_INTERVAL_DAY,"Column_IntervalDay",FALSE,"interval day(4)","","","{interval '1000' day(4)}"},
-	{"SQL_INTERVAL_HOUR",SQL_INTERVAL_HOUR,SQL_C_INTERVAL_HOUR,"Column_IntervalHour",FALSE,"interval hour(3)","","","{interval '100' hour(3)}"},
-	{"SQL_INTERVAL_MINUTE",SQL_INTERVAL_MINUTE,SQL_C_INTERVAL_MINUTE,"Column_IntervalMinute",FALSE,"interval minute(3)","","","{interval '100' minute(3)}"},
-	{"SQL_INTERVAL_SECOND",SQL_INTERVAL_SECOND,SQL_C_INTERVAL_SECOND,"Column_IntervalSecond",FALSE,"interval second(3,2)","","","{interval '100.10' second(3,2)}"},
-	{"SQL_INTERVAL_DAY_TO_HOUR",SQL_INTERVAL_DAY_TO_HOUR,SQL_C_INTERVAL_DAY_TO_HOUR,"Column_IntervalDayToHour",FALSE,"interval day(3) to hour","","","{interval '100 10' day(3) to hour}"},
-	{"SQL_INTERVAL_DAY_TO_MINUTE",SQL_INTERVAL_DAY_TO_MINUTE,SQL_C_INTERVAL_DAY_TO_MINUTE,"Column_IntervalDayToMinute",FALSE,"interval day(3) to minute","","","{interval '100 10:10' day(3) to minute}"},
-	{"SQL_INTERVAL_DAY_TO_SECOND",SQL_INTERVAL_DAY_TO_SECOND,SQL_C_INTERVAL_DAY_TO_SECOND,"Column_IntervalDayToSecond",FALSE,"interval day(3) to second(3)","","","{interval '100 10:10:10' day(3) to second(3)}"},
-	{"SQL_INTERVAL_HOUR_TO_MINUTE",SQL_INTERVAL_HOUR_TO_MINUTE,SQL_C_INTERVAL_HOUR_TO_MINUTE,"Column_IntervalHourToMinute",FALSE,"interval hour(3) to minute","","","{interval '100:10' hour(3) to minute}"},
-	{"SQL_INTERVAL_HOUR_TO_SECOND",SQL_INTERVAL_HOUR_TO_SECOND,SQL_C_INTERVAL_HOUR_TO_SECOND,"Column_IntervalHourToSecond",FALSE,"interval hour(3) to second(4)","","","{interval '100:10:10' hour(3) to second(4)}"},
-	{"SQL_INTERVAL_MINUTE_TO_SECOND",SQL_INTERVAL_MINUTE_TO_SECOND,SQL_C_INTERVAL_MINUTE_TO_SECOND,"Column_IntervalMinuteToSecond",FALSE,"interval minute(3) to second(5)","","","{interval '100:10' minute(3) to second(5)}"},
-	{"SQL_TYPE_DATE",SQL_TYPE_DATE,SQL_C_TYPE_DATE,"Column_Date",FALSE,"date","","","{d '2003-05-12'}"},
-	{"SQL_TYPE_TIME",SQL_TYPE_TIME,SQL_C_TYPE_TIME,"Column_Time",FALSE,"time","","","{t '16:30:00'}"},
-	{"SQL_TYPE_TIMESTAMP",SQL_TYPE_TIMESTAMP,SQL_C_TYPE_TIMESTAMP,"Column_Timestamp",FALSE,"timestamp","","","{ts '2003-05-12 16:30:00'}"},
-	{"SQL_CHAR",SQL_CHAR,SQL_C_CHAR,"Column_Char",TRUE,"char","200","",""},
-	{END_LOOP,}
-};
-
-struct
-{
-	char	*Year;
-	char    *Month;
-	char    *YearToMonth;
-	char    *Day;
-	char    *Hour;
-	char    *Minute;
-	char    *Second;
-	char    *DayToHour;
-	char    *DayToMinute;
-	char    *DayToSecond;
-	char    *HourToMinute;
-	char    *HourToSecond;
-	char    *MinuteToSecond;
-	DATE_STRUCT			DateValue;
-	TIME_STRUCT			TimeValue; 
-	TIMESTAMP_STRUCT	TimestampValue;
-
-} IntervalValues[] =
-{
-	{"1000","100","100-10","1000","100","100","100.10","100 10","100 10:10","100 10:10:10","100:10","100:10:10","100:10",{2003,05,12},{16,30,00},{2003,05,12,16,30,00,0}},	
-	{"326","326","163-11","3261","163","163","223.16","163 12","163 12:39","163 12:39:59.16"/*"163 12:39:59.163"*/,"163:39","163:39:59.1630","163:59.16300",{2003,04,11},{19,40,20},{2003,04,10,21,22,23,123456}},
-//	{"-326","-326","-163-11","-3261","-163","-163","-223.16","-163 12","-163 12:39","-16 23:39:56.23","-163:39","-163:39:59.1630","-163:59.16300",{1901,01,1},{1,0,0},{1901,01,1,1,0,0,0}},
-	{"99","999","163-11","3261","163","163","223.16","163 12","163 12:39","163 12:39:59.16"/*"163 12:39:59.163"*/,"163:39","163:39:59.1630","163:59.16300",{2003,12,31},{23,59,59},{2003,12,31,23,59,59,123456}},
-	{"999"},																																					
-
-};
-
-
-struct
-{
-	char	*DataTypestr;
-	SWORD	DataType;
-	SWORD	CDataType;
-	char	*Name;				// column name
-	BOOL	PriKey;				// primary key
-	char	*Description;
-	char	*Precision;
-	char	*Scale;
-	char    *Default;
-} ColumnInfo3[] = 
-{
-	{"SQL_WCHAR",SQL_WCHAR,SQL_C_WCHAR,"Column_WChar",FALSE,"wchar","255","","_N'Default WChar Value'"},
-	{"SQL_WVARCHAR",SQL_WVARCHAR,SQL_C_WCHAR,"Column_WVarChar",FALSE,"wvarchar","255","","_N'Default WVarChar Value'"},
-	{"SQL_WLONGVARCHAR",SQL_WLONGVARCHAR,SQL_C_WCHAR,"Column_WLongVarChar",FALSE,"wlongvarchar","255","","_N'Default WLongVarChar Value'"},
-	{"SQL_BIT",SQL_BIT,SQL_C_BIT,"Column_Bit",FALSE,"bit","","","1"},
-	{"SQL_TINYINT",SQL_TINYINT,SQL_C_TINYINT,"Column_TinyInt",FALSE,"tinyint","","","100"},
-	{"SQL_BINARY",SQL_BINARY,SQL_C_BINARY,"Column_Binary",FALSE,"binary","255","","100"},
-	{"SQL_VARBINARY",SQL_VARBINARY,SQL_C_BINARY,"Column_VarBinary",FALSE,"varbinary","255","","100"},
-	{"SQL_LONGVARBINARY",SQL_LONGVARBINARY,SQL_C_BINARY,"Column_LongVarBinary",FALSE,"longvarbinary","255","","100"},
-	{END_LOOP,}
-};
-
-
-
-
-// Datatypes below are used for datatype conversion from
-// SQL_C_TYPE to SQL_TYPE and viceversa.
-struct 
-{
-	char							*CharValue;
-	char							*VarCharValue;
-	char							*DecimalValue;
-	char							*NumericValue;
-	SWORD							ShortValue;
-	SDWORD						LongValue;
-	SFLOAT						RealValue;
-	SDOUBLE						FloatValue;
-	SDOUBLE						DoubleValue;
-	DATE_STRUCT				DateValue;
-	TIME_STRUCT				TimeValue; 
-	TIMESTAMP_STRUCT	TimestampValue;
-	char							*BigintValue;
-	SQLLEN						InValue;
-	SQLLEN						InValue1;
-} InputOutputValues[] = 
-{
-	{"C1","V1","1.2","1.2",1,1,1.0,1.0,1.0,{1997,12,30},{11,45,23},{1997,10,12,11,33,41,123456},"1",SQL_NTS,0},
-	{"Char data2","Varchar data2","1234.56","5678.12",1234,12345,12340.0,12300.0,12345670.0,{1998,12,30},{11,45,23},{1998,10,12,11,33,41,123456},"123456",SQL_NTS,0},
-//	{"Character data for row 3","Varchar data for row 3","1234567.89","9876543.21",9999,98765,98765.0,987654.0,98765432.0,{2000,01,01},{11,45,23},{1999,12,31,12,00,00,000000},"9876543",SQL_NTS,0},
-      {"Character data for row 3","Varchar data for row 3","1234.56","9876543.21",9999,98765,98765.0,987654.0,98765432.0,{2000,01,01},{11,45,23},{1999,12,31,12,00,00,000000},"9876543",SQL_NTS,0},
-	{END_LOOP,}
-};
-
-
-
-
-
-// Datatypes below are used for datatype conversion from
-// SQL_C_TYPE to SQL_TYPE and viceversa.
-struct 
-{
-	char						*LongVarCharValue;
-	char                        *IntervalYearValue;
-	char                        *IntervalMonthValue;
-	char                        *IntervalYearToMonthValue;
-	char                        *IntervalDayValue;
-	char                        *IntervalHourValue;
-	char                        *IntervalMinuteValue;
-	char                        *IntervalSecondValue;
-	char                        *IntervalDayToHourValue;
-	char                        *IntervalDayToMinuteValue;
-	char                        *IntervalDayToSecondValue;
-	char                        *IntervalHourToMinuteValue;
-	char                        *IntervalHourToSecondValue;
-	char                        *IntervalMinuteToSecondValue;
-	char						*DateValue;
-	char						*TimeValue; 
-	char						*TimestampValue;
-	char						*CharValue;
-	SQLLEN						InValue;
-	SQLLEN						InValue1;
-	BOOL						UseExecDirect;
-	BOOL						UseDefaults;
-} InputOutputValues2[] = 
-{
-	{"","","","","","","","","","","","","","","","","","five",SQL_NTS,0,0,1},
-	{"LV1","{interval '326' year(4)}","{interval '326' month(3)}","{interval '163-11' year(3) to month}","{interval '3261' day(4)}","{interval '163' hour(3)}","{interval '163' minute(3)}","{interval '223.16' second(3,2)}","{interval '163 12' day(3) to hour}","{interval '163 12:39' day(3) to minute}","{interval '163 12:39:59.16' day(3) to second(3)}"/*"{interval '163 12:39:59.163' day(3) to second(3)}"*/,"{interval '163:39' hour(3) to minute}","{interval '163:39:59.163' hour(3) to second(4)}","{interval '163:59.163' minute(3) to second(5)}","{d '2003-04-11'}","{t '19:40:20'}","{ts '2003-04-10 21:22:23.123456'}","one",SQL_NTS,0,0,0},
-	{"LongVarChar Data for Row3","cast (99 as interval year(4))","cast (999 as interval month(3))","cast ('163-11' as interval year(3) to month)","cast ('3261' as interval day(4))","cast ('163' as interval hour(3))","cast ('163' as interval minute(3))","cast ('223.16' as interval second(3,2))","cast ('163 12' as interval day(3) to hour)","cast ('163 12:39' as interval day(3) to minute)","cast ('163 12:39:59.16' as interval day(3) to second(3))"/*"cast ('163 12:39:59.163' as interval day(3) to second(3))"*/,"cast ('163:39' as interval hour(3) to minute)","cast ('163:39:59.163' as interval hour(3) to second(4))","cast ('163:59.163' as interval minute(3) to second(5))","cast ('2000-12-31' as date)","cast ('23:59:59' as time)","cast ('2000-12-31 23:59:59.123456' as timestamp)","three",SQL_NTS,0,1,0},
-//	{"LV Data for Defaults row","","","","","","","","","","","","","","","","","five",SQL_NTS,0,0,1},
-	{END_LOOP,}
-};
-
-
-
-struct 
-{
-	char						*WCharValue;
-	char						*WVarCharValue;
-	char						*WLongVarCharValue;
-	SWORD                       BitValue;
-	SWORD                       TinyintValue;
-	char                        *BinaryValue;
-	char                        *VarBinaryValue;
-	char                        *LongVarBinaryValue;
-	SQLLEN						InValue;
-	SQLLEN						InValue1;
-	BOOL						UseExecDirect;
-	BOOL						UseDefaults;
-} InputOutputValues3[] = 
-{
-	{"_N'WChar Value'","_N'WVarChar Value'","_N'WLongVarChar Value'",0,200,"1001","1001","1001",SQL_NTS,0,0,0},
-	{END_LOOP,}
-};
-

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/conn/unixodbc/odbc/odbcclient/unixcli/package/MXODSN
----------------------------------------------------------------------
diff --git a/core/conn/unixodbc/odbc/odbcclient/unixcli/package/MXODSN b/core/conn/unixodbc/odbc/odbcclient/unixcli/package/MXODSN
deleted file mode 100644
index 0193dbe..0000000
--- a/core/conn/unixodbc/odbc/odbcclient/unixcli/package/MXODSN
+++ /dev/null
@@ -1,40 +0,0 @@
-[ODBC]
-traceFlags              = ERROR
-TraceStart              = 0
-TraceFile               = tracefile.log
-MaxTraceFileSize        = 1024
-AppUnicodeType				= utf16
-
-[ODBC Data Sources]
-TDM_Default_DataSource  = HPODBC
-NEO                     = HPODBC
-
-DataSourceName          = Driver
-
-[DataSourceName]
-Driver                  = HPODBC
-
-[TDM_Default_DataSource]
-Description                 = Default Data Source
-Catalog                     = NEO
-Schema                      = SCH
-DataLang                    = 0
-FetchBufferSize             = SYSTEM_DEFAULT
-Server                      = TCP:1.2.3.4:18650
-SQL_ATTR_CONNECTION_TIMEOUT = SYSTEM_DEFAULT
-SQL_LOGIN_TIMEOUT           = SYSTEM_DEFAULT
-SQL_QUERY_TIMEOUT           = NO_TIMEOUT
-ServiceName					= HP_DEFAULT_SERVICE
-
-[NEO]
-Description                 = Default Data Source
-Catalog                     = NEO
-Schema                      = SCH
-DataLang                    = 0
-FetchBufferSize             = SYSTEM_DEFAULT
-Server                      = TCP:neo:24000
-SQL_ATTR_CONNECTION_TIMEOUT = SYSTEM_DEFAULT
-SQL_LOGIN_TIMEOUT           = SYSTEM_DEFAULT
-SQL_QUERY_TIMEOUT           = NO_TIMEOUT
-ServiceName					= HP_DEFAULT_SERVICE
-

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/conn/unixodbc/odbc/odbcclient/unixcli/package/TRAFDSN
----------------------------------------------------------------------
diff --git a/core/conn/unixodbc/odbc/odbcclient/unixcli/package/TRAFDSN b/core/conn/unixodbc/odbc/odbcclient/unixcli/package/TRAFDSN
index 4101c6e..07da82b 100644
--- a/core/conn/unixodbc/odbc/odbcclient/unixcli/package/TRAFDSN
+++ b/core/conn/unixodbc/odbc/odbcclient/unixcli/package/TRAFDSN
@@ -1,3 +1,24 @@
+# @@@ 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 @@@
+
 [ODBC]
 traceFlags              = ERROR
 TraceStart              = 0

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/conn/unixodbc/odbc/odbcclient/unixcli/trace/stubtrace.h
----------------------------------------------------------------------
diff --git a/core/conn/unixodbc/odbc/odbcclient/unixcli/trace/stubtrace.h b/core/conn/unixodbc/odbc/odbcclient/unixcli/trace/stubtrace.h
index e2b10af..352cdd7 100644
--- a/core/conn/unixodbc/odbc/odbcclient/unixcli/trace/stubtrace.h
+++ b/core/conn/unixodbc/odbc/odbcclient/unixcli/trace/stubtrace.h
@@ -1,3 +1,25 @@
+/**********************************************************************
+// @@@ 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 @@@
+********************************************************************/
 #ifndef __STUBTRACE_H__
 #define __STUBTRACE_H__
 

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/conn/unixodbc/odbc/odbcclient/unixcli/trace/version.cpp-tmpl
----------------------------------------------------------------------
diff --git a/core/conn/unixodbc/odbc/odbcclient/unixcli/trace/version.cpp-tmpl b/core/conn/unixodbc/odbc/odbcclient/unixcli/trace/version.cpp-tmpl
index 284d97e..11c405c 100644
--- a/core/conn/unixodbc/odbc/odbcclient/unixcli/trace/version.cpp-tmpl
+++ b/core/conn/unixodbc/odbc/odbcclient/unixcli/trace/version.cpp-tmpl
@@ -1,3 +1,25 @@
-extern char* versionString="TRAFODBC (Build Id [@@@])";
-extern "C" void TRAFODBC_Build_Id_@@@ ()
+/**********************************************************************
+// @@@ 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 @@@
+********************************************************************/
+extern char* versionString="TRAFODBC (Build Id [@@@@])";
+extern "C" void TRAFODBC_Build_Id_@@@@ ()
 { }

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/conn/unixodbc/odbc/odbcclient/unixcli/trace/version_drvr.cpp-tmpl
----------------------------------------------------------------------
diff --git a/core/conn/unixodbc/odbc/odbcclient/unixcli/trace/version_drvr.cpp-tmpl b/core/conn/unixodbc/odbc/odbcclient/unixcli/trace/version_drvr.cpp-tmpl
index 72223ef..8f59424 100644
--- a/core/conn/unixodbc/odbc/odbcclient/unixcli/trace/version_drvr.cpp-tmpl
+++ b/core/conn/unixodbc/odbc/odbcclient/unixcli/trace/version_drvr.cpp-tmpl
@@ -1,3 +1,25 @@
-extern char* versionString="TRAFODBC_DRVR (Build Id [@@@])";
-extern "C" void TRAFODBC_DRVR_Build_Id_@@@ ()
+/**********************************************************************
+// @@@ 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 @@@
+********************************************************************/
+extern char* versionString="TRAFODBC_DRVR (Build Id [@@@@])";
+extern "C" void TRAFODBC_DRVR_Build_Id_@@@@ ()
 { }

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/conf/log4cxx.monitor.mon.config
----------------------------------------------------------------------
diff --git a/core/sqf/conf/log4cxx.monitor.mon.config b/core/sqf/conf/log4cxx.monitor.mon.config
index a45b620..5933ed5 100644
--- a/core/sqf/conf/log4cxx.monitor.mon.config
+++ b/core/sqf/conf/log4cxx.monitor.mon.config
@@ -1,3 +1,26 @@
+#
+# @@@ 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 @@@
+#
+
 # Define some default values that can be overridden by system properties
 trafodion.root.logger=INFO, monAppender
 trafodion.log.dir=${MY_SQROOT}/logs

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/conf/log4cxx.monitor.mon.snmp.config
----------------------------------------------------------------------
diff --git a/core/sqf/conf/log4cxx.monitor.mon.snmp.config b/core/sqf/conf/log4cxx.monitor.mon.snmp.config
index 2d8be2a..69bcf5f 100644
--- a/core/sqf/conf/log4cxx.monitor.mon.snmp.config
+++ b/core/sqf/conf/log4cxx.monitor.mon.snmp.config
@@ -1,3 +1,26 @@
+#
+# @@@ 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 @@@
+#
+
 # Define some default values that can be overridden by system properties
 trafodion.root.logger=INFO, monSnmpAppender
 trafodion.log.dir=${MY_SQROOT}/logs

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/conf/log4cxx.monitor.psd.config
----------------------------------------------------------------------
diff --git a/core/sqf/conf/log4cxx.monitor.psd.config b/core/sqf/conf/log4cxx.monitor.psd.config
index aa5d70d..50d100a 100644
--- a/core/sqf/conf/log4cxx.monitor.psd.config
+++ b/core/sqf/conf/log4cxx.monitor.psd.config
@@ -1,3 +1,26 @@
+#
+# @@@ 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 @@@
+#
+
 # Define some default values that can be overridden by system properties
 trafodion.root.logger=INFO, psdAppender
 trafodion.log.dir=${MY_SQROOT}/logs

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/conf/log4cxx.monitor.wdg.config
----------------------------------------------------------------------
diff --git a/core/sqf/conf/log4cxx.monitor.wdg.config b/core/sqf/conf/log4cxx.monitor.wdg.config
index 14ad222..c935915 100644
--- a/core/sqf/conf/log4cxx.monitor.wdg.config
+++ b/core/sqf/conf/log4cxx.monitor.wdg.config
@@ -1,3 +1,26 @@
+#
+# @@@ 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 @@@
+#
+
 # Define some default values that can be overridden by system properties
 trafodion.root.logger=INFO, wdtAppender
 trafodion.log.dir=${MY_SQROOT}/logs

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/conf/log4cxx.monitor.wdg.snmp.config
----------------------------------------------------------------------
diff --git a/core/sqf/conf/log4cxx.monitor.wdg.snmp.config b/core/sqf/conf/log4cxx.monitor.wdg.snmp.config
index 5933ce6..0b8a10e 100644
--- a/core/sqf/conf/log4cxx.monitor.wdg.snmp.config
+++ b/core/sqf/conf/log4cxx.monitor.wdg.snmp.config
@@ -1,3 +1,26 @@
+#
+# @@@ 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 @@@
+#
+
 # Define some default values that can be overridden by system properties
 trafodion.root.logger=INFO, wdtSnmpAppender
 trafodion.log.dir=${MY_SQROOT}/logs

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/conf/log4cxx.trafodion.lob.config
----------------------------------------------------------------------
diff --git a/core/sqf/conf/log4cxx.trafodion.lob.config b/core/sqf/conf/log4cxx.trafodion.lob.config
index 6c2df2f..a743566 100644
--- a/core/sqf/conf/log4cxx.trafodion.lob.config
+++ b/core/sqf/conf/log4cxx.trafodion.lob.config
@@ -1,3 +1,26 @@
+#
+# @@@ 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 @@@
+#
+
 # Define some default values that can be overridden by system properties
 trafodion.root.logger=INFO, lobAppender
 trafodion.log.dir=${MY_SQROOT}/logs

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/conf/log4cxx.trafodion.masterexe.config
----------------------------------------------------------------------
diff --git a/core/sqf/conf/log4cxx.trafodion.masterexe.config b/core/sqf/conf/log4cxx.trafodion.masterexe.config
index 9f9df50..5a8e96d 100644
--- a/core/sqf/conf/log4cxx.trafodion.masterexe.config
+++ b/core/sqf/conf/log4cxx.trafodion.masterexe.config
@@ -1,3 +1,26 @@
+#
+# @@@ 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 @@@
+#
+
 # Define some default values that can be overridden by system properties
 trafodion.root.logger=INFO,  mxoAppender
 trafodion.log.dir=${MY_SQROOT}/logs

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/conf/log4cxx.trafodion.sscp.config
----------------------------------------------------------------------
diff --git a/core/sqf/conf/log4cxx.trafodion.sscp.config b/core/sqf/conf/log4cxx.trafodion.sscp.config
index 6fa7368..d9a74f4 100644
--- a/core/sqf/conf/log4cxx.trafodion.sscp.config
+++ b/core/sqf/conf/log4cxx.trafodion.sscp.config
@@ -1,3 +1,26 @@
+#
+# @@@ 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 @@@
+#
+
 # Define some default values that can be overridden by system properties
 trafodion.root.logger=INFO, sscpAppender
 trafodion.log.dir=${MY_SQROOT}/logs

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/conf/log4cxx.trafodion.ssmp.config
----------------------------------------------------------------------
diff --git a/core/sqf/conf/log4cxx.trafodion.ssmp.config b/core/sqf/conf/log4cxx.trafodion.ssmp.config
index 6b478d2..8c5e760 100644
--- a/core/sqf/conf/log4cxx.trafodion.ssmp.config
+++ b/core/sqf/conf/log4cxx.trafodion.ssmp.config
@@ -1,3 +1,26 @@
+#
+# @@@ 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 @@@
+#
+
 # Define some default values that can be overridden by system properties
 trafodion.root.logger=INFO, ssmpAppender
 trafodion.log.dir=${MY_SQROOT}/logs

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/conf/log4cxx.trafodion.tm.config
----------------------------------------------------------------------
diff --git a/core/sqf/conf/log4cxx.trafodion.tm.config b/core/sqf/conf/log4cxx.trafodion.tm.config
index e0ff84e..acfe6b8 100644
--- a/core/sqf/conf/log4cxx.trafodion.tm.config
+++ b/core/sqf/conf/log4cxx.trafodion.tm.config
@@ -1,3 +1,26 @@
+#
+# @@@ 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 @@@
+#
+
 # Define some default values that can be overridden by system properties
 trafodion.root.logger=INFO, tmAppender
 trafodion.log.dir=${MY_SQROOT}/logs

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/conf/log4cxx.trafodion.udr.config
----------------------------------------------------------------------
diff --git a/core/sqf/conf/log4cxx.trafodion.udr.config b/core/sqf/conf/log4cxx.trafodion.udr.config
index dbf6517..39145a6 100644
--- a/core/sqf/conf/log4cxx.trafodion.udr.config
+++ b/core/sqf/conf/log4cxx.trafodion.udr.config
@@ -1,3 +1,26 @@
+#
+# @@@ 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 @@@
+#
+
 # Define some default values that can be overridden by system properties
 trafodion.root.logger=INFO, udrAppender
 trafodion.log.dir=${MY_SQROOT}/logs

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/conf/log4j.dtm.config
----------------------------------------------------------------------
diff --git a/core/sqf/conf/log4j.dtm.config b/core/sqf/conf/log4j.dtm.config
index a7737a2..0d62591 100644
--- a/core/sqf/conf/log4j.dtm.config
+++ b/core/sqf/conf/log4j.dtm.config
@@ -1,3 +1,26 @@
+#
+# @@@ 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 @@@
+#
+
 # @@@ START COPYRIGHT @@@
 #
 # Licensed to the Apache Software Foundation (ASF) under one

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/conf/log4j.hdfs.config
----------------------------------------------------------------------
diff --git a/core/sqf/conf/log4j.hdfs.config b/core/sqf/conf/log4j.hdfs.config
index f509c72..397f338 100644
--- a/core/sqf/conf/log4j.hdfs.config
+++ b/core/sqf/conf/log4j.hdfs.config
@@ -1,3 +1,26 @@
+#
+# @@@ 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 @@@
+#
+
 # @@@ START COPYRIGHT @@@
 #
 # Licensed to the Apache Software Foundation (ASF) under one

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/conf/trafodion.udr.config
----------------------------------------------------------------------
diff --git a/core/sqf/conf/trafodion.udr.config b/core/sqf/conf/trafodion.udr.config
index 6d5ebdc..df1bca7 100644
--- a/core/sqf/conf/trafodion.udr.config
+++ b/core/sqf/conf/trafodion.udr.config
@@ -1,3 +1,26 @@
+#
+# @@@ 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 @@@
+#
+
 # @@@ START COPYRIGHT @@@
 #
 # Licensed to the Apache Software Foundation (ASF) under one

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/export/limited-support-tools/LSO/active_queries.sql
----------------------------------------------------------------------
diff --git a/core/sqf/export/limited-support-tools/LSO/active_queries.sql b/core/sqf/export/limited-support-tools/LSO/active_queries.sql
index 2a5c539..4375973 100644
--- a/core/sqf/export/limited-support-tools/LSO/active_queries.sql
+++ b/core/sqf/export/limited-support-tools/LSO/active_queries.sql
@@ -1,3 +1,26 @@
+--
+-- @@@ 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 @@@
+--
+
 -- set param ?filter 'ACTIVE_QUERIES=30';  -- 30 seconds
 set param ?lsq  ' sqlSrc: ';
 

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/export/limited-support-tools/LSO/cpu_offender.sql
----------------------------------------------------------------------
diff --git a/core/sqf/export/limited-support-tools/LSO/cpu_offender.sql b/core/sqf/export/limited-support-tools/LSO/cpu_offender.sql
index 317c1a2..64afaba 100644
--- a/core/sqf/export/limited-support-tools/LSO/cpu_offender.sql
+++ b/core/sqf/export/limited-support-tools/LSO/cpu_offender.sql
@@ -1,3 +1,26 @@
+--
+-- @@@ 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 @@@
+--
+
 -- set param ?filter 'CPU_OFFENDER=-1' ;
 select current_timestamp "CURRENT_TIMESTAMP"  -- (1) Now
        ,count(*) no_of_processes              -- (2) Number of processed in QID

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/export/limited-support-tools/LSO/dead_queries.sql
----------------------------------------------------------------------
diff --git a/core/sqf/export/limited-support-tools/LSO/dead_queries.sql b/core/sqf/export/limited-support-tools/LSO/dead_queries.sql
index bc6223d..ee2f559 100644
--- a/core/sqf/export/limited-support-tools/LSO/dead_queries.sql
+++ b/core/sqf/export/limited-support-tools/LSO/dead_queries.sql
@@ -1,3 +1,26 @@
+--
+-- @@@ 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 @@@
+--
+
 --set param ?filter 'DEAD_QUERIES=30';  -- 30 seconds
 set param ?lsq  ' sqlSrc: ';
 

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/export/limited-support-tools/LSO/inactive_queries.sql
----------------------------------------------------------------------
diff --git a/core/sqf/export/limited-support-tools/LSO/inactive_queries.sql b/core/sqf/export/limited-support-tools/LSO/inactive_queries.sql
index 8bfd4d7..f209fb2 100644
--- a/core/sqf/export/limited-support-tools/LSO/inactive_queries.sql
+++ b/core/sqf/export/limited-support-tools/LSO/inactive_queries.sql
@@ -1,3 +1,26 @@
+--
+-- @@@ 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 @@@
+--
+
 -- set param ?filter 'INACTIVE_QUERIES=30';  -- 30 seconds
 set param ?lsq  ' sqlSrc: ';
 

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/export/limited-support-tools/LSO/mem_offender.sql
----------------------------------------------------------------------
diff --git a/core/sqf/export/limited-support-tools/LSO/mem_offender.sql b/core/sqf/export/limited-support-tools/LSO/mem_offender.sql
index 78ddbf8..f512240 100644
--- a/core/sqf/export/limited-support-tools/LSO/mem_offender.sql
+++ b/core/sqf/export/limited-support-tools/LSO/mem_offender.sql
@@ -1,3 +1,26 @@
+--
+-- @@@ 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 @@@
+--
+
 select current_timestamp "CURRENT_TIMESTAMP",
    cast(tokenstr('nodeId:', variable_info) as integer) node,
    cast(tokenstr('processId:', variable_info) as integer) pid,

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/export/limited-support-tools/LSO/queries_in_client.sql
----------------------------------------------------------------------
diff --git a/core/sqf/export/limited-support-tools/LSO/queries_in_client.sql b/core/sqf/export/limited-support-tools/LSO/queries_in_client.sql
index b58dd5b..17c3ccd 100644
--- a/core/sqf/export/limited-support-tools/LSO/queries_in_client.sql
+++ b/core/sqf/export/limited-support-tools/LSO/queries_in_client.sql
@@ -1,3 +1,26 @@
+--
+-- @@@ 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 @@@
+--
+
 -- set param ?filter 'QUERIES_IN_CLIENT=30';  -- 30 seconds
 set param ?lsq    ' sqlSrc: ';
 

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/export/limited-support-tools/LSO/queries_in_sql.sql
----------------------------------------------------------------------
diff --git a/core/sqf/export/limited-support-tools/LSO/queries_in_sql.sql b/core/sqf/export/limited-support-tools/LSO/queries_in_sql.sql
index ed4f536..eb0144b 100644
--- a/core/sqf/export/limited-support-tools/LSO/queries_in_sql.sql
+++ b/core/sqf/export/limited-support-tools/LSO/queries_in_sql.sql
@@ -1,3 +1,26 @@
+--
+-- @@@ 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 @@@
+--
+
 -- set param ?filter 'QUERIES_IN_SQL=30';  -- 30 seconds
 set param ?lsq    ' sqlSrc: ';
 

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/export/limited-support-tools/LSO/uninstrumented.sql
----------------------------------------------------------------------
diff --git a/core/sqf/export/limited-support-tools/LSO/uninstrumented.sql b/core/sqf/export/limited-support-tools/LSO/uninstrumented.sql
index 10433a9..aad7f8c 100644
--- a/core/sqf/export/limited-support-tools/LSO/uninstrumented.sql
+++ b/core/sqf/export/limited-support-tools/LSO/uninstrumented.sql
@@ -1,3 +1,26 @@
+--
+-- @@@ 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 @@@
+--
+
 -- set param ?filter 'UNMONITORED_QUERIES=30';  -- 30 seconds
 set param ?lsq  ' sqlSrc: ';
 

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/export/limited-support-tools/QPDrawer/PlanForest
----------------------------------------------------------------------
diff --git a/core/sqf/export/limited-support-tools/QPDrawer/PlanForest b/core/sqf/export/limited-support-tools/QPDrawer/PlanForest
index 2965d95..2d50836 100644
--- a/core/sqf/export/limited-support-tools/QPDrawer/PlanForest
+++ b/core/sqf/export/limited-support-tools/QPDrawer/PlanForest
@@ -1,3 +1,26 @@
+'#
+'# @@@ 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 @@@
+'#
+
 '########################################################################
 '#                                                                      #
 '#   Excel/VBA macro to draw SQL/MX query execution plan trees from     #

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/export/share/man/man1/ckill.1
----------------------------------------------------------------------
diff --git a/core/sqf/export/share/man/man1/ckill.1 b/core/sqf/export/share/man/man1/ckill.1
index 532d65e..7e44fce 100644
--- a/core/sqf/export/share/man/man1/ckill.1
+++ b/core/sqf/export/share/man/man1/ckill.1
@@ -1,3 +1,25 @@
+.\" @@@ 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 @@@
+.\"
+.\"#############################################################
 .TH CKILL 1 "05 May 2010" "SQ scripts" "SQ-SCRIPTS Reference Pages"
 .SH NAME
 ckill \- cluster process kill

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/export/share/man/man1/ckillall.1
----------------------------------------------------------------------
diff --git a/core/sqf/export/share/man/man1/ckillall.1 b/core/sqf/export/share/man/man1/ckillall.1
index 6332577..318d592 100644
--- a/core/sqf/export/share/man/man1/ckillall.1
+++ b/core/sqf/export/share/man/man1/ckillall.1
@@ -1,3 +1,25 @@
+.\" @@@ 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 @@@
+.\"
+.\"#############################################################
 .TH CKILLALL 1 "05 May 2010" "SQ scripts" "SQ-SCRIPTS Reference Pages"
 .SH NAME
 ckillall \- cluster process killall

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/export/share/man/man1/createhooks.1
----------------------------------------------------------------------
diff --git a/core/sqf/export/share/man/man1/createhooks.1 b/core/sqf/export/share/man/man1/createhooks.1
index 1e1c316..e673479 100644
--- a/core/sqf/export/share/man/man1/createhooks.1
+++ b/core/sqf/export/share/man/man1/createhooks.1
@@ -1,3 +1,25 @@
+.\" @@@ 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 @@@
+.\"
+.\"#############################################################
 .TH CREATEHOOKS 1 "05 May 2013" "SQ scripts" "SQ-SCRIPTS Reference Pages"
 .SH NAME
 createhooks \- create hook files

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/export/share/man/man1/cstat.1
----------------------------------------------------------------------
diff --git a/core/sqf/export/share/man/man1/cstat.1 b/core/sqf/export/share/man/man1/cstat.1
index 1128f76a..b154b33 100644
--- a/core/sqf/export/share/man/man1/cstat.1
+++ b/core/sqf/export/share/man/man1/cstat.1
@@ -1,3 +1,25 @@
+.\" @@@ 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 @@@
+.\"
+.\"#############################################################
 .TH CSTAT 1 "11 May 2010" "SQ scripts" "SQ-SCRIPTS Reference Pages"
 .SH NAME
 cstat \- cluster process status for SQ

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/export/share/man/man1/delhooks.1
----------------------------------------------------------------------
diff --git a/core/sqf/export/share/man/man1/delhooks.1 b/core/sqf/export/share/man/man1/delhooks.1
index cdb1be3..3dd0347 100644
--- a/core/sqf/export/share/man/man1/delhooks.1
+++ b/core/sqf/export/share/man/man1/delhooks.1
@@ -1,3 +1,25 @@
+.\" @@@ 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 @@@
+.\"
+.\"#############################################################
 .TH DELHOOKS 1 "05 May 2013" "SQ scripts" "SQ-SCRIPTS Reference Pages"
 .SH NAME
 delhooks \- create hook files

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/export/share/man/man1/pkillall.1
----------------------------------------------------------------------
diff --git a/core/sqf/export/share/man/man1/pkillall.1 b/core/sqf/export/share/man/man1/pkillall.1
index 2db3ce8..be409a3 100644
--- a/core/sqf/export/share/man/man1/pkillall.1
+++ b/core/sqf/export/share/man/man1/pkillall.1
@@ -1,3 +1,25 @@
+.\" @@@ 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 @@@
+.\"
+.\"#############################################################
 .TH PKILLALL 1 "05 May 2010" "SQ scripts" "SQ-SCRIPTS Reference Pages"
 .SH NAME
 pkillall \- process killall

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/export/share/man/man1/pstacksq.1
----------------------------------------------------------------------
diff --git a/core/sqf/export/share/man/man1/pstacksq.1 b/core/sqf/export/share/man/man1/pstacksq.1
index c0f525a..08da4e1 100644
--- a/core/sqf/export/share/man/man1/pstacksq.1
+++ b/core/sqf/export/share/man/man1/pstacksq.1
@@ -1,3 +1,25 @@
+.\" @@@ 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 @@@
+.\"
+.\"#############################################################
 .TH PSTACKSQ 1 "05 March 2013" "SQ scripts" "SQ-SCRIPTS Reference Pages"
 .SH NAME
 pstacksq \- pstack with line numbers

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/export/share/man/man1/pstat.1
----------------------------------------------------------------------
diff --git a/core/sqf/export/share/man/man1/pstat.1 b/core/sqf/export/share/man/man1/pstat.1
index b2fcb50..2ace3b2 100644
--- a/core/sqf/export/share/man/man1/pstat.1
+++ b/core/sqf/export/share/man/man1/pstat.1
@@ -1,3 +1,25 @@
+.\" @@@ 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 @@@
+.\"
+.\"#############################################################
 .TH PSTAT 1 "05 May 2010" "SQ scripts" "SQ-SCRIPTS Reference Pages"
 .SH NAME
 pstat \- process status for SQ

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/export/share/man/man1/shell.1
----------------------------------------------------------------------
diff --git a/core/sqf/export/share/man/man1/shell.1 b/core/sqf/export/share/man/man1/shell.1
index 378b879..26f71d9 100644
--- a/core/sqf/export/share/man/man1/shell.1
+++ b/core/sqf/export/share/man/man1/shell.1
@@ -1,3 +1,25 @@
+.\" @@@ 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 @@@
+.\"
+.\"#############################################################
 .TH SHELL 1 "05 October 2012" "SQ bin" "SQ-BIN Reference Pages"
 .SH NAME
 shell \- monitor shell

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/export/share/man/man1/sq.1
----------------------------------------------------------------------
diff --git a/core/sqf/export/share/man/man1/sq.1 b/core/sqf/export/share/man/man1/sq.1
index 252983d..e2dba94 100644
--- a/core/sqf/export/share/man/man1/sq.1
+++ b/core/sqf/export/share/man/man1/sq.1
@@ -1,3 +1,25 @@
+.\" @@@ 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 @@@
+.\"
+.\"#############################################################
 .TH SQ 1 "05 March 2013" "SQ" "SQ Reference Pages"
 .SH LIST OF COMMANDS
 .nf

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/export/share/man/man1/sqcheck.1
----------------------------------------------------------------------
diff --git a/core/sqf/export/share/man/man1/sqcheck.1 b/core/sqf/export/share/man/man1/sqcheck.1
index 30184c6..5429a6f 100644
--- a/core/sqf/export/share/man/man1/sqcheck.1
+++ b/core/sqf/export/share/man/man1/sqcheck.1
@@ -1,3 +1,25 @@
+.\" @@@ 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 @@@
+.\"
+.\"#############################################################
 .TH SQCHECK 1 "05 May 2010" "SQ scripts" "SQ-SCRIPTS Reference Pages"
 .SH NAME
 sqcheck \- Check the status of the SQ env

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/export/share/man/man1/sqcheckmon.1
----------------------------------------------------------------------
diff --git a/core/sqf/export/share/man/man1/sqcheckmon.1 b/core/sqf/export/share/man/man1/sqcheckmon.1
index 9e6515e..bf29462 100644
--- a/core/sqf/export/share/man/man1/sqcheckmon.1
+++ b/core/sqf/export/share/man/man1/sqcheckmon.1
@@ -1,3 +1,25 @@
+.\" @@@ 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 @@@
+.\"
+.\"#############################################################
 .TH SQCHECKMON 1 "04 October 2012" "SQ scripts" "SQ-SCRIPTS Reference Pages"
 .SH NAME
 sqcheckmon \- Checks the health of the SQ monitor

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/export/share/man/man1/sqcore.1
----------------------------------------------------------------------
diff --git a/core/sqf/export/share/man/man1/sqcore.1 b/core/sqf/export/share/man/man1/sqcore.1
index b25f7f2..87d914d 100644
--- a/core/sqf/export/share/man/man1/sqcore.1
+++ b/core/sqf/export/share/man/man1/sqcore.1
@@ -1,3 +1,25 @@
+.\" @@@ 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 @@@
+.\"
+.\"#############################################################
 .TH SQCORE 1 "05 May 2010" "SQ scripts" "SQ-SCRIPTS Reference Pages"
 .SH NAME
 sqcore \- Move core files to the head node

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/export/share/man/man1/sqcorefile.1
----------------------------------------------------------------------
diff --git a/core/sqf/export/share/man/man1/sqcorefile.1 b/core/sqf/export/share/man/man1/sqcorefile.1
index dd56de7..8da035f 100644
--- a/core/sqf/export/share/man/man1/sqcorefile.1
+++ b/core/sqf/export/share/man/man1/sqcorefile.1
@@ -1,3 +1,25 @@
+.\" @@@ 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 @@@
+.\"
+.\"#############################################################
 .TH SQCOREFILE 1 "06 April 2012" "SQ scripts" "SQ-SCRIPTS Reference Pages"
 .SH NAME
 sqcorefile \- Display core-file information

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/export/share/man/man1/sqgen.1
----------------------------------------------------------------------
diff --git a/core/sqf/export/share/man/man1/sqgen.1 b/core/sqf/export/share/man/man1/sqgen.1
index 4f6a9d5..6e8c144 100644
--- a/core/sqf/export/share/man/man1/sqgen.1
+++ b/core/sqf/export/share/man/man1/sqgen.1
@@ -1,3 +1,25 @@
+.\" @@@ 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 @@@
+.\"
+.\"#############################################################
 .TH SQGEN 1 "05 May 2010" "SQ scripts" "SQ-SCRIPTS Reference Pages"
 .SH NAME
 sqgen \- SQ Configuration Generator

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/export/share/man/man1/sqid.1
----------------------------------------------------------------------
diff --git a/core/sqf/export/share/man/man1/sqid.1 b/core/sqf/export/share/man/man1/sqid.1
index b8f80d9..3e6fb1b 100644
--- a/core/sqf/export/share/man/man1/sqid.1
+++ b/core/sqf/export/share/man/man1/sqid.1
@@ -1,3 +1,25 @@
+.\" @@@ 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 @@@
+.\"
+.\"#############################################################
 .TH SQID 1 "12 March 2013" "SQ bin" "SQ-BIN Reference Pages"
 .SH NAME
 sqid \- Display SQ identifier

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/export/share/man/man1/sqinfo.1
----------------------------------------------------------------------
diff --git a/core/sqf/export/share/man/man1/sqinfo.1 b/core/sqf/export/share/man/man1/sqinfo.1
index 6f8effd..7daec1c 100644
--- a/core/sqf/export/share/man/man1/sqinfo.1
+++ b/core/sqf/export/share/man/man1/sqinfo.1
@@ -1,3 +1,25 @@
+.\" @@@ 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 @@@
+.\"
+.\"#############################################################
 .TH SQINFO 1 "05 October 2012" "SQ bin" "SQ-BIN Reference Pages"
 .SH NAME
 sqinfo \- Collects SQ information

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/export/share/man/man1/sqipcrm.1
----------------------------------------------------------------------
diff --git a/core/sqf/export/share/man/man1/sqipcrm.1 b/core/sqf/export/share/man/man1/sqipcrm.1
index 7428bdd..3f49ed5 100644
--- a/core/sqf/export/share/man/man1/sqipcrm.1
+++ b/core/sqf/export/share/man/man1/sqipcrm.1
@@ -1,3 +1,25 @@
+.\" @@@ 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 @@@
+.\"
+.\"#############################################################
 .TH SQIPCRM 1 "05 May 2010" "SQ scripts" "SQ-SCRIPTS Reference Pages"
 .SH NAME
 sqipcrm \- SQ ipcrm

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/export/share/man/man1/sqkill.1
----------------------------------------------------------------------
diff --git a/core/sqf/export/share/man/man1/sqkill.1 b/core/sqf/export/share/man/man1/sqkill.1
index b926873..c06aa35 100644
--- a/core/sqf/export/share/man/man1/sqkill.1
+++ b/core/sqf/export/share/man/man1/sqkill.1
@@ -1,3 +1,25 @@
+.\" @@@ 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 @@@
+.\"
+.\"#############################################################
 .TH SQKILL 1 "05 May 2010" "SQ scripts" "SQ-SCRIPTS Reference Pages"
 .SH NAME
 sqkill \- kill process through shell

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/export/share/man/man1/sqps.1
----------------------------------------------------------------------
diff --git a/core/sqf/export/share/man/man1/sqps.1 b/core/sqf/export/share/man/man1/sqps.1
index d354d41..1fc6ae0 100644
--- a/core/sqf/export/share/man/man1/sqps.1
+++ b/core/sqf/export/share/man/man1/sqps.1
@@ -1,3 +1,25 @@
+.\" @@@ 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 @@@
+.\"
+.\"#############################################################
 .TH SQPS 1 "05 May 2010" "SQ scripts" "SQ-SCRIPTS Reference Pages"
 .SH NAME
 sqps \- ps through shell

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/export/share/man/man1/sqpstack.1
----------------------------------------------------------------------
diff --git a/core/sqf/export/share/man/man1/sqpstack.1 b/core/sqf/export/share/man/man1/sqpstack.1
index f3c4ade..98efbde 100644
--- a/core/sqf/export/share/man/man1/sqpstack.1
+++ b/core/sqf/export/share/man/man1/sqpstack.1
@@ -1,3 +1,25 @@
+.\" @@@ 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 @@@
+.\"
+.\"#############################################################
 .TH SQPSTACK 1 "05 May 2010" "SQ scripts" "SQ-SCRIPTS Reference Pages"
 .SH NAME
 sqpstack \- pstack processes with specific binaries over cluster

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/export/share/man/man1/sqshell.1
----------------------------------------------------------------------
diff --git a/core/sqf/export/share/man/man1/sqshell.1 b/core/sqf/export/share/man/man1/sqshell.1
index 5daedb1..67669b0 100644
--- a/core/sqf/export/share/man/man1/sqshell.1
+++ b/core/sqf/export/share/man/man1/sqshell.1
@@ -1,3 +1,25 @@
+.\" @@@ 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 @@@
+.\"
+.\"#############################################################
 .TH SQSHELL 1 "05 May 2010" "SQ scripts" "SQ-SCRIPTS Reference Pages"
 .SH NAME
 sqshell \- SQ shell

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/69f18872/core/sqf/export/share/man/man1/sqsk.1
----------------------------------------------------------------------
diff --git a/core/sqf/export/share/man/man1/sqsk.1 b/core/sqf/export/share/man/man1/sqsk.1
index 8174e0e..01c6c36 100644
--- a/core/sqf/export/share/man/man1/sqsk.1
+++ b/core/sqf/export/share/man/man1/sqsk.1
@@ -1,3 +1,25 @@
+.\" @@@ 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 @@@
+.\"
+.\"#############################################################
 .TH SQSK 1 "05 May 2010" "SQ scripts" "SQ-SCRIPTS Reference Pages"
 .SH NAME
 sqsk \- Searches (and Kills!) SQ process(es) based on the specified search string