<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>All board posts in Teradata Community</title>
    <link>https://community.teradata.com/</link>
    <description>Teradata Community</description>
    <pubDate>Tue, 26 Jun 2018 21:59:18 GMT</pubDate>
    <dc:creator>Community</dc:creator>
    <dc:date>2018-06-26T21:59:18Z</dc:date>
    <item>
      <title>How to create a table in my data lab?</title>
      <link>https://community.teradata.com/t5/Teradata-Studio/How-to-create-a-table-in-my-data-lab/m-p/81882#M2119</link>
      <description>&lt;P&gt;hi, so i exported 3 similar CSV files from my sharedrive to my data lab in Teradata.after exporting all 3 csv files to my data lab, i merged the three files using a union function&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;select "column1",&lt;SPAN&gt;"column2",&lt;/SPAN&gt;&lt;SPAN&gt;"column3" from "datalab"." table1"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;union&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;select "column1","column2","column3" from "datalab"." table2"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;union&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;select "column1","column2","column3" from "datalab"." table3";&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;now i like to create that table and insert it into my data lab and call that table "COMBINED TABLE".&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;How do i create or insert that table in my data lab? my data lab is called "datalab"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 17:37:40 GMT</pubDate>
      <guid>https://community.teradata.com/t5/Teradata-Studio/How-to-create-a-table-in-my-data-lab/m-p/81882#M2119</guid>
      <dc:creator>mikefiorelli</dc:creator>
      <dc:date>2018-06-26T17:37:40Z</dc:date>
    </item>
    <item>
      <title>Re: Same value across multiple columns</title>
      <link>https://community.teradata.com/t5/Database/Same-value-across-multiple-columns/m-p/81881#M33270</link>
      <description>&lt;P&gt;You could use the MAX window function :&lt;/P&gt;&lt;PRE&gt;select EmpID
     , ItemsPurchased
     , EmailID
     , max(EmailID) over(partition by EmpId) as EmailID_populated
  from MyTable;&lt;/PRE&gt;</description>
      <pubDate>Tue, 26 Jun 2018 17:27:17 GMT</pubDate>
      <guid>https://community.teradata.com/t5/Database/Same-value-across-multiple-columns/m-p/81881#M33270</guid>
      <dc:creator>Waldar</dc:creator>
      <dc:date>2018-06-26T17:27:17Z</dc:date>
    </item>
    <item>
      <title>How to find the application from which a query was submitted</title>
      <link>https://community.teradata.com/t5/Database/How-to-find-the-application-from-which-a-query-was-submitted/m-p/81880#M1644</link>
      <description>&lt;P&gt;&lt;FONT face="trebuchet ms,geneva"&gt;Hello,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="trebuchet ms,geneva"&gt;I want to find the application from which a particular query was submitted by a user using the&amp;nbsp;&lt;FONT color="#0000FF"&gt;PDCRINFO.DBQL*&lt;/FONT&gt; tables. For instance I would want to know if a query was submiited by a user from SQL Asst, or from Business Objects, or from Informatica, or from simply a bteq script on unix etc.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="trebuchet ms,geneva"&gt;I know how to locate a query in history from &lt;FONT color="#0000FF"&gt;PDCRINFO.DBQLOGTBL_HST&lt;/FONT&gt;. &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="trebuchet ms,geneva"&gt;However, any pointers to the above requirement would be extremely helpful.. I am using Teradata v14&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="trebuchet ms,geneva"&gt;Thanks in advance...&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 17:06:31 GMT</pubDate>
      <guid>https://community.teradata.com/t5/Database/How-to-find-the-application-from-which-a-query-was-submitted/m-p/81880#M1644</guid>
      <dc:creator>mave18</dc:creator>
      <dc:date>2018-06-26T17:06:31Z</dc:date>
    </item>
    <item>
      <title>Re: Find last match in a column return to value in the next row</title>
      <link>https://community.teradata.com/t5/Database/Find-last-match-in-a-column-return-to-value-in-the-next-row/m-p/81879#M33269</link>
      <description>&lt;P&gt;There is something missing here - the sequence of events within an ID. Time is not sufficient because for example ID 'A' has two 22's and a 33 following the 44 in time sequence.&amp;nbsp; Which is the one you are looking for?!?&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 17:00:29 GMT</pubDate>
      <guid>https://community.teradata.com/t5/Database/Find-last-match-in-a-column-return-to-value-in-the-next-row/m-p/81879#M33269</guid>
      <dc:creator>GJColeman</dc:creator>
      <dc:date>2018-06-26T17:00:29Z</dc:date>
    </item>
    <item>
      <title>Re: Find last match in a column return to value in the next row</title>
      <link>https://community.teradata.com/t5/Database/Find-last-match-in-a-column-return-to-value-in-the-next-row/m-p/81878#M33268</link>
      <description>&lt;P&gt;Hi GJ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;Thanks for the reply. The command you have here will return multi-rows for each ID. I need only one row for each ID&amp;nbsp;- the row next to the last '44' event... Any thoughts? Thanks.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 14:02:32 GMT</pubDate>
      <guid>https://community.teradata.com/t5/Database/Find-last-match-in-a-column-return-to-value-in-the-next-row/m-p/81878#M33268</guid>
      <dc:creator>CC</dc:creator>
      <dc:date>2018-06-26T14:02:32Z</dc:date>
    </item>
    <item>
      <title>Re: Find last match in a column return to value in the next row</title>
      <link>https://community.teradata.com/t5/Database/Find-last-match-in-a-column-return-to-value-in-the-next-row/m-p/81877#M33267</link>
      <description>&lt;P&gt;Hi Waldar,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the detail. Time is different for each ID.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am new to TD SQL, the command you have here will return multi-rows for each ID. I need only one row for each ID&amp;nbsp;- the row next to the last '44' event.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you please help? Thanks in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 14:01:24 GMT</pubDate>
      <guid>https://community.teradata.com/t5/Database/Find-last-match-in-a-column-return-to-value-in-the-next-row/m-p/81877#M33267</guid>
      <dc:creator>CC</dc:creator>
      <dc:date>2018-06-26T14:01:24Z</dc:date>
    </item>
    <item>
      <title>Re: tdc.deploy.exe</title>
      <link>https://community.teradata.com/t5/Teradata-Database-on-VMWare/tdc-deploy-exe/m-p/81876#M188</link>
      <description>&lt;P&gt;The new document TDVM Getting Started Guide v3.02 contains all te power CLi commands, that 's enough for me&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 12:45:23 GMT</pubDate>
      <guid>https://community.teradata.com/t5/Teradata-Database-on-VMWare/tdc-deploy-exe/m-p/81876#M188</guid>
      <dc:creator>Eric</dc:creator>
      <dc:date>2018-06-26T12:45:23Z</dc:date>
    </item>
    <item>
      <title>Re: Same value across multiple columns</title>
      <link>https://community.teradata.com/t5/Database/Same-value-across-multiple-columns/m-p/81875#M33266</link>
      <description>&lt;P&gt;Am sorry, its C14&amp;nbsp; only - typo..&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We have only c12 and c14 here.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 09:08:05 GMT</pubDate>
      <guid>https://community.teradata.com/t5/Database/Same-value-across-multiple-columns/m-p/81875#M33266</guid>
      <dc:creator>Phoenix</dc:creator>
      <dc:date>2018-06-26T09:08:05Z</dc:date>
    </item>
    <item>
      <title>Re: Same value across multiple columns</title>
      <link>https://community.teradata.com/t5/Database/Same-value-across-multiple-columns/m-p/81874#M33265</link>
      <description>&lt;P&gt;Why should gfx.rfg@yahoo.com be assigned to C&lt;STRONG&gt;14&lt;/STRONG&gt;, it's the email of C&lt;STRONG&gt;15&lt;/STRONG&gt;?&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 07:58:54 GMT</pubDate>
      <guid>https://community.teradata.com/t5/Database/Same-value-across-multiple-columns/m-p/81874#M33265</guid>
      <dc:creator>dnoeth</dc:creator>
      <dc:date>2018-06-26T07:58:54Z</dc:date>
    </item>
    <item>
      <title>Re: Predicted confidence of DenseSVMPredictor</title>
      <link>https://community.teradata.com/t5/Aster/Predicted-confidence-of-DenseSVMPredictor/m-p/81873#M521</link>
      <description>&lt;P&gt;I am sorry. I do not have these details. In case you are a Teradata or Aster customer, you can open an incident. Customer support will try&amp;nbsp;reaching out to engineering to gather these details. I am not sure whether&amp;nbsp;all answers&amp;nbsp;can be provided but it is worth a try.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 07:16:38 GMT</pubDate>
      <guid>https://community.teradata.com/t5/Aster/Predicted-confidence-of-DenseSVMPredictor/m-p/81873#M521</guid>
      <dc:creator>margarete</dc:creator>
      <dc:date>2018-06-26T07:16:38Z</dc:date>
    </item>
    <item>
      <title>Same value across multiple columns</title>
      <link>https://community.teradata.com/t5/Database/Same-value-across-multiple-columns/m-p/81872#M33264</link>
      <description>&lt;P&gt;Table structure as below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;EmpID ItemsPurchased EmailID&lt;/P&gt;&lt;P&gt;C12&amp;nbsp; &amp;nbsp; &amp;nbsp; Bread&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;abc.xyz@gmail.com&lt;/P&gt;&lt;P&gt;C12&amp;nbsp; &amp;nbsp; &amp;nbsp; Milk&amp;nbsp;&lt;/P&gt;&lt;P&gt;C12&amp;nbsp; &amp;nbsp; &amp;nbsp; Butter&lt;/P&gt;&lt;P&gt;C14&amp;nbsp; &amp;nbsp; &amp;nbsp; Jam&lt;/P&gt;&lt;P&gt;C14&amp;nbsp; &amp;nbsp; &amp;nbsp; Choc&lt;/P&gt;&lt;P&gt;C15&amp;nbsp; &amp;nbsp; &amp;nbsp; Watch&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;gfx.rfg@yahoo.com&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would need email ids to populated partitioned by empid. ie., abc.xyz@gmail.com should be populated for all rows of C12 and similiarly, gfx.rfg@yahoo.com for C14 empid.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 07:13:24 GMT</pubDate>
      <guid>https://community.teradata.com/t5/Database/Same-value-across-multiple-columns/m-p/81872#M33264</guid>
      <dc:creator>Phoenix</dc:creator>
      <dc:date>2018-06-26T07:13:24Z</dc:date>
    </item>
    <item>
      <title>Re: trying to get decimal precision on date difference</title>
      <link>https://community.teradata.com/t5/Database/trying-to-get-decimal-precision-on-date-difference/m-p/81868#M33263</link>
      <description>&lt;P&gt;I'll go with my own guess and suggest you this code :&lt;/P&gt;&lt;PRE&gt;select months_between(date1, date2) / 12.00 AS AGE_AT_CLM_LN_DT&lt;/PRE&gt;</description>
      <pubDate>Mon, 25 Jun 2018 15:15:56 GMT</pubDate>
      <guid>https://community.teradata.com/t5/Database/trying-to-get-decimal-precision-on-date-difference/m-p/81868#M33263</guid>
      <dc:creator>Waldar</dc:creator>
      <dc:date>2018-06-25T15:15:56Z</dc:date>
    </item>
    <item>
      <title>Re: index for case statements</title>
      <link>https://community.teradata.com/t5/Database/index-for-case-statements/m-p/81867#M33262</link>
      <description>&lt;P&gt;For performance you must avoid the cross join + distinct operations.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;One good method would be an UNPIVOT-like query :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;select 'A', col1 from stg_table union all
