<ruby id="bdb3f"></ruby>

    <p id="bdb3f"><cite id="bdb3f"></cite></p>

      <p id="bdb3f"><cite id="bdb3f"><th id="bdb3f"></th></cite></p><p id="bdb3f"></p>
        <p id="bdb3f"><cite id="bdb3f"></cite></p>

          <pre id="bdb3f"></pre>
          <pre id="bdb3f"><del id="bdb3f"><thead id="bdb3f"></thead></del></pre>

          <ruby id="bdb3f"><mark id="bdb3f"></mark></ruby><ruby id="bdb3f"></ruby>
          <pre id="bdb3f"><pre id="bdb3f"><mark id="bdb3f"></mark></pre></pre><output id="bdb3f"></output><p id="bdb3f"></p><p id="bdb3f"></p>

          <pre id="bdb3f"><del id="bdb3f"><progress id="bdb3f"></progress></del></pre>

                <ruby id="bdb3f"></ruby>

                ??碼云GVP開源項目 12k star Uniapp+ElementUI 功能強大 支持多語言、二開方便! 廣告
                # INFORMATICA 轉換教程&過濾器轉換 > 原文: [https://www.guru99.com/introduction-transformations-informatica-and-filter-transformation.html](https://www.guru99.com/introduction-transformations-informatica-and-filter-transformation.html) ##### 什么是轉型? Informatica 中的轉換是創建,修改數據或將數據傳遞到已定義的目標結構(表,文件或任何其他目標)的對象。 Informatica 中轉換的目的是根據目標系統的要求修改源數據。 它還可以確保將數據加載到目標中的質量。 Informatica 提供了各種轉換來執行特定功能。 例如,根據源數據執行稅額計算,數據清理操作等。在轉換中,我們連接端口以將數據傳遞給它,然后轉換通過輸出端口返回輸出。 在本教程中,您將學習 * [轉換的分類](#1) * [過濾器轉換](#2) ## 轉換分類 轉換分為兩類,一類基于連接性,另一類基于行數的變化。 首先,我們將研究基于連接的轉換。 基于連通性的轉換類型 * 關聯的轉換 * 未關聯的轉換 在 Informatica 中,在映射期間,與其他轉換連接的轉換稱為連接轉換。 例如,源表 EMP 的源限定符轉換連接到過濾器轉換以過濾部門的員工。 未與任何其他轉換連接的那些轉換稱為非連接轉換。 通過在其他轉換(如 Expression 轉換)中調用它們來使用它們的功能。 這些轉換不是管道的一部分。 當為每個輸入行調用轉換或期望轉換返回值時,首選連接轉換。 例如,對于每行中的郵政編碼,轉換將返回城市名稱。 當僅定期或根據某些條件要求其功能時,未連接的轉換將非常有用。 例如,如果沒有稅收值,則計算稅收明細。 ![INFORMATICA Transformations Tutorial & Filter Transformation](https://img.kancloud.cn/e4/19/e419b93612f85c57f2ed68b9e9538094_816x329.png "Introduction to Transformations in Informatica and Filter Transformation") 基于行數變化的轉換類型 * 主動轉換 * 被動變換 活動轉換是那些修改數據行和傳遞給它們的輸入行數的控件。 例如,如果某個轉換接收到十行的行作為輸入,并且返回十五行的行作為輸出,則它是一個活動轉換。 行中的數據也在活動轉換中被修改。 被動轉換是那些不更改輸入行數的轉換。 在無源轉換中,輸入和輸出行的數量保持不變,僅在行級別修改數據。 在被動轉換中,不會創建新行,也不會刪除現有行。 ## 以下是 Informatica 中的轉換列表 * 源限定符轉換 * 聚合轉型 * 路由器轉換 * 細木工轉換 * 等級轉換 * 序列發生器轉換 * 交易控制轉換 * 查找和可重復使用的轉換 * 歸一化變換 * 轉型的性能調優 * 外部轉型 * 表達轉換 ## 什么是濾波器轉換? 篩選器轉換是一個活動的轉換,因為它更改了記錄數。 使用過濾器轉換,我們可以根據過濾條件過濾記錄。 篩選器轉換是一種主動轉換,因為它更改了記錄數。 例如,對于僅加載 deptno 等于 10 的員工記錄,我們可以將過濾器轉換放在過濾條件為 deptno = 10 的映射中。 因此,只有那些具有 deptno = 10 的記錄才可以通過過濾器轉換傳遞,其余的其他記錄將被丟棄。 如何使用過濾器轉換- **步驟 1** –創建一個具有源“ EMP”和目標“ EMP_TARGET”的映射 ![INFORMATICA Transformations Tutorial & Filter Transformation](https://img.kancloud.cn/23/2c/232c191e8ed7e2937a2e03ccc292d7e8_1466x574.png "Introduction to Transformations in Informatica and Filter Transformation") **步驟 2** –然后在映射中 1. 選擇轉換菜單 2. 選擇創建選項 ![INFORMATICA Transformations Tutorial & Filter Transformation](https://img.kancloud.cn/b4/92/b49205c19c3ee4635a045467e47dc196_1444x556.png "Introduction to Transformations in Informatica and Filter Transformation") **步驟 3** -然后在創建轉換窗口中 1. 從列表中選擇過濾器轉換 2. 輸入轉換名稱“ fltr_deptno_10” 3. 選擇創建選項 ![INFORMATICA Transformations Tutorial & Filter Transformation](https://img.kancloud.cn/b2/49/b2492f88cda0af1458eed7fb642ea8a6_396x194.png "Introduction to Transformations in Informatica and Filter Transformation") **步驟 4** –將創建過濾器轉換,在創建轉換窗口中選擇“完成”按鈕 ![INFORMATICA Transformations Tutorial & Filter Transformation](https://img.kancloud.cn/0b/9e/0b9e6dbb362bacf818cd94db878bcf3b_1039x508.png "Introduction to Transformations in Informatica and Filter Transformation") **步驟 5** –在映射中 1. 將所有“源”限定符列拖放到過濾器轉換 2. 將過濾器轉換中的列鏈接到目標表 ![INFORMATICA Transformations Tutorial & Filter Transformation](https://img.kancloud.cn/5d/c5/5dc52a706e1288e5245a8b94180e92c8_1055x509.png "Introduction to Transformations in Informatica and Filter Transformation") **步驟 6** –雙擊過濾器轉換以打開其屬性,然后 1. 選擇屬性菜單 2. 單擊過濾條件編輯器 ![INFORMATICA Transformations Tutorial & Filter Transformation](https://img.kancloud.cn/bb/71/bb71169a501151d2391b50742ab5cac8_718x466.png "Introduction to Transformations in Informatica and Filter Transformation") **步驟 7** –然后在過濾條件表達式編輯器中 1. 輸入過濾條件– deptno = 10 2. 選擇確定按鈕 ![INFORMATICA Transformations Tutorial & Filter Transformation](https://img.kancloud.cn/04/17/041721d3cf02c026d2b46e4e279c7527_811x533.png "Introduction to Transformations in Informatica and Filter Transformation") **步驟 8** –現在再次在“屬性”選項卡的編輯轉換窗口中,您將看到過濾條件,選擇“確定”按鈕 ![INFORMATICA Transformations Tutorial & Filter Transformation](https://img.kancloud.cn/50/42/5042354fca5961f2101a45c1850172ba_718x466.png "Introduction to Transformations in Informatica and Filter Transformation") 現在保存映射,并在創建會話和工作流之后執行它。 在目標表中,將僅加載 deptno = 10 的記錄。 這樣,您可以使用過濾器轉換來過濾源記錄。
                  <ruby id="bdb3f"></ruby>

                  <p id="bdb3f"><cite id="bdb3f"></cite></p>

                    <p id="bdb3f"><cite id="bdb3f"><th id="bdb3f"></th></cite></p><p id="bdb3f"></p>
                      <p id="bdb3f"><cite id="bdb3f"></cite></p>

                        <pre id="bdb3f"></pre>
                        <pre id="bdb3f"><del id="bdb3f"><thead id="bdb3f"></thead></del></pre>

                        <ruby id="bdb3f"><mark id="bdb3f"></mark></ruby><ruby id="bdb3f"></ruby>
                        <pre id="bdb3f"><pre id="bdb3f"><mark id="bdb3f"></mark></pre></pre><output id="bdb3f"></output><p id="bdb3f"></p><p id="bdb3f"></p>

                        <pre id="bdb3f"><del id="bdb3f"><progress id="bdb3f"></progress></del></pre>

                              <ruby id="bdb3f"></ruby>

                              哎呀哎呀视频在线观看