hi,
please read this code
procedure proc(tname varchar2,colnom varchar2) is
cursor cur is select colnom from tname;
begin
...
end;
the compiler generate error;
procedure proc1(tname varchar2,colnom varchar2) is
type curseur is REF CURSOR;
cur curseur;
begin
open cur for select colnom from...
HI,
I build a link to other Oracle database and select data from table
now i want to connect to MS ACCESS DB with LINK ( create database link ):
can i build a link with a MS ACCESS DATA BASE VIA ODBC
please help me.
hi,
I have two Oracle Server ( A and B )
I create table test in B.
I logged to A;
I create database link to B.
create databse link link_127 connect to system identified by manager using 'bibl';
(bibl is in tnsnames.ora )
I try to select data from test ( select * from test@link_127 ) the system...
hi,
I have an Oracle data base (A) and other oracle db ( B)
I want to link A to B with:
create database link link_127 to system identified by manager using 'bib'( bib is in tnsnames.ora )
the link is created.
i have a table in B ( test).
I try this command( I am logged in A)
select * from...
Hi,
Please read this code :
declare
connection_id EXEC_SQL.CONNTYPE;
cursor_number EXEC_SQL.CURSTYPE;
sql_str VARCHAR2(256);
nIgnore PLS_INTEGER;
n number;
ligne types.tab; -- table PL/SQL pour stocker le contenu d'une ligne
begin
connection_id :=...
declare
connection_id EXEC_SQL.CONNTYPE;
cursor_number EXEC_SQL.CURSTYPE;
sql_str VARCHAR2(256);
nIgnore PLS_INTEGER;
n number;
ligne types.tab; -- table PL/SQL pour stocker le contenu d'une ligne
begin
connection_id := EXEC_SQL.OPEN_CONNECTION('system/manager@odbc:testgct')...
Hi,
Can i insert a tuple in a table like this ligne of code:
insert into test(1,5,6) values (12,'yassine','mannai');
in the place of this :
insert into test(id,prenom,nom) values (12,'yassine','mannai');
thanks
hi,
I want to extract data from a n MS ACCESS table (test )
I write this code but the system generate error ORA-01403
///////////////////////
declare
type tab is TABLE of varchar2(256) index by binary_integer;
t tab;
i number;
j number;
connection_id EXEC_SQL.CONNTYPE;
cursor_number...
Hello,
I have MS ACCESS DB ( 1 table : employe ).
I attach a table ( emp ) from Oracle DataBase,
I want to insert data to "emp" from "employe"
can I write a trigger ( the same of Oracle trigger )
( when user insert data to "employe", automatically...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.