select 'B', col2 from stg_table&lt;/PRE&gt;&lt;P&gt;You can generate this query against &lt;FONT face="courier new,courier"&gt;&lt;FONT face="helvetica"&gt;your ref_table, with something like :&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;select 'select ''' || val || ''', '
    || case val when 'A' then 'col1' when 'B' then 'col2' end
    || ' from stg_table '
    || case row_number() over(order by val desc) when 1 then ';' else ' union all ' || chr(10) end as req
  from ref_table 
 where val in ('A', 'B');&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jun 2018 14:48:44 GMT</pubDate>
      <guid>https://community.teradata.com/t5/Database/index-for-case-statements/m-p/81867#M33262</guid>
      <dc:creator>Waldar</dc:creator>
      <dc:date>2018-06-25T14:48:44Z</dc:date>
    </item>
    <item>
      <title>Re: Weekly Active Users using Windowing function</title>
      <link>https://community.teradata.com/t5/Database/Weekly-Active-Users-using-Windowing-function/m-p/81866#M33261</link>
      <description>&lt;P&gt;The flaws of your statement is when you have missing days for an UID, the ROWS clause inside the window function is just counting number of rows backward : if you have a connection every 5 days, ROWS 7 PRECEDING will go up to 35 days of history.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In Ansi SQL you could use the RANGE operator inside your window function instead of ROWS... But it's not yet implemented inside TD.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You should generate a row for every day / users, so you can use ROWS phrase&amp;nbsp; :&lt;/P&gt;&lt;PRE&gt;with cte_all_data (start_dt, uid) as
(
    select cal.start_dt
         , usr.uid
      from ica.ica_calendar_ref                       as cal
cross join (select uid from &amp;lt;tablename&amp;gt; group by uid) as usr
 left join &amp;lt;tablename&amp;gt;                                as tab  on tab.rptg_dt = cal.start_dt
                                                             and tab.uid     = usr.uid
   qualify max(tab.uid) over(partition by usr.uid order by cal.start_dt rows 7 preceding) is not null
)
  select start_dt
       , count(uid)
    from cte_all_data
group by start_dt
order by start_dt;&lt;/PRE&gt;&lt;P&gt;But I don't think it would be faster than your first solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jun 2018 14:00:59 GMT</pubDate>
      <guid>https://community.teradata.com/t5/Database/Weekly-Active-Users-using-Windowing-function/m-p/81866#M33261</guid>
      <dc:creator>Waldar</dc:creator>
      <dc:date>2018-06-25T14:00:59Z</dc:date>
    </item>
    <item>
      <title>Re: Find last match in a column return to value in the next row</title>
      <link>https://community.teradata.com/t5/Database/Find-last-match-in-a-column-return-to-value-in-the-next-row/m-p/81865#M33260</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;Qualify min(Event) over(rows between 1 preceding AND 1 preceding) = 44&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Very neat, it lacks a bit of semantics for OP :&lt;/P&gt;&lt;PRE&gt;min(Event) over(partition by Id order by Col_time rows between 1 preceding and 1 preceding) = 44&lt;/PRE&gt;&lt;P&gt;&lt;LI-USER uid="714317"&gt;&lt;/LI-USER&gt;, please not that in 16.x you can use the LAG function :&lt;/P&gt;&lt;PRE&gt;lag(Event) over(partition by Id order by Col_time asc) = 44&lt;/PRE&gt;&lt;P&gt;Also from your dataset, you have to specify some rules for multiples candidates : you have several rows with Event 44 at same time per Id.&lt;/P&gt;&lt;P&gt;Keep in mind that TIME is a reserved word, that you shouldn't use as a column name inside your database. I guess it's just for the example here.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jun 2018 13:29:10 GMT</pubDate>
      <guid>https://community.teradata.com/t5/Database/Find-last-match-in-a-column-return-to-value-in-the-next-row/m-p/81865#M33260</guid>
      <dc:creator>Waldar</dc:creator>
      <dc:date>2018-06-25T13:29:10Z</dc:date>
    </item>
    <item>
      <title>Teradata views connection into Tableau Desktop</title>
      <link>https://community.teradata.com/t5/Tools/Teradata-views-connection-into-Tableau-Desktop/m-p/81864#M3742</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to connect via tableau desktop to several view databases set up in a teradata environment. The view structure architecture follows these general guidelines base tables --&amp;gt; view off of base tables 1 --&amp;gt; &lt;SPAN&gt;view off of base tables 2.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I will need to connect to view 1 and view 2 layers, but it doesn't seem the this is supported by Tableau. I'm posting here to see if anyone has had experience connecting to teradata views in tableau.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks!&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jun 2018 12:55:40 GMT</pubDate>
      <guid>https://community.teradata.com/t5/Tools/Teradata-views-connection-into-Tableau-Desktop/m-p/81864#M3742</guid>
      <dc:creator>mellowluca</dc:creator>
      <dc:date>2018-06-25T12:55:40Z</dc:date>
    </item>
    <item>
      <title>Weekly Active Users using Windowing function</title>
      <link>https://community.teradata.com/t5/Database/Weekly-Active-Users-using-Windowing-function/m-p/81863#M33259</link>
      <description>&lt;P&gt;I have rpt_date, user_id.&lt;/P&gt;&lt;P&gt;I am trying to find Weekly Active Users.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I get the right numbers without using windowing function:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;SELECT a.start_dt, COUNT(DISTINCT uid) AS wau FROM (SELECT start_dt FROM ica.ica_calendar_ref --teradata system calendar ) a, (SELECT uid, rptg_dt FROM &amp;lt;tablename&amp;gt; ) b WHERE rptg_dt BETWEEN start_dt - 6 AND start_dt GROUP BY 1 ORDER BY 1;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using this query to get the same output using Windowing function, but the numbers are not correct. THis is giving me DAU and not WAU.&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;SELECT RPTG_DT, COUNT(DISTINCT UID) AS WAU FROM (SELECT UID, RPTG_DT, CASE WHEN SUM(UID) OVER (PARTITION BY UID ORDER BY RPTG_DT ROWS 7 PRECEDING) &amp;gt;= 1 THEN 1 END AS ACTIVE_OR_NOT FROM ) A WHERE ACTIVE_OR_NOT = 1 GROUP BY 1 ORDER BY 1;&lt;/PRE&gt;&lt;P&gt;What am I doing wrong...&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jun 2018 08:29:07 GMT</pubDate>
      <guid>https://community.teradata.com/t5/Database/Weekly-Active-Users-using-Windowing-function/m-p/81863#M33259</guid>
      <dc:creator>ananyak</dc:creator>
      <dc:date>2018-06-25T08:29:07Z</dc:date>
    </item>
    <item>
      <title>Re: Predicted confidence of DenseSVMPredictor</title>
      <link>https://community.teradata.com/t5/Aster/Predicted-confidence-of-DenseSVMPredictor/m-p/81862#M520</link>
      <description>&lt;P&gt;Thanks for your reply. We still have some questions, hopefully you will be able to answer them as wel.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So&amp;nbsp;the&amp;nbsp;predict_confidence&amp;nbsp;is not done by Platt scaling ( p(y|X) = 1 / (1 + exp(A * f(X) + B)) ) as done in the aforementioned paper?&lt;BR /&gt;Is there a way to extract the internal prediction?&lt;BR /&gt;And is the internal prediction equal to the signed distance of a sample from the hyperplane?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jun 2018 07:21:39 GMT</pubDate>
      <guid>https://community.teradata.com/t5/Aster/Predicted-confidence-of-DenseSVMPredictor/m-p/81862#M520</guid>
      <dc:creator>berlindahermsen</dc:creator>
      <dc:date>2018-06-25T07:21:39Z</dc:date>
    </item>
    <item>
      <title>Re: Trimming specific fields</title>
      <link>https://community.teradata.com/t5/Analytics/Trimming-specific-fields/m-p/81861#M2424</link>
      <description>&lt;P&gt;Thank you very much, GJColeman&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jun 2018 04:36:51 GMT</pubDate>
      <guid>https://community.teradata.com/t5/Analytics/Trimming-specific-fields/m-p/81861#M2424</guid>
      <dc:creator>JackJack</dc:creator>
      <dc:date>2018-06-25T04:36:51Z</dc:date>
    </item>
    <item>
      <title>Re: Processing multiple files from S3 using Teradata TPT</title>
      <link>https://community.teradata.com/t5/Tools-Utilities/Processing-multiple-files-from-S3-using-Teradata-TPT/m-p/81858#M11243</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;Hi,&lt;BR /&gt;I have problem exporting Teradta data to multiples files on S3 using TPT.&lt;BR /&gt;My settings: varchar accessmoduleinitstr = 'S3Bucket=bucketname S3Prefix= prefixname/stores/ S3Object= store S3SinglePartFile=False'&lt;BR /&gt;and&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; APPLY TO OPERATOR(file_writer[3])&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;select * from OPERATOR(export_item[1]);&lt;BR /&gt;My tbuild has the -C option as well.&lt;BR /&gt;The display did say: Total files processed:3&lt;BR /&gt;But I only got one file (F00000) in the s3 "store" folder and the file size is 1/3 of the total file size if not split. Not sure where the other two files went.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 24 Jun 2018 02:45:37 GMT</pubDate>
      <guid>https://community.teradata.com/t5/Tools-Utilities/Processing-multiple-files-from-S3-using-Teradata-TPT/m-p/81858#M11243</guid>
      <dc:creator>herwin</dc:creator>
      <dc:date>2018-06-24T02:45:37Z</dc:date>
    </item>
  </channel>
</rss>

