<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Efficy Overflow Q&amp;A - Recent questions tagged oracle</title>
<link>https://overflow.efficy.io/?qa=tag/oracle</link>
<description>Powered by Question2Answer</description>
<item>
<title>ORA-01653: unable to extend table ADMINOLVEA.ACTIONS by 1024 in tablespace EFFOLVEA</title>
<link>https://overflow.efficy.io/?qa=7012/01653-unable-extend-adminolvea-actions-tablespace-effolvea</link>
<description>&lt;p&gt;Hello,&lt;br&gt;
Trying to save an action in the application i'm faced with this error message &lt;br&gt;
&quot;ORA-01653: unable to extend table ADMINxxxx.ACTIONS by 1024 in tablespace EFFxxxx&quot; &lt;/p&gt;

&lt;p&gt;after researching a little i found &lt;a rel=&quot;nofollow&quot; href=&quot;https://stackoverflow.com/questions/27129376/ora-01653-unable-to-extend-table-by-in-tablespace-ora-06512&quot;&gt;&lt;strong&gt;This&lt;/strong&gt;&lt;/a&gt; thread requiring adding storage files to the tablespace, i was wondering if any one has a solution &lt;/p&gt;
</description>
<category>Database</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=7012/01653-unable-extend-adminolvea-actions-tablespace-effolvea</guid>
<pubDate>Wed, 20 Dec 2023 13:20:57 +0000</pubDate>
</item>
<item>
<title>Upgrade from Oracle to SQL Server</title>
<link>https://overflow.efficy.io/?qa=6754/upgrade-from-oracle-to-sql-server</link>
<description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;We have a customer that wants to upgrade his Efficy From Oracle database to SqlServer Database.&lt;/p&gt;

&lt;p&gt;Do we have a manual to do this kind of upgrade please? and how long should we estimate this?&lt;/p&gt;

&lt;p&gt;Thanks&lt;/p&gt;
</description>
<category>Database</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6754/upgrade-from-oracle-to-sql-server</guid>
<pubDate>Thu, 10 Nov 2022 10:21:24 +0000</pubDate>
</item>
<item>
<title>Read JSON column in Oracle</title>
<link>https://overflow.efficy.io/?qa=6649/read-json-column-in-oracle</link>
<description>&lt;p&gt;Hi,&lt;/p&gt;

&lt;p&gt;does anyone know how to read a JSON value in Oracle. I need this to represent the value based on the value set in the JSON. But until now I'm not been able to read the JSON object with Oracle.&lt;/p&gt;

&lt;p&gt;I hope someone can help me with this.&lt;/p&gt;

&lt;p&gt;Best regards,&lt;br&gt;
Jeroen&lt;/p&gt;
</description>
<category>Database</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6649/read-json-column-in-oracle</guid>
<pubDate>Thu, 04 Aug 2022 07:21:19 +0000</pubDate>
</item>
<item>
<title>Do 2 multivalues fields (such as OPPORTUNITIES.COMPETITORS) have at least one common value?</title>
<link>https://overflow.efficy.io/?qa=5283/multivalues-fields-opportunities-competitors-least-common</link>
<description>&lt;p&gt;I implemented an Oracle function :&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;create or replace FUNCTION CUSTOM_MULTIVALUES_MATCH(value_1 VARCHAR2, value_2 VARCHAR2)
RETURN NUMBER AS
value_exists NUMBER;
BEGIN
with value1(value1) as (
select regexp_substr(value_1,'[^;]+', 1, level) value1
from dual
connect by regexp_substr(value_1, '[^;]+', 1, level) is not null
)
,value2(value2) as (
select regexp_substr(value_2,'[^;]+', 1, level) value1
from dual
connect by regexp_substr(value_2, '[^;]+', 1, level) is not null
)
select (case when count(*) &amp;gt; 0 then 1 else 0 end) as &quot;Match&quot;
into value_exists
from value1 v1
inner join value2 v2 on v1.value1 = v2.value2;
return value_exists;
END;
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Here is the result of the function for some test values :&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;CUSTOM_MULTIVALUES_MATCH(';1;2;',';1;') = 1
CUSTOM_MULTIVALUES_MATCH(';1;',';1;2;') = 1
CUSTOM_MULTIVALUES_MATCH(';1;2;',';3;4;') = 0
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Here is a query returning the opportunities having at least one competitor in common with a given opportunity:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;select o1.K_OPPORTUNITY, o1.NAME, o1.R_COMPETITORS
from 
R_OPPORTUNITIES o1, 
OPPORTUNITIES o2
where 
o1.K_OPPORTUNITY != o2.K_OPPORTUNITY
and o2.K_OPPORTUNITY = 2549
and CUSTOM_MULTIVALUES_MATCH(o1.COMPETITORS, o2.COMPETITORS) = 1;
&lt;/code&gt;&lt;/pre&gt;
</description>
<category>Database</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=5283/multivalues-fields-opportunities-competitors-least-common</guid>
<pubDate>Fri, 31 Jan 2020 14:05:10 +0000</pubDate>
</item>
<item>
<title>Connect to oracle from Alias manager Efficy 11</title>
<link>https://overflow.efficy.io/?qa=3404/connect-to-oracle-from-alias-manager-efficy-11</link>
<description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;When trying to connect to oracle database (pdbTest on Dev server) i'm getting the following error, an idea please?&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://overflow.efficy.com/?qa=blob&amp;amp;qa_blobid=4701422656455139642&quot; alt=&quot;enter image description here&quot;&gt;&lt;/p&gt;

