<?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>topic Re: Functional Dependency Analysis in Data Quality</title>
    <link>https://community.qlik.com/t5/Data-Quality/Functional-Dependency-Analysis/m-p/2260593#M1548</link>
    <description>Hi bluepile,&lt;BR /&gt;could you have a look at the error log, please?&lt;BR /&gt;&lt;A href="http://talendforge.org/wiki/doku.php?id=bugtracker#attach_the_error_log_to_the_bugtracker" rel="nofollow noopener noreferrer"&gt;http://talendforge.org/wiki/doku.php?id=bugtracker#attach_the_error_log_to_the_bugtracker&lt;/A&gt;</description>
    <pubDate>Mon, 01 Mar 2010 08:57:24 GMT</pubDate>
    <dc:creator>Sebastiao_Qlik</dc:creator>
    <dc:date>2010-03-01T08:57:24Z</dc:date>
    <item>
      <title>Functional Dependency Analysis</title>
      <link>https://community.qlik.com/t5/Data-Quality/Functional-Dependency-Analysis/m-p/2260592#M1547</link>
      <description>&lt;P&gt;I'm trying to compare 2 columns in a table containing customer information: Zip Code and City. First example you learn in training... &lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MACn.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/154443iC5B8CACEF3D12C6A/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MACn.png" alt="0683p000009MACn.png" /&gt;&lt;/span&gt;&lt;BR /&gt;In the "Left Columns" I choose Zip Code and City, in the "Right Columns" I have chosen City and Zip Code... from the same table. No data filter. (Using MS SQL Server as a database)&lt;BR /&gt;I get an error when trying to Analyse: "Query not executed for indicator: 'Functional Dependency' SQL query: select count(*) as nb, count(distinct a) as nbdistinct from (select distinct postalcity as a, postalcode as b from customer_tb c) t"&lt;BR /&gt;The query works fine for me when executed directly in db, so what's wrong in Talend?&lt;BR /&gt;Any ideas?&lt;BR /&gt;/G&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 13:31:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Data-Quality/Functional-Dependency-Analysis/m-p/2260592#M1547</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T13:31:53Z</dc:date>
    </item>
    <item>
      <title>Re: Functional Dependency Analysis</title>
      <link>https://community.qlik.com/t5/Data-Quality/Functional-Dependency-Analysis/m-p/2260593#M1548</link>
      <description>Hi bluepile,&lt;BR /&gt;could you have a look at the error log, please?&lt;BR /&gt;&lt;A href="http://talendforge.org/wiki/doku.php?id=bugtracker#attach_the_error_log_to_the_bugtracker" rel="nofollow noopener noreferrer"&gt;http://talendforge.org/wiki/doku.php?id=bugtracker#attach_the_error_log_to_the_bugtracker&lt;/A&gt;</description>
      <pubDate>Mon, 01 Mar 2010 08:57:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Data-Quality/Functional-Dependency-Analysis/m-p/2260593#M1548</guid>
      <dc:creator>Sebastiao_Qlik</dc:creator>
      <dc:date>2010-03-01T08:57:24Z</dc:date>
    </item>
    <item>
      <title>Re: Functional Dependency Analysis</title>
      <link>https://community.qlik.com/t5/Data-Quality/Functional-Dependency-Analysis/m-p/2260594#M1549</link>
      <description>Ah yes! Looking at the error log told me a few things... Thanks for that! I probably hadn't setup the user account and database connection 100% correct since Talend complained about not finding "dbo" in sysdatabases and thus didn't find the table, etc. I corrected the setup so the user has the correct user rights in the right database. Now when I execute I get another error: &lt;BR /&gt;My table: TBL_Customer&lt;BR /&gt;My Columns (varchar 20 and 27): COL_PostalCode, COL_PostalCity&lt;BR /&gt;2010-03-01 10:37:21,007 INFO  org.talend.dq.analysis.ColumnAnalysisSqlExecutor  - Executing query: SELECT COUNT(*) AS NB, COUNT(DISTINCT A) AS NBDISTINCT FROM (SELECT DISTINCT "COL_PostalCode" AS A , "COL_PostalCity" AS B FROM  "TBL_Customer" C  ) T&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;2010-03-01 10:37:21,085 ERROR org.talend.dq.analysis.AnalysisExecutor  - java.lang.ClassCastException: java.lang.Integer cannot be cast to java.lang.Long&lt;BR /&gt;java.lang.ClassCastException: java.lang.Integer cannot be cast to java.lang.Long&lt;BR /&gt;at org.talend.dataquality.indicators.columnset.impl.ColumnDependencyIndicatorImpl.getNB(Unknown Source)&lt;BR /&gt;at org.talend.dataquality.indicators.columnset.impl.ColumnDependencyIndicatorImpl.storeSqlResults(Unknown Source)&lt;BR /&gt;at org.talend.dq.analysis.FunctionalDependencyExecutor.executeQuery(Unknown Source)&lt;BR /&gt;at org.talend.dq.analysis.FunctionalDependencyExecutor.runAnalysis(Unknown Source)&lt;BR /&gt;at org.talend.dq.analysis.AnalysisExecutor.execute(Unknown Source)&lt;BR /&gt;at org.talend.dq.analysis.AnalysisExecutorSelector.executeAnalysis(Unknown Source)&lt;BR /&gt;at org.talend.dataprofiler.core.ui.action.actions.AnalysisExecutorThread.run(Unknown Source)&lt;BR /&gt;at java.lang.Thread.run(Unknown Source)&lt;/FONT&gt;&lt;BR /&gt;2010-03-01 10:37:21,117 INFO  org.talend.dataprofiler.core.ui.action.actions.RunAnalysisAction  - Analysis "MY_TABLE_FunctionalDependency" execution code: KO: null. Duration: 0.12 s.&lt;BR /&gt;When I run the query in SQL the answer is 2 numerics:&lt;BR /&gt;NB          NBDISTINCT  &lt;BR /&gt;----------- ----------- &lt;BR /&gt;2934        2662&lt;BR /&gt;Any ideas about why the application needs to convert Integer to long?&lt;BR /&gt;/G</description>
      <pubDate>Mon, 01 Mar 2010 09:53:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Data-Quality/Functional-Dependency-Analysis/m-p/2260594#M1549</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-03-01T09:53:10Z</dc:date>
    </item>
    <item>
      <title>Re: Functional Dependency Analysis</title>
      <link>https://community.qlik.com/t5/Data-Quality/Functional-Dependency-Analysis/m-p/2260595#M1550</link>
      <description>thanks for your feedback. &lt;BR /&gt;This now looks as a bug. Could you report it in our bugtracker, please? &lt;BR /&gt;We'll do our best to fix it quickly.</description>
      <pubDate>Mon, 01 Mar 2010 10:30:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Data-Quality/Functional-Dependency-Analysis/m-p/2260595#M1550</guid>
      <dc:creator>Sebastiao_Qlik</dc:creator>
      <dc:date>2010-03-01T10:30:29Z</dc:date>
    </item>
    <item>
      <title>Re: Functional Dependency Analysis</title>
      <link>https://community.qlik.com/t5/Data-Quality/Functional-Dependency-Analysis/m-p/2260596#M1551</link>
      <description>Ok, will do. 
