Skip to content
This repository was archived by the owner on Mar 31, 2025. It is now read-only.
This repository was archived by the owner on Mar 31, 2025. It is now read-only.

Query on view via db link in oracle #54

@mkljakubowski

Description

@mkljakubowski

Querying on view through a db link returns a ORA-00942: table or view does not exist because of additional quotation marks.
Now query looks like:

select * from "link"."view_name";

but expected (working) version is:

select * from link.view_name;

Quick workaround is to create a proxy view as follows:

CREATE VIEW local_view AS SELECT * FROM link.view_name;

Tested on freeslick 3.1.1.1 with oracle 11.2.0.4.0

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions