<?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: [resolved] special characters in oracle column name in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/resolved-special-characters-in-oracle-column-name/m-p/2345819#M113294</link>
    <description>&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;Hi all&lt;BR /&gt;I have situation that there are special characters in more than 1 column in source file , i already handled for 1 column using &lt;B&gt;tReplace&lt;/B&gt;&amp;nbsp;component but in this component we need to take columns manually and &amp;nbsp;need to mention what to be replace with original one. this is very lengthy process if we got multiple columns with multiple special characters&amp;nbsp;&lt;BR /&gt;I want to handle multiple columns at a time.&lt;BR /&gt;&lt;/FONT&gt;&lt;/FONT&gt;
&lt;BR /&gt;
&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;can you please guide me regarding this....&lt;BR /&gt;waiting for reply&lt;/FONT&gt;&lt;/FONT&gt;</description>
    <pubDate>Wed, 20 Jan 2016 09:41:31 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-01-20T09:41:31Z</dc:date>
    <item>
      <title>[resolved] special characters in oracle column name</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-special-characters-in-oracle-column-name/m-p/2345815#M113290</link>
      <description>I am loading data into Oracle wherein one column has ? mark in column name if i try below solutions then it gives errors.
&lt;BR /&gt;component name: tOracleOuput
&lt;BR /&gt;solution one: in schema define db column with "column?_Name".&amp;nbsp;
&lt;BR /&gt;error: it will show tow compile time Syntax errors as it has&amp;nbsp;double quotes around column name.&amp;nbsp;
&lt;BR /&gt;Solution two : \"column?_Name\"
&lt;BR /&gt;Error: Invalid Identifier. column:1 _name
&lt;BR /&gt;Solution Three: \"\"
&lt;BR /&gt;Error: Identifier is too long
&lt;BR /&gt;Note. actual column name is differ than this. and below solution already tried.&amp;nbsp;
&lt;BR /&gt;
&lt;A href="https://jira.talendforge.org/browse/TDI-19603" target="_blank" rel="nofollow noopener noreferrer"&gt;https://jira.talendforge.org/browse/TDI-19603&lt;/A&gt;</description>
      <pubDate>Fri, 05 Sep 2014 10:29:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-special-characters-in-oracle-column-name/m-p/2345815#M113290</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-09-05T10:29:20Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] special characters in oracle column name</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-special-characters-in-oracle-column-name/m-p/2345816#M113291</link>
      <description>Thats creasy. I would not try to find a workaround for this creasy name. You can create a view wich does nothing but change the creasy name by an alias and you can write into this view instead of the original table. This way you can give the strange name a more reasonable name.
&lt;BR /&gt;
&lt;PRE&gt;create or replace view TABLE_HELPER_VIEW as&lt;BR /&gt;select column?_name as column_name from strange_table&lt;BR /&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 05 Sep 2014 10:37:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-special-characters-in-oracle-column-name/m-p/2345816#M113291</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-09-05T10:37:43Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] special characters in oracle column name</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-special-characters-in-oracle-column-name/m-p/2345817#M113292</link>
      <description>I am counting this solution, but that option is not available for this load, best way is to rename the column, but before that i would like to try every possible alternate to complete this task. &amp;nbsp;</description>
      <pubDate>Fri, 05 Sep 2014 11:00:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-special-characters-in-oracle-column-name/m-p/2345817#M113292</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-09-05T11:00:06Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] special characters in oracle column name</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-special-characters-in-oracle-column-name/m-p/2345818#M113293</link>
      <description>Renaming the column has much more impact (to thing you do not know yet) than simply create a view which solves you current problem and has no side effects.</description>
      <pubDate>Fri, 05 Sep 2014 11:22:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-special-characters-in-oracle-column-name/m-p/2345818#M113293</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-09-05T11:22:05Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] special characters in oracle column name</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-special-characters-in-oracle-column-name/m-p/2345819#M113294</link>
      <description>&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;Hi all&lt;BR /&gt;I have situation that there are special characters in more than 1 column in source file , i already handled for 1 column using &lt;B&gt;tReplace&lt;/B&gt;&amp;nbsp;component but in this component we need to take columns manually and &amp;nbsp;need to mention what to be replace with original one. this is very lengthy process if we got multiple columns with multiple special characters&amp;nbsp;&lt;BR /&gt;I want to handle multiple columns at a time.&lt;BR /&gt;&lt;/FONT&gt;&lt;/FONT&gt;
&lt;BR /&gt;
&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;can you please guide me regarding this....&lt;BR /&gt;waiting for reply&lt;/FONT&gt;&lt;/FONT&gt;</description>
      <pubDate>Wed, 20 Jan 2016 09:41:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-special-characters-in-oracle-column-name/m-p/2345819#M113294</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-01-20T09:41:31Z</dc:date>
    </item>
  </channel>
</rss>

