例: ユーザーがインストールしたファイル(UIF)の表示 - Advanced SQL Engine - Teradata Database

Teradata Vantage™ - SQLデータ定義言語 構文規則および例

Product
Advanced SQL Engine
Teradata Database
Release Number
17.05
Published
2021年1月
ft:locale
ja-JP
ft:lastEdition
2021-03-30
dita:mapPath
ja-JP/ncd1596241368722.ditamap
dita:ditavalPath
ja-JP/ncd1596241368722.ditaval
dita:id
B035-1144
Product Category
Software
Teradata Vantage

これはユーザーがインストールしたファイル(UIF)のSHOW FILEの例です。

SHOW FILE mapper;

 *** Text of DDL statement returned. 
----------------------------------------------------------------------------------
CALL SYSUIF.INSTALL_FILE('mapper','mapper.py','cz!mapper.py!/tmp/mapper.py')

 *** Text of DDL statement returned. 
----------------------------------------------------------------------------------
#!/usr/bin/python

import sys

# input comes from STDIN (standard input)
for line in sys.stdin:
    # remove leading and trailing whitespace
    line = line.strip()
    # split the line into words
    words = line.split()
    # increase counters
    for word in words:
        # write the results to STDOUT (standard output);
        # what we output here will be the input for the
        # Reduce step, i.e. the input for reducer.py
        #
        # tab-delimited; the trivial word count is 1
        print '%s\t%s' % (word, 1)