Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

.logon 127.0.0.

1/tduser,tduser;
.export file = f:/TDPractice/PracticeTD/DynamicViewCreater/1.txt
.os rm f:/TDPractice/PracticeTD/DynamicViewCreater/1.txt
.SET SEPARATOR '|'
.set width 30
DATABASE retail;
help table retail.item;
.logoff
.EXIT
bteq < bteq_to_export_result.bteq
sed
sed
sed
sed
cat

'1,2d' 1.txt > temp1.txt


-n 1p temp1.txt > temp2.txt
1d temp1.txt > temp3.txt
's/^/\t,/' temp3.txt > temp3_with_comma.txt
temp2.txt temp3_with_comma.txt > temp4.txt

cat > select_temp.txt << EOF


REPLACE VIEW RETAIL.$ AS
LOCK ROW FOR ACCESS
SELECT
EOF
cat > from_temp.txt
FROM RETAIL.ITEM;
cat select_temp.txt temp4.txt from_temp.txt > view_ddl.txt
cat view_ddl.txt
./bteq_to_export_result.bteq employee2
./Dynamic_view_C.txt employee2

./var_line_by_line.txt
./test_view_table_column.txt
ls -la customers.diff| awk '{print $9, "\t", $5}'

You might also like