&lt;p&gt;Thank you in-advance for your help&lt;/p&gt;

&lt;p&gt;Best Regards.&lt;/p&gt;
</description>
<category>Errors</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3404/connect-to-oracle-from-alias-manager-efficy-11</guid>
<pubDate>Wed, 18 Jul 2018 14:41:15 +0000</pubDate>
</item>
<item>
<title>How to import PICTURE (BLOB) from an External Database into an Efficy PICTURE field ?</title>
<link>https://overflow.efficy.io/?qa=2717/import-picture-blob-external-database-efficy-picture-field</link>
<description>&lt;p&gt;Dear all,&lt;/p&gt;

&lt;p&gt;I have to import PICTURES into Efficy PICTURE fields from an External ORACLE Database into an Efficy Database by using a Datasync, but the following code is not working (No Error but the PICTURE field stay empty) : &lt;/p&gt;

&lt;pre&gt;&lt;code&gt;Database.UpdateCategory(EditHandle, 'PROP$BROCHURE', 'F_PIC' + indexPic, DataStore.AsString('PICR_DATA'));
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;PICR_DATA is an Oracle Blob&lt;/p&gt;
</description>
<category>Utilities</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=2717/import-picture-blob-external-database-efficy-picture-field</guid>
<pubDate>Tue, 03 Oct 2017 13:28:15 +0000</pubDate>
</item>
<item>
<title>Oracle password expire</title>
<link>https://overflow.efficy.io/?qa=1494/oracle-password-expire</link>
<description>&lt;p&gt;How to re-activate the password when he expire in ORACLE?&lt;/p&gt;

&lt;p&gt;Exemple 1 : What to do if you get an error message &quot;password expire&quot; in Oracle SQL developer when you try to connect.&lt;br&gt;
Exemple 2: Child DB Cmr complain that on the replication tool he get error message &quot;password expire&quot;.&lt;/p&gt;
</description>
<category>How to</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=1494/oracle-password-expire</guid>
<pubDate>Mon, 04 Apr 2016 09:19:29 +0000</pubDate>
</item>
<item>
<title>How to retrieve files that have just been deleted (Oracle)</title>
<link>https://overflow.efficy.io/?qa=1474/how-to-retrieve-files-that-have-just-been-deleted-oracle</link>
<description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;How to retrieve files that have just been deleted in Efficy on an Oracle DB?&lt;/p&gt;
</description>
<category>Database</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=1474/how-to-retrieve-files-that-have-just-been-deleted-oracle</guid>
<pubDate>Thu, 31 Mar 2016 08:06:38 +0000</pubDate>
</item>
<item>
<title>Oracle access rights / roles</title>
<link>https://overflow.efficy.io/?qa=1463/oracle-access-rights-roles</link>
<description>&lt;p&gt;Dear,&lt;/p&gt;

&lt;p&gt;Can you tell me what roles or access rights we need to be able to create a database in Oracle?&lt;br&gt;
'DBA' is not allowed.&lt;/p&gt;

&lt;p&gt;I also saw the role EFFICY_FULL is used. It only has system rights assigned to it.&lt;br&gt;
Is it needed or is it optional to create?&lt;/p&gt;

&lt;p&gt;gr&lt;br&gt;
Erwin&lt;/p&gt;
</description>
<category>Efficy Installation/Settings</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=1463/oracle-access-rights-roles</guid>
<pubDate>Tue, 29 Mar 2016 11:33:02 +0000</pubDate>
</item>
<item>
<title>sql FOR XML PATH('') equivalent in Oracle / for crystal report command</title>
<link>https://overflow.efficy.io/?qa=1054/sql-for-xml-path-equivalent-oracle-for-crystal-report-command</link>
<description>&lt;p&gt;Hi,&lt;br&gt;
I need to extract in a crystal report command, a comma separator list of contacts, based on link status, for contacts linked to an action.&lt;br&gt;
In sql server I can use a select...  FOR XML PATH('') for each status. What can be the equivalent with an Oracle database?&lt;/p&gt;

&lt;p&gt;Thanks and Regards&lt;br&gt;
Anne&lt;/p&gt;
</description>
<category>Reporting Solutions</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=1054/sql-for-xml-path-equivalent-oracle-for-crystal-report-command</guid>
<pubDate>Mon, 28 Dec 2015 14:56:07 +0000</pubDate>
</item>
</channel>
</rss>