Warning: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"? in /mnt/web018/d2/82/51207682/htdocs/armbruster-it/joomla33/templates/stefans_blog_05/functions.php on line 182
... on a view. So let's go ahead:
1. We create a view which points to a table/view on the foreign database, using a database link:
create view test_view_dblink as
select * from some_table@external_oracle_database;
2 ...
... lng": 13.393611
}
]}
]}
Step 1: Create the Plugin
Plugins are managed within the Applicatin under the Shared Components. Here you can import any existing Plugin as well as c ...
... b where b.ID = a.ID
) AS BLOB_COLUMN
FROM LOCAL_TABLE a;
Solution 2: Pipelining Functions
CREATE TYPE object_row_type AS OBJECT (
MYID NUMBER,
MYCLOB CLOB ...
... a lock. Look at the following examples:
create or replace package body my_package is
[...]
function lockSemaphore(pi_lock_name in varchar2,
po_lock_result out number) ...
... l function which splits a string in it's components:
create or replace package itstar_toolbox is
type t_tab_strings is table of varchar2(1000);
[...]
function split_string(pi_string in varcha ...
... for the definition of the tables:
create table ex01_person_tb (
id number,
name varchar2(50)
);
insert into ex01_person_tb values (1, 'Roger Waters');
insert into ex01_person_tb values (2, 'Dav ...