&lt;BR /&gt;I now did a "simple" test against both the Northwind and pubs databases which are shipped with MS SQL Server. I wanted to test zip and city columns with a functional dependency analysis on a database/table that I didn't create myself 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MACn.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/154443iC5B8CACEF3D12C6A/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MACn.png" alt="0683p000009MACn.png" /&gt;&lt;/span&gt; I got some other error now and I just want to post it so that maybe somebody can point out if I'm doing something obviously wrong. 
&lt;BR /&gt;1. Created a connection to my local ms sql server 2000 using sa account and db type = ms sql server. (Additional JDBC params: zeroDateTimeBehavior=convertToNull&amp;amp;noDatetimeStringSync=true&amp;amp;characterEncoding=UTF-8 and Url: jdbc:jtds:sqlserver://localhost:1433;DatabaseName=;zeroDateTimeBehavior=convertToNull&amp;amp;noDatetimeStringSync=true&amp;amp;characterEncoding=UTF-8) 
&lt;BR /&gt;2. Create Table Functional Dependency Analysis using above created connection on database Northwind and table Customers (same test done with pubs database, table stores (columns zip city)) 
&lt;BR /&gt;3. Choose City and PostalCode as "Left Columns" and PostalCode and City as "Right Columns" 
&lt;BR /&gt;4. Run the analysis 
&lt;BR /&gt; 
&lt;B&gt;Results in an error message:&lt;/B&gt; 
&lt;BR /&gt; 
&lt;FONT color="#FF0000"&gt;Query not executed for indicator: "Functional Dependency" SQL query: SELECT COUNT(*) AS NB, COUNT(DISTINCT A) AS NBDISTINCT FROM (SELECT DISTINCT "PostalCode" AS A , "City" AS B FROM "Customers" C ) T&lt;/FONT&gt; 
&lt;BR /&gt; 
&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;!ENTRY org.talend.libraries 1 0 2010-03-01 14:29:00.549&lt;BR /&gt;!MESSAGE 2010-03-01 14:29:00,549 INFO org.talend.dataprofiler.core.ui.editor.analysis.ColumnDependencyMasterDetailsPage - Success to save connection analysis:/PROJECT_CSC/TDQ_Data Profiling/Analyses/dGVzdA==20100301022753_0.1.ana&lt;BR /&gt;&lt;BR /&gt;!ENTRY org.talend.libraries 4 0 2010-03-01 14:29:09.659&lt;BR /&gt;!MESSAGE 2010-03-01 14:29:09,643 ERROR org.talend.dq.analysis.ColumnAnalysisSqlExecutor - &lt;FONT color="#FF0000"&gt;Problem when changing trying to set catalog "dbo" on connection. SQLException message: Could not locate entry in sysdatabases for database 'dbo'. No entry found with that name. Make sure that the name is entered correctly.&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;!ENTRY org.talend.libraries 1 0 2010-03-01 14:29:09.690&lt;BR /&gt;!MESSAGE 2010-03-01 14:29:09,659 INFO org.talend.dq.analysis.ColumnAnalysisSqlExecutor - Executing query: SELECT COUNT(*) AS NB, COUNT(DISTINCT A) AS NBDISTINCT FROM (SELECT DISTINCT "City" AS A , "PostalCode" AS B FROM "Customers" C ) T&lt;BR /&gt;&lt;BR /&gt;!ENTRY org.talend.libraries 4 0 2010-03-01 14:29:09.737&lt;BR /&gt;!MESSAGE 2010-03-01 14:29:09,721 ERROR org.talend.dq.analysis.FunctionalDependencyExecutor - &lt;FONT color="#FF0000"&gt;java.sql.SQLException: Invalid object name 'Customers'.&lt;/FONT&gt;&lt;BR /&gt;!STACK 0&lt;BR /&gt;java.sql.SQLException: Invalid object name 'Customers'.&lt;BR /&gt; at net.sourceforge.jtds.jdbc.SQLDiagnostic.addDiagnostic(SQLDiagnostic.java:365)&lt;BR /&gt; at net.sourceforge.jtds.jdbc.TdsCore.tdsErrorToken(TdsCore.java:2781)&lt;BR /&gt; at net.sourceforge.jtds.jdbc.TdsCore.nextToken(TdsCore.java:2224)&lt;BR /&gt; at net.sourceforge.jtds.jdbc.TdsCore.getMoreResults(TdsCore.java:628)&lt;BR /&gt; at net.sourceforge.jtds.jdbc.JtdsStatement.processResults(JtdsStatement.java:525)&lt;BR /&gt; at net.sourceforge.jtds.jdbc.JtdsStatement.executeSQL(JtdsStatement.java:487)&lt;BR /&gt; at net.sourceforge.jtds.jdbc.JtdsStatement.executeImpl(JtdsStatement.java:664)&lt;BR /&gt; at net.sourceforge.jtds.jdbc.JtdsStatement.execute(JtdsStatement.java:1114)&lt;BR /&gt; at org.talend.dq.analysis.ColumnAnalysisSqlExecutor.executeQuery(Unknown Source)&lt;BR /&gt; at org.talend.dq.analysis.FunctionalDependencyExecutor.executeQuery(Unknown Source)&lt;BR /&gt; at org.talend.dq.analysis.FunctionalDependencyExecutor.runAnalysis(Unknown Source)&lt;BR /&gt; at org.talend.dq.analysis.AnalysisExecutor.execute(Unknown Source)&lt;BR /&gt; at org.talend.dq.analysis.AnalysisExecutorSelector.executeAnalysis(Unknown Source)&lt;BR /&gt; at org.talend.dataprofiler.core.ui.action.actions.AnalysisExecutorThread.run(Unknown Source)&lt;BR /&gt; at java.lang.Thread.run(Unknown Source)&lt;BR /&gt;!ENTRY org.talend.libraries 4 0 2010-03-01 14:29:09.831&lt;BR /&gt;!MESSAGE 2010-03-01 14:29:09,768 ERROR org.talend.dq.analysis.ColumnAnalysisSqlExecutor - Query not executed for indicator: "Functional Dependency" SQL query: SELECT COUNT(*) AS NB, COUNT(DISTINCT A) AS NBDISTINCT FROM (SELECT DISTINCT "City" AS A , "PostalCode" AS B FROM "Customers" C ) T&lt;BR /&gt;&lt;BR /&gt;!ENTRY org.talend.libraries 4 0 2010-03-01 14:29:09.940&lt;BR /&gt;!MESSAGE 2010-03-01 14:29:09,924 ERROR org.talend.dq.analysis.ColumnAnalysisSqlExecutor - Problem when changing trying to set catalog "dbo" on connection. SQLException message: Could not locate entry in sysdatabases for database 'dbo'. No entry found with that name. Make sure that the name is entered correctly.&lt;BR /&gt;&lt;BR /&gt;!ENTRY org.talend.libraries 1 0 2010-03-01 14:29:10.112&lt;BR /&gt;!MESSAGE 2010-03-01 14:29:09,956 INFO org.talend.dq.analysis.ColumnAnalysisSqlExecutor - Executing query: SELECT COUNT(*) AS NB, COUNT(DISTINCT A) AS NBDISTINCT FROM (SELECT DISTINCT "PostalCode" AS A , "City" AS B FROM "Customers" C ) T&lt;BR /&gt;&lt;BR /&gt;!ENTRY org.talend.libraries 4 0 2010-03-01 14:29:10.315&lt;BR /&gt;!MESSAGE 2010-03-01 14:29:10,143 ERROR org.talend.dq.analysis.FunctionalDependencyExecutor - java.sql.SQLException: Invalid object name 'Customers'.&lt;BR /&gt;!STACK 0&lt;BR /&gt;java.sql.SQLException: Invalid object name 'Customers'.&lt;BR /&gt; at net.sourceforge.jtds.jdbc.SQLDiagnostic.addDiagnostic(SQLDiagnostic.java:365)&lt;BR /&gt; at net.sourceforge.jtds.jdbc.TdsCore.tdsErrorToken(TdsCore.java:2781)&lt;BR /&gt; at net.sourceforge.jtds.jdbc.TdsCore.nextToken(TdsCore.java:2224)&lt;BR /&gt; at net.sourceforge.jtds.jdbc.TdsCore.getMoreResults(TdsCore.java:628)&lt;BR /&gt; at net.sourceforge.jtds.jdbc.JtdsStatement.processResults(JtdsStatement.java:525)&lt;BR /&gt; at net.sourceforge.jtds.jdbc.JtdsStatement.executeSQL(JtdsStatement.java:487)&lt;BR /&gt; at net.sourceforge.jtds.jdbc.JtdsStatement.executeImpl(JtdsStatement.java:664)&lt;BR /&gt; at net.sourceforge.jtds.jdbc.JtdsStatement.execute(JtdsStatement.java:1114)&lt;BR /&gt; at org.talend.dq.analysis.ColumnAnalysisSqlExecutor.executeQuery(Unknown Source)&lt;BR /&gt; at org.talend.dq.analysis.FunctionalDependencyExecutor.executeQuery(Unknown Source)&lt;BR /&gt; at org.talend.dq.analysis.FunctionalDependencyExecutor.runAnalysis(Unknown Source)&lt;BR /&gt; at org.talend.dq.analysis.AnalysisExecutor.execute(Unknown Source)&lt;BR /&gt; at org.talend.dq.analysis.AnalysisExecutorSelector.executeAnalysis(Unknown Source)&lt;BR /&gt; at org.talend.dataprofiler.core.ui.action.actions.AnalysisExecutorThread.run(Unknown Source)&lt;BR /&gt; at java.lang.Thread.run(Unknown Source)&lt;BR /&gt;!ENTRY org.talend.libraries 4 0 2010-03-01 14:29:10.487&lt;BR /&gt;!MESSAGE 2010-03-01 14:29:10,346 ERROR org.talend.dq.analysis.ColumnAnalysisSqlExecutor - Query not executed for indicator: "Functional Dependency" SQL query: SELECT COUNT(*) AS NB, COUNT(DISTINCT A) AS NBDISTINCT FROM (SELECT DISTINCT "PostalCode" AS A , "City" AS B FROM "Customers" C ) T&lt;BR /&gt;&lt;BR /&gt;!ENTRY org.talend.libraries 1 0 2010-03-01 14:29:10.502&lt;BR /&gt;!MESSAGE 2010-03-01 14:29:10,502 INFO org.talend.dataprofiler.core.ui.action.actions.RunAnalysisAction - Analysis "test" execution code: KO: Query not executed for indicator: "Functional Dependency" SQL query: SELECT COUNT(*) AS NB, COUNT(DISTINCT A) AS NBDISTINCT FROM (SELECT DISTINCT "PostalCode" AS A , "City" AS B FROM "Customers" C ) T. Duration: 0.88 s.&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Mon, 01 Mar 2010 13:47:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Data-Quality/Functional-Dependency-Analysis/m-p/2260596#M1551</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-03-01T13:47:47Z</dc:date>
    </item>
    <item>
      <title>Re: Functional Dependency Analysis</title>
      <link>https://community.qlik.com/t5/Data-Quality/Functional-Dependency-Analysis/m-p/2260597#M1552</link>
      <description>Update! 
&lt;BR /&gt;I was using TDQ version 3.2.2. I have now updated and I am using TOP version 3.2.3. And all my tests works, both using my own dbs and also microsofts. Sorry for wasting your time! 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MPcz.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/157233iD1A564EF62DE3BC2/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MPcz.png" alt="0683p000009MPcz.png" /&gt;&lt;/span&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MADq.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/146464i525272F95B61C2BD/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MADq.png" alt="0683p000009MADq.png" /&gt;&lt;/span&gt; (I must make sure to use the latest versions available and not be too quick to call for help 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MACn.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/154443iC5B8CACEF3D12C6A/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MACn.png" alt="0683p000009MACn.png" /&gt;&lt;/span&gt;) 
&lt;BR /&gt;/G</description>
      <pubDate>Mon, 01 Mar 2010 15:46:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Data-Quality/Functional-Dependency-Analysis/m-p/2260597#M1552</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-03-01T15:46:13Z</dc:date>
    </item>
    <item>
      <title>Re: Functional Dependency Analysis</title>
      <link>https://community.qlik.com/t5/Data-Quality/Functional-Dependency-Analysis/m-p/2260598#M1553</link>
      <description>great thanks!&lt;BR /&gt;I love such bugs that are already resolved &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;</description>
      <pubDate>Mon, 01 Mar 2010 16:24:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Data-Quality/Functional-Dependency-Analysis/m-p/2260598#M1553</guid>
      <dc:creator>Sebastiao_Qlik</dc:creator>
      <dc:date>2010-03-01T16:24:13Z</dc:date>
    </item>
    <item>
      <title>Re: Functional Dependency Analysis</title>
      <link>https://community.qlik.com/t5/Data-Quality/Functional-Dependency-Analysis/m-p/2260599#M1554</link>
      <description>&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;great thanks!&lt;BR /&gt;I love such bugs that are already resolved &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt;Will this bug also be solved in TDQ 3.2.2 (r33000)? I noticed that it has been fixed for TOS 3.2.3 ( 
&lt;A href="https://community.qlik.com/s/feed/0D53p00007vCqBHCA0" rel="nofollow noopener noreferrer"&gt;https://community.talend.com/t5/Archive/Error-with-Mapping-component/td-p/172646&lt;/A&gt;) but we are currently using team edition of TDQ 3.2.2 and as far as I know there is no later version of TDQ? 
&lt;BR /&gt;Rgds/G</description>
      <pubDate>Tue, 09 Mar 2010 12:37:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Data-Quality/Functional-Dependency-Analysis/m-p/2260599#M1554</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-03-09T12:37:48Z</dc:date>
    </item>
    <item>
      <title>Re: Functional Dependency Analysis</title>
      <link>https://community.qlik.com/t5/Data-Quality/Functional-Dependency-Analysis/m-p/2260600#M1555</link>
      <description>TDQ 3.2.3 is released and is the current latest version. Contact Talend in order to obtain the download link. 
&lt;BR /&gt;It is strongly advised to upgrade your TDQ version.</description>
      <pubDate>Tue, 09 Mar 2010 14:18:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Data-Quality/Functional-Dependency-Analysis/m-p/2260600#M1555</guid>
      <dc:creator>Sebastiao_Qlik</dc:creator>
      <dc:date>2010-03-09T14:18:13Z</dc:date>
    </item>
  </channel>
</rss>

