Synchronizing Oracle with Interbase

Hello Forum,
does anyone made any expieriences with synchronization of Oracle and Interbase databases? How does it work? Are there any tools for synchronizing? Are there any problems?
We want to use Interbase as a remote small footprint database (requirements: deployable on CD-ROM, M$ Windows envrionment, easy instalation without administrator rights, interaction with an delphi-application) and synchronize it than with a centrally located Oracle database.
All in all: is it feasible to do that with Interbase?
Thank you & kind regards,
Katharina Fuhr

user533361 wrote:
The Oracle With can't be used with Update ? The query below can't be compiled, I don't know why.
Thanks.
WITH
tmp_table AS
SELECT
pno
FROM
odetails,
parts
WHERE
odetails.pno = parts.pno
AND
odetails.qty >= 3
UPDATE
parts
SET
qoh = 3 * qoh
WHERE
pno in (select tmp_table.pno from tmp_table)
Hi,
The syntax for subquery factoring is as follows.
WITH subquery_name AS (
SELECT ...
, another_subquery_name AS (
SELECT ...
SELECT ...
FROM subquery_name sq1
, another_subquery_name sq2
WHERE sq1... = sq2...
With other words, the comiler will protest when he find update instead select
HR: XE > with
2 tmp as
3 (select col1,col2
4 from test)
5 update
6 test
7 set
8 col2=33
9 where
10 col2 in(select col4 from test);
update
ERROR at line 5:
ORA-00928: missing SELECT keyword
The following statement are valid for your update expression but WITH tmp_table AS expression is no more necessary (only if your expression in the where clause is very complex) :
UPDATE
    parts
SET
    qoh = 3 * qoh
WHERE
    pno in (WITH
              tmp_table AS
        SELECT
            pno
        FROM
            odetails,
            parts
        WHERE
            odetails.pno = parts.pno
            AND
            odetails.qty >= 3
    )Regards,
Ion

Similar Messages

  • Cloning and Synchronizing Oracle BI Requests and Dashboards Using CAF

    Hi,
    Cloning and Synchronizing Oracle BI Requests and Dashboards Using Content Accelerator Framework (CAF)
    what is this and in what scenario we use it? Is it useful for webcatalog/rpd migration from one env to other?
    Thanks
    Jay.

    Hi Jay,
    CAF is a utility that is used in migration of logical part of RPD and catalog objects from source to target environments. There are bunch of OBIEE bloggers already blogged about this a while ago. Check this article out, it should provide the information you are looking for: ( http://debaatobiee.wordpress.com/2009/11/26/playing-with-cafobiee-content-accelerator-framework/ ).
    FYI - If you are working in 11g environment, this tool (CAF) as far as I know is not supported. This tool was introduced by oracle few months before 11g came out which everyone thought would be big on revolutionizing the way migrations are done in OBIEE between environments.
    -Amith.

  • JDeveloper with Interbase

    Hi!
    I downloaded JDeveloper Release Candidate 2 for evaluating. I could not find out how to create a connection with other Driver than Oracle's. We have some projects with Oracle and others with Interbase. Could anyone help me? Is there a way?
    We were evaluating JDeveloper, but if there is not a way to do that, we will not be able to use it.
    Thanks,
    Vanessa

    Hi,
    There is a new HowTo document in the 9i forum describing tips for working with databases other than Oracle. The HowTo deals
    mainly with BC4J, but several of the issues are generic to JDeveloper.
    http://otn.oracle.com/products/jdev/howtos/bc4j/bc_foreign_db_intro.html
    I have not heard of anyone trying interbase. If it has a jdbc driver and supports SQL 92, it should be ok.
    The HowTo documents tips for using DB2, SQL Server and OLite.
    (BTW, Is there a reason that you are not evaluating the new 9i product?)
    Thanks,
    Pete

  • Translating SQL from MYSQL to ORACLE with more than one outer join.

    I will translate the following sqlquery from MYSQL to ORACLE:
    SELECT ticket.ticket_no,ticket.ticket_dato,ticket.ticket_subject,ticket.customer_id,customer_name,ticket.ticket_own_read, ticket.department_id, department.department_name, priority_name, tickstat_name, tickettype_name
    FROM customer, ticket left join department
    on ticket.department_id = department.department_id left join priority on ticket.priority_id = priority.priority_id
    left join ticketstatus on ticket.tickstat_id = ticketstatus.tickstat_id
    left join tickettype on ticket.tickettype_id = tickettype.tickettype_id
    where ticket.customer_id = customer.customer_id and customer.owner_id =
    #session.owner_id#
    I have tried in ORACLE with:
    SELECT ticket.ticket_no,ticket.ticket_dato,ticket.ticket_subject,ticket.customer_id,customer_name,ticket.ticket_own_read, ticket.department_id, department.department_name, priority_name, tickstat_name, tickettype_name
    FROM customer, ticket ,department, priority, ticketstatus, tickettype
    where
    ticket.department_id(+) = department.department_id and
    ticket.priority_id(+) = priority.priority_id and
    ticket.tickstat_id(+) = ticketstatus.tickstat_id and
    ticket.tickettype_id(+) = tickettype.tickettype_id and
    ticket.customer_id = customer.customer_id and customer.owner_id = #session.owner_id#
    I get an error:
    MERANT][ODBC Oracle driver][Oracle]ORA-01417: a table may be outer joined to at most one other table
    How do I translate the code to ORACLE?

    I think that your syntax is wrong. The (+) operator should be on the right hand table column, not the left hand table column if you want all rows on the left hand table column. If this syntax is really what you want, you can create underlying views for each join condiction.

  • Transfer Of Data from Sap to Oracle with the help of Enterprise Services.

    Hello,
    We want to transfer data from Sap to Oracle using standard Enterprise Services.Some fields were not available in the existing standard Enterprise Services,so we have enhanced the existing Services by writing code inside BADI available with Enterprise Services.Rest of the fields we have mapped with the existing fields available in standard Enterprise Services.But,the Oracle people want to fetch all data from Sap without entering any input as a mandatory field in the Enterprise Services.The existing standard Enterprise Services require to enter any field as mandatory and are not accepting the range in input for multiple records.e.g.All enterprise Services related to Sales Orders are displaying only one sales Order.We have searched all Enterprise Services for Sales Order(related to reading of data),but not able to find service which would display mutiple records without entering any input.ECC_SALESORDER009QR is the only service which is displaying multiple records without entering any input,but the required fields are not available in this service.So,kindly suggest what we need to do further.
    1.Should we go for customization of services completely,so that it would fulfil our requirement.
    2.Are there  standard Enterprise Services exists which would we give us data in range(all records).
    If they exists,please specify the names of Services for reading Purchase Order,Production Order,BOM etc.
    Thanks & Regards,
    Divya.

    Hi Vaibhav,
    Let me tell you the objective in detail.
    Objective.
    To develop a package solution which will work as a bridge between Oracle APS and SAP system so that customers using SAP will be able to use advantages of Oracle APS for their planning needs.
    This will consist of following major components:
    OA Templates is an Oracle utility to load data from any legacy system to Oracle APS using standard flat files.
    Oracle has developed an Application Integration Architecture which is a standard architecture used for integration of Oracle products with other systems.
    Enterprise services is an SAP utility to communicate with SAP.
    AIA canonicals are standard canonicals developed by Oracle where we have to map data fields from destination system (Oracle APS) and source system (SAP)
    Fusion middleware is being used to develop application interfaces following AIA standards.
    Tasks at stake:
    Mapping of Oracle APS fields and SAP Enterprise Service fields to AIA canonicals
    Technical work of developing middleware using Oracle Fusion
    From Sap side,we have to map fields which we have received from Oracle with the help of Enterprise Services,rest  consumption of these services is done by Oracle guys.So,suggest is there enterprise services available which would give us multiple records .
    Thanks & Regards,
    Divya.

  • Advantages of using Oracle with Unix over Windows server

    Hi there,
    I want some article/document which depicts the advantages of using Oracle with Unix (say HP-UX or Solaris backend). Actually the plan is to use some Data Warehousing applications using Cognos Poweplay, ReportNet and either Decision Stream of Cognos or Oracle Warehouse builder may be used as ETL tool. For Data mining applications we are planning to use SPSS Clementine. The Data volume will be substantial one. At present we are developing some prototype in Windows 2003 advanced environment. We are plaiing to use Risc server and RAID-5. Pl. advice some ideal architecture for us, as you know, it's typically a Govt. level application data (mostly archival data). The reports will be published using Report Net, Adhoc query etc, OLAP analysis will be done using Powerplay.
    Regards,
    Anupam Basu

    Hi there,
    I want some article/document which depicts the advantages of using Oracle with Unix (say HP-UX or Solaris backend). Actually the plan is to use some Data Warehousing applications using Cognos Poweplay, ReportNet and either Decision Stream of Cognos or Oracle Warehouse builder may be used as ETL tool. For Data mining applications we are planning to use SPSS Clementine. The Data volume will be substantial one. At present we are developing some prototype in Windows 2003 advanced environment. We are plaiing to use Risc server and RAID-5. Pl. advice some ideal architecture for us, as you know, it's typically a Govt. level application data (mostly archival data). The reports will be published using Report Net, Adhoc query etc, OLAP analysis will be done using Powerplay.
    Regards,
    Anupam Basu

  • Need advice, sql server with asp or oracle with asp

    hi !
    i have been given a task to improve the design of a sql server database with more than 1 million records, front end is asp (code has to be written also, keeping user interface same). I would like to use oracle with asp, is it practical or should i go for sql server. i need your advice.
    thanks in advance
    lavinder

    Depends on your definition of "practical".
    My guess is that most of the work will be porting your back-end code from SQL*Server to Oracle. The Migration Workbench can help here, but there are often things that you do in SQL*Server code that you really don't want to do in Oracle code (i.e. frequent commits).
    There is a good chance that you'd be able to improve the scalability of the application faster by fixing the problems that exist in the SQL*Server implementation. I think Oracle is inherently a much more scalable platform than SQL*Server, however, so I'm not trying to dissuade you from moving. It really depends on the end state you need to achieve and the amount of time & effort you're willing to put forward.
    Justin

  • Patch and administer oracle with different user id other than "oracle" user

    Hi Friends,
    This is question about oracle on Windows. Can we patch and administer all parts of oracle with differnt user id than one from which we installed?
    Example, If we install an oracle from user "oracle" than can we install patches or other admin work including backup and everything with user "a" ,"b"?
    Doen't it need to be a same user for pacthing and other critical administration work?
    help me understanding this with an example.
    Thanks in advance.

    Its always good to patch Oracle with the same user from which you installed the user. Oracle sets certain permissions or modifies the DCOM settings when you install the Oracle from a certain user which would not be same for other user. So It is always recommended to use the same user for patching.

  • Synchronous call with RemoteObject

    Is it possible to make a synchronous call with a
    RemoteObject? If so how?
    My application has to wait for the result. I cannot use
    result handler.
    Pls help friends.

    Not possible.
    You must use a result handler.
    Resistance is futile.
    Tracy

  • Problems with synchronizing iCal with iCloud accounts on my Mac Pro

    I have problems with synchronizing iCal with iCloud calender accounts on my Mac Pro runnning OS 10.6.8
    (error message "HTTP/1.1 403 Forbidden" på handlingen CalDAVAccountRefreshQueueableOperation.)
    It works fine on iOS devices.

    Due to lacking hardware driver compatibility i our graphic production environment we can't upgrade to Lion.
    Does that mean that it after the closing of MobileMe is impossible to synchronize calenders to Mac's running OS 10.6.8 ??

  • How to access oracle with any unix user (like root)?

    I installed Oracle 10g on Redhat Enterprise Linux 3.
    I created one oracle user, and installed oracle in oracle users home directory. In oracle user I can access oracle very well. But I can not use oracle with other unix users like root. What kind of permissions I need to set to do so?

    You should never try to connect to Oracle as root, but if you want to connect as any other OS user, you will need to run ChangePerm.sh in $ORACLE_HOME/install in order to do this. It may not be present until you upgrade above the base release (like 10.2.0.3).
    Can not Logon To SQL*Plus as non-Oracle User: Libclntsh.So.10.1: Permission Denied
    http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=420083.1

  • Oracle with clause

    The Oracle With can't be used with Update ? The query below can't be compiled, I don't know why.
    Thanks.
    WITH
        tmp_table AS
            SELECT
                pno
            FROM
                odetails,
                parts
            WHERE
                odetails.pno = parts.pno
                AND
                odetails.qty >= 3
    UPDATE
        parts
    SET
        qoh = 3 * qoh
    WHERE
        pno in (select tmp_table.pno from tmp_table)

    user533361 wrote:
    The Oracle With can't be used with Update ? The query below can't be compiled, I don't know why.
    Thanks.
    WITH
    tmp_table AS
    SELECT
    pno
    FROM
    odetails,
    parts
    WHERE
    odetails.pno = parts.pno
    AND
    odetails.qty >= 3
    UPDATE
    parts
    SET
    qoh = 3 * qoh
    WHERE
    pno in (select tmp_table.pno from tmp_table)
    Hi,
    The syntax for subquery factoring is as follows.
    WITH subquery_name AS (
    SELECT ...
    , another_subquery_name AS (
    SELECT ...
    SELECT ...
    FROM subquery_name sq1
    , another_subquery_name sq2
    WHERE sq1... = sq2...
    With other words, the comiler will protest when he find update instead select
    HR: XE > with
    2 tmp as
    3 (select col1,col2
    4 from test)
    5 update
    6 test
    7 set
    8 col2=33
    9 where
    10 col2 in(select col4 from test);
    update
    ERROR at line 5:
    ORA-00928: missing SELECT keyword
    The following statement are valid for your update expression but WITH tmp_table AS expression is no more necessary (only if your expression in the where clause is very complex) :
    UPDATE
        parts
    SET
        qoh = 3 * qoh
    WHERE
        pno in (WITH
                  tmp_table AS
            SELECT
                pno
            FROM
                odetails,
                parts
            WHERE
                odetails.pno = parts.pno
                AND
                odetails.qty >= 3
        )Regards,
    Ion

  • Write Access to Oracle with ODBC?

    Hi,
    sorry this maybe a stupid question. Can i write data into Oracle with an ODBC driver?
    Thanks
    Marco

    Sure.
    Justin

  • Oracle with SSL

    Hello,
    I'm trying to set up a testing environment to use Oracle with SSL. I would like to connect to the database using SSL (local naming with SSL), and create a globally identified user.
    I'm a beginner in this matter, so I am looking for some clues from more experienced people.
    I have 10.2 Enterprise Edition database running on Linux.
    I created a wallet in which I want to keep certificates. But for obvious reasons if I create a certificate, I can't register it in CA. Is Oracle offering any certificates for testing purposes? if yes, where could I find any?
    Thanks in advance,
    Aliq

    Hello, again.
    I think I did what was to do using both German article and documentation and in the end:
    I can connect on a server (Linux) to the instance
    I can't connect to the instance from client(WinXP),
    after sqlplus system/****@sorcl I get an error:
    ORA-28860: Fatal SSL error
    sqlnet.log says:
    Fatal NI connect error 28860, connecting to:
    (DESCRIPTION=(ADDRESS=(PROTOCOL=TCPS)(HOST=192.168.122.60)(PORT=1562))(CONNECT_DATA=(SERVICE_NAME=orcl)(CID=(PROGRAM=C:\oracle\product\10.2.0\db_1\bin\sqlplus.exe)(HOST=myhost)(USER=aliq))))
    Tns error struct:
    ns main err code: 12560
    TNS-12560: TNS:protocol adapter error
    ns secondary err code: 0
    nt main err code: 28860
    TNS-28860: Message 28860 not found; product=NETWORK; facility=TNS
    Oracle error 1: 28860
    ORA-28860: Fatal SSL error
    nt secondary err code: 542
    nt OS err code: 0
    Any help, please?
    Aliq

  • Oracle with Symantec VCS

    Hello,
    Has anyone installed and configured Oracle with Veritas Cluster Server? Could you please share the knowledge or point me to the right documentation?
    thanks,

    Thanks. I only need configuration info for Oracle with Veritas Cluster Server. I don't need the backup portion.
    thanks,

Maybe you are looking for

  • Connecting PC with SUN using RS232 cable

    I am trying to connect an RS232 cable from a PC com1 to SUN interface A. I started a getty on the SUN: getty term/a 9600 And brought up Tera Term Pro on the PC and even tried Hyper Terminal. I have tried to set com1 to various settings 8 none 1 none,

  • OPEN CALL: Forge Driver Project

    Hi, don't know if you did know but there is a driver project on forge which hosts a lot of drivers for the older imaging environements. It was started by me but with the implementation of the newer kernels it got put on the backburner. As Forge will

  • Status profile change

    Hi , On  our solution manager system (which had open tickets) we had to create a new status profile. Upon creating same we assigned this new profile to the relevant transaction type. Now we notice in our system that this new profile gets attached on

  • Phone adds + to some numbers in contact list

    phone adds a + to all numbers from my contact list that start with 571, making them international calls and prohibitive. When I enter the number in directly I can call, but not if a bring it up from the contact list Solved! Go to Solution.

  • Missing Sync or missing out

    Hi Guys and Girls, I have just been given a HTC smartphone for work, sadly it's a windows 6.1 and syncs with my PC. Ideally I would like to sync my mac to it too. (me.com account works on it) I would therefore would like have work stuff in the window