Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
31 views

Well I have 2 distinct Oracle 12c databases, lets name them db1 and db2 I have a link from db1 to db2 (DBL_DB2), also grants for execution of pkg2 which contains procedure 2, which we call proc2 (in ...
Ali Aasal's user avatar
0 votes
2 answers
190 views

I took the SQL down to the very very bare basics and it still fails on the Insert statement. ORA-22992: cannot use LOB locators selected from remote tables -- CREATED A TEMP TABLE DROP TABLE "ABC&...
B-Rent's user avatar
  • 3
0 votes
0 answers
71 views

I am trying to run a DDL statement, from an Oracle database on a Postgres database, through the procedure DBMS_UTILITY.EXEC_DDL_STATEMENT like this: begin dbms_utility.exec_ddl_statement@DB_LINK( '...
Diogo dos Santos's user avatar
0 votes
1 answer
483 views

I am currently working on creating a database link to query data from an on-premises Oracle database. Although I have a working connection string, I don't have access to the server itself. When I ...
Jean Simas's user avatar
0 votes
0 answers
50 views

I'm trying to insert data from DB Oracle (Sql Developer) to SQL Server through dblink oracle, but when I run the code, I get this error message: Report error - ORA-06550: riga 16, colonna 64: PL/SQL: ...
Scripta14's user avatar
  • 473
0 votes
2 answers
728 views

I have created a table with generated identity column .script below CREATE TABLE "TABLESAMPLE" ( "DESCRIPTION" VARCHAR2(2 BYTE), "TID" NUMBER(5,0) GENERATED ALWAYS AS ...
coder11 b's user avatar
  • 199
0 votes
2 answers
264 views

DB-Server 1: CREATE TABLE foo (id NUMBER); INSERT INTO foo VALUES (1); COMMIT; DB-Server 2: CREATE DATABASE LINK foo_link... -- Points to Schema of DB-Server 1. CREATE MATERIALIZED VIEW mv_foo ...
Toru's user avatar
  • 925
0 votes
1 answer
1k views

I use an Oracle database, where I have a database-Link to a Microsoft SQL Server database. I need to access the comments for tables in the Microsoft SQL Server database from my Oracle database. Using ...
PercivalPersephi's user avatar
1 vote
1 answer
183 views

I have two oracle databases: A and B. On database A, I have a function which returns user defined type: create or replace type my_type as object ( id number, f2 varchar2(4000), f3 ...
JiboOne's user avatar
  • 1,558
0 votes
1 answer
155 views

How to daily import Google workspace data automatically to Big Query database? I'm new to Big Query and i can do it manually but i want to automate this process. Thanks.
mohammed zaid's user avatar
1 vote
4 answers
692 views

My Main objective is to write a PLSQL Procedure to create database links when host, port, service, username and password is given. There I need to block creation of database links to same database. ...
JEJC_JACALK's user avatar
0 votes
1 answer
461 views

I have following environment: EAR application on WebSphere 9, container managed transactions using XA datasource for Oracle 19c database (let's name it database "A"). The problem is that ...
Nikola's user avatar
  • 633
1 vote
0 answers
1k views

Background: 2 Database hosts(with users): DB1(UserA), DB2(UserA, UserB) A database link from DB1, UserA, created and works fine with the following SQL CREATE DATABASE LINK "DB_LINK" USING ...
Edison Lo's user avatar
  • 476
1 vote
1 answer
559 views

I have a question. I have a table on database 1 called Distribution_id which will hold no more than 2000 records at a time, I have a materialized view called Mv_Distribution_id which is a copy ...
Shaun Kinnair's user avatar
0 votes
1 answer
149 views

I'm looking for a simple way to communicate between two databases, there currently exists a database link between both database. I want to process a job on database 1 for a batch of records (batch ...
Shaun Kinnair's user avatar
1 vote
0 answers
1k views

I'm having performance issues executing the following query (Q1): select z_out.*, a_out.id from orders a_out, test z_out where a_out.id=z_out.id and a_out.created>trunc(sysdate) and rownum&...
zyky2000's user avatar
0 votes
0 answers
43 views

I have a problem with a procedure that I will use to populate a table in the data warehouse. I'll try to exemplify. I have three types defined as follows: create or replace type room_t as object( ...
Paolopast's user avatar
  • 207
1 vote
0 answers
789 views

I have an external application that uses a MS Access database to store its data. I do not want to touch anything here, because the application works very good for me. I have now created a own ...
Aposchi8's user avatar
0 votes
1 answer
1k views

I need to query data from SQL Server in Oracle using an ODBC database link. I have created the necessary configuration in Oracle to allow me to access the SQL Server database and query the data. When ...
der_roedie's user avatar
0 votes
1 answer
2k views

I need to query data from one oracle database table and insert into another table in a different database, In the sense assume there are two databases called A and B. A has a_table and B has b_table. ...
Ishara Kularatna's user avatar
0 votes
1 answer
181 views

What would be faster to migrate data from an old Oracle DB server to a new server, using a database link, or create a shared directory via NFS between old and new server to move data?
Fuad Nour Eddin Damra's user avatar
0 votes
1 answer
490 views

we have 2 server : 1-sqlserver 2012 on windows 2012 2-oracle 11g on linux we want to show information from table1 in sql server on oracle database and created database link between them when i ...
Morteza Zahedi's user avatar
5 votes
1 answer
55k views

In an Oracle database there's a big PL/SQL procedure being executed periodically that copies data from one DB to another one through a database link and it is failing after some hours with the ...
detoro84's user avatar
  • 313
0 votes
1 answer
282 views

I am trying to insert data from Oracle Database to PostgreSQL. In Oracle Database, It was success with standard statement: insert into "schema"."table"@dblink values (2, 'test'); But when I added ...
kuroshaker's user avatar
0 votes
1 answer
2k views

DatabaseA - TableA - FieldA VARCHAR2 DatabaseB - TableB - FieldB NUMBER [dblink created] SELECT * FROM TableB@dblink b INNER JOIN TableA a ON b.FieldB = a.FieldA There are 2 complications. 1. ...
wervdon's user avatar
  • 557