MSTSQL: Oracle SQLDeveloper (V 1.5.4) from SQLServer

Hello
we try to migrate sqlserver to oracle, we obtain this error:Store procedure xyz has language id of "MSTSQL" so will not output for generation.
Some of you can help us?
Could you tell us which kind of error is it?
Is it possible to solve this error?
We use:
OracleSQLDeveloper version 1.5.4
SQLServer Express version 9.0.1399
Oracle Express
Thanks
Matteo

Matteo,
The translation process is first duplicating the SQL Server stored procedure code and then is trying to convert it to PL/SQL.
- When it succeeds, it replace the new code with the translated one and change the language to PLSQL.
- When it fails, it leaves the code in TSQL and and the language column to MSTSQL.
When you are generating the DDL script, this script will contain just the objects with language set to PLSQL and throw an error like the one below. This means the procedures that failed to translate will not be part of the script.
You have (at least) 2 options:
- generate the script with the translated objects and regenerate the remaining ones later. You can do this by using Translation Scratch Editor and identify the part in the procedure that is causing problems.
- identify the problematic part with Translation S E, either correct the issue in SQL Server, either comment the issue, then update the TSQL code in the "Captured Objects" pane. After you are doing this for all objects that fail to convert, you can reconvert the whole model and get the script. You'll have to deal on the Oracle side with commented part in case that you chosen to comment them.
Hope this help you,
Andrei

Similar Messages

  • Oracle Sqldeveloper

    I am using oracle sqldeveloper 1.0.0.15.57. Previously we were able to set up a breakpoint and step through a stored procedure inside a package.
    We made sure all the previliges are on and the debugging did really work.
    But after some time (no changes to the Database or to the setup configuration on my laptop), we are not able to step through the stored procedure in a package.
    This is the logs we get:
    Connecting to the database UAT_Staging.
    Executing PL/SQL: ALTER SESSION SET PLSQL_DEBUG=TRUE
    Executing PL/SQL: ALTER SESSION SET PLSQL_COMPILER_FLAGS=INTERPRETED
    Executing PL/SQL: CALL DBMS_DEBUG_JDWP.CONNECT_TCP( '10.3.18.51', '1346' )
    Debugger accepted connection from database on port 1346.
    Processing 56 classes that have already been prepared...
    Finished processing prepared classes.
    Process exited.
    Disconnecting from the database UAT_Staging.
    Debugger disconnected from database.
    We do get all the log statements indicating that the SP is running, but the control doesn't stop at the breakpoint, preventing us from debugging.
    Can someone help, as to why this is happening?
    Thanks
    karthik

    Have you tried the SQL Developer forum?
    SQL Developer
    Sascha

  • Oracle SQLDeveloper 4.0, script output, how to enabled

    Hello,
    I downloaded Oracle SQLDeveloper 4.0, to use it, and realized that when issuing DDL commands 'or DML' as:
    CREATE TABLE itg.test (vcol VARCHAR2 (40)) TABLESPACE tbs_itg_data,
    INSERT INTO test VALUES ('test1');
    INSERT INTO test VALUES ('test2');
    INSERT INTO test VALUES ('test3');
    is no longer displayed the output script, stating that the table was created and 3 were inserted tuples.
    Please, how can I enable this feature in Oracle SQLDeveloper 4.0, as this feature exists in version sqldeveloper-3.2.20.09.87.
    Grateful.
    Silvio Büttenbender

    Hi Silvio,
    CREATE TABLE itg.test (vcol VARCHAR2 (40)) TABLESPACE tbs_itg_data,
    INSERT INTO test VALUES ('test1');
    INSERT INTO test VALUES ('test2');
    INSERT INTO test VALUES ('test3');
    Your create statement is invalid (there appears to be a line missing after the comma) - please submit a full testcase
    Preferably do not have schema and tablespace names referenced (as mine will not match yours).
    Error starting at line : 1 in command -
    CREATE TABLE itg.test (vcol VARCHAR2 (40)) TABLESPACE tbs_itg_data,
    INSERT INTO test VALUES ('test1')
    Error at Command Line : 2 Column : 1
    Error report -
    SQL Error: ORA-00922: missing or invalid option
    00922. 00000 -  "missing or invalid option"
    *Cause:   
    *Action:
    Error starting at line : 3 in command -
    INSERT INTO test VALUES ('test2')
    Error at Command Line : 3 Column : 13
    Error report -
    SQL Error: ORA-00942: table or view does not exist
    00942. 00000 -  "table or view does not exist"
    *Cause:   
    *Action:
    Error starting at line : 4 in command -
    INSERT INTO test VALUES ('test3')
    Error at Command Line : 4 Column : 13
    Error report -
    SQL Error: ORA-00942: table or view does not exist
    00942. 00000 -  "table or view does not exist"
    *Cause:   
    *Action:
    CREATE TABLE mytest (vcol VARCHAR2 (40)) ;
    INSERT INTO mytest VALUES ('test1');
    INSERT INTO mytest VALUES ('test2');
    INSERT INTO mytest VALUES ('test3');
    From a quick test using code in development:
    (run script) gives:
    table MYTEST created.
    1 rows inserted.
    1 rows inserted.
    1 rows inserted.
    (run statement) gives:
    table MYTEST created.
    1 rows inserted.
    1 rows inserted.
    1 rows inserted.
    Whats is the output on 3.2.2 that you want?
    -Turloch
    SQLDeveloper Team

  • Validity check failed of oracle-sqldeveloper

    Hello Folks,
    I have tried to install the "oracle-sqldeveloper" of the AUR with yaourt from this source Arch Linux Forums
    To get the newest version I modified the PKGBUILD of oracle-sqldeveloper.
    I change the package version, the url and the the checksums.
    The checksums and the other parameters are correct but I got an error when I started building:
    ==> ERROR: One or more files did not pass the validity check!
    ==> ERROR: Makepkg was unable to build oracle-sqldeveloper.
    I have also tried to download the package from oracle directly and deploy it with a local http-server, but with the same result.
    How can I fix that problem?
    greetings

    Yes, it says, that the check for the downloaded file from the oracle site fails, but I generated the checksum with md5sum and sha256sum, but it also fails with the new check sum.
    That is true, that I´m new with arch, but I have already worked with makepkg and pacman.
    I´m using yaourt, because I need many packages that are not in the official repos.
    greetings & thx for your reply

  • Unable to connect to Oracle database running on Windows machine from linux.

    Hi,
    I'm not able to connect to oracle database running on Windows machine from Linux machine. I'm geting the below mentioned error. I have given below the code I used to connect to database and database propertes.Do I need to use any specific driver?
    Please help me.
    Thanks,
    Sunjyoti
    Code :
    import oracle.jdbc.pool.OracleDataSource;
    import java.sql.Connection;
    import java.util.*;
    import java.sql.*;
    import java.io.*;
    class try2{
    public static void main(String args[]) {
    try {
              System.out.println("hi");
    // Load the properties file to get the connection information
    Properties prop = new Properties();
    prop.load(new FileInputStream("/home/sreejith/EDIReader/Connection.properties"));
    // Create a OracleDataSource instance
    OracleDataSource ods = new OracleDataSource();
    System.out.println("prop is "+prop);
    configureDataSource(ods, prop);
    Connection conn=null;
    // Create a connection object
    conn = ods.getConnection();
         System.out.println("Connection is"+conn);
    // Sets the auto-commit property for the connection to be false.
    conn.setAutoCommit(false);
    } catch (SQLException sqlEx){ // Handle SQL Errors
    System.out.println("In exception "+sqlEx);
    } catch(Exception excep) { // Handle other errors
    System.out.println(" Exception "+ excep.toString());
    private static void configureDataSource(OracleDataSource ods, Properties prop) {
    // Database Host Name
    ods.setServerName(prop.getProperty("HostName"));
    // Set the database SID
    ods.setDatabaseName(prop.getProperty("SID"));
    // Set database port
    ods.setPortNumber( new Integer( prop.getProperty("Port") ).intValue());
    // Set the driver type
    ods.setDriverType ("thin");
    // Sets the user name
    ods.setUser(prop.getProperty("UserName"));
    // Sets the password
    ods.setPassword(prop.getProperty("Password"));
    Connection properties :
    # Your Database Connection details
    HostName = 10.20.3.19
    SID = EDIREAD
    Port = 1521
    UserName = dbuser
    Password = dbuser
    Error I'm getting is
    error while trying to connect with odbc datasource
    [root@iflexpau2217 EDIReader]# java try2
    hi
    prop is {HostName=10.20.3.19, Password=dbuser, UserName=dbuser, SID=EDIREAD, Port=1521}
    In exception java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    Also I tried to connect with weblogic JDBC driver
    Code is here:
    import java.io.BufferedReader;
    import java.io.ByteArrayInputStream;
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.io.FileReader;
    import java.io.IOException;
    import java.sql.Blob;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.PreparedStatement;
    import java.sql.SQLException;
    //import com.entrust.toolkit.util.ByteArray;
    public class trial{
         public static void main(String args[]) throws IOException{
              System.out.println("hi");
              Connection p_conn = null;
              PreparedStatement xml_insert = null;
              try {
         // Load the JDBC driver
                   System.out.println("hi2");
         // String driverName = "oracle.jdbc.driver.OracleDriver";
    String driverName = "weblogic.jdbc.oracle.OracleDriver";
         System.out.println("hi2");
         Class.forName(driverName);
         // Create a connection to the database
         String serverName = "10.20.3.19";
         String portNumber = "1521";
         String sid = "EDIREAD";
         //String url = "jdbc:oracle:thin:@" + serverName + ":" + portNumber + ":" + sid;
    String url = "jdbc:bea:oracle://10.20.3.19:1521";
         String username = "dbuser";
         String password = "dbuser";
    System.out.println("connection is:"+p_conn+"user name is"+username+"password is"+password);
         p_conn = DriverManager.getConnection(url, username, password);
         System.out.println("connection is:"+p_conn+"user name is"+username+"password is"+password);
              xml_insert=p_conn.prepareStatement("insert into PRTB_SUBUNIT (SUBUNT_ID,SUBUNT_SUB_UNIT,SUBUNT_PHYUNT_ID) values (?,?,?)");
              //InputStream in=null;
              File l_file=new File("/home/sreejith/EDIReader/propertyfiles/inputfile/BUG_10802_ES_CSB19_68.txt");
              BufferedReader input =null;
              input=new BufferedReader(new FileReader(l_file));
              String line = null;
              StringBuffer trial=new StringBuffer();
              while (( line = input.readLine()) != null){
                   trial.append(line);
                   trial.append(System.getProperty("line.separator"));
              //InputStream is = new BufferedInputStream(new FileInputStream(l_file));
              System.out.println(trial.toString());
              //Blob b ;
              //byte[] bytes=trial.toString().getBytes();
              //System.out.println("Size-->"+bytes.length);
              xml_insert.setString(1,new String("SpecailChar"));
              //xml_insert.setBinaryStream(2,new ByteArrayInputStream(bytes),15920);
              xml_insert.setString(3,"SpecailChar");
              xml_insert.executeUpdate();
              p_conn.commit();
              } catch (ClassNotFoundException e) {
                   System.out.println("ClassNotFoundException:"+e.getMessage());
              // Could not find the database driver
              } catch (SQLException e) {
                   System.out.println("SQEXCEPTIN:"+e.getMessage());
              // Could not connect to the database
              }catch (FileNotFoundException e) {
                   System.out.println("filenot found:"+e.getMessage());
              // Could not connect to the database
    Error I'm getting is
    error while trying with jdbc:
    SQEXCEPTIN:[BEA][Oracle JDBC Driver]Error establishing socket to host and port: 10.20.3.19:1521. Reason: Connection refused

    Is the Windows firewall active? Have you enabled the port on the firewall, if it is?

  • Need to fatch the data from sqlserver to Oracle DATABASE ;not migration

    Hello,
    What is the easiest method to insert/refresh data into Oracle Tables from SQLSERVER 2005 table.Do I need ODBC connection and how it works in the PL/SQL to create the connection and fetch the data from sqlserver.
    Thanks,
    Sarabmann

    I need to fetch from ORACLE back-end ,for example I want to install the mechanism at the back-end server where if I write stored procedure and call this link which enable me to fetch the data from sqlserver.
    Environment:- Linux as OS
    Oracle 10G as a Database

  • Migrate Oracle Apps 11.5.10.2 from Sun solaris to RHE Linux 32 bit.

    We are migrating the Oracle Apps 11.5.10.2 from Solaris two node to Linux two node including the database Oracle 10.2.04 64 bit.
    Since the applications only support 32 bit we are not able to store CM tier in a 64 bit Linux so with this considerations we are going with the below plan.
    1. Install RHEL 5 as a 32 bit for two nodes ( One for DB/CM and FORMS/WEB)
    2. Migrate the applications and DB from Solaris to Linux as the same node configuration that is
    Node A:
    Oracle DB 10.2.0.4 64 bit ( SUN oS 10 64bit) -> Oracle 10.2.0.5 32bit (RHEL 5 32 bit)
    Oracle Apps CM 11.5.10.2 (SUN OS 10 64bit) -> Oracle apps CM 32 bit(RHEL 5 32 bit)
    Node B:
    Oracle apps 11.5.10.2 forms (sun OS 10) -> Oracle apps 11.5.10.2 forms ( RHEL 5 32bit)
    Oracle apps WEB 11.5.10.2 (SUN OS 10) -> Oracle apps WEB 11.5.10.2 ( RHEL 5 32 bit).
    Question : 1. Did you see any snag on this kind of migration
    2. Any documentation to migrate the Oracle APPS 11i 10.2.0.4-64 bit database from Sun Solaris to oracle apps 11i 10.2.0.5-32 bit on Linux

    Hi,
    1. Did you see any snag on this kind of migrationWhy would you downgrade the db from 64 bit to 32 bit. As 32 Bit has lot of memory limitations.
    You could keep the database on 64 bit for linux too.
    2. Any documentation to migrate the Oracle APPS 11i 10.2.0.4-64 bit database from Sun Solaris to oracle apps 11i 10.2.0.5-32 bit on Linux Please see
    Note 238276.1 - Migrating to Linux with Oracle Applications Release 11i
    Using Oracle Applications with a Split Configuration Database Tier on Oracle 10g Release 2 [ID 369693.1]
    10g Export/Import Process for Oracle Applications Release 11i [ID 331221.1]
    10g Release 2 Export/Import Process for Oracle Applications Release 11i [ID 362205.1]
    Notice to Oracle E-Business Suite Customers: Correction to Export/Import Notes [ID 1055539.1]
    EBS 11i Export/Import Fails On Admsc1020.sql Due To Missing Catmgdidcode.sql [ID 804665.1]
    Thanks
    Edited by: EBSDBA on Oct 25, 2011 5:30 PM

  • Using Sql monitor in Oracle SqlDeveloper

    Hi ,
    i tried to use SQL Monitor in Oracle SqlDeveloper but it says "i need to register the oracle "
    is there any other way to use it ?
    thank u

    Hi,
    I am not quite sure what you mean by "i need to register the oracle ". Are you referring to the Tuning Pack Required confirmation dialog? If so, then you should click on the Yes button if that option is licensed for your database installation.
    Regards,
    Gary
    SQL Developer Team

  • Newbie blues: Oracle Sql Developer showing different data from Sqlplus.

    Newbie blues: Oracle Sql Developer showing different data from Sqlplus.
    First of all; it would be difficult to know less about Oracle than myself.
    I just installed a recent copy of the server and am running SQl Developer 3.2.20.10.
    I made a small test table , borrowed some pl sql code to add rows, then wrote code to delete some rows. Lots of fun.
    In SQL Developer “Select * from t1;” now shows 7 records, which seems right.
    I wanted other views of the data and so logged in from the command line using SQLPlus.
    The same code here shows the table prior to the delete, with 600 plus rows. Needless to say I’ve logged out and back in again, with no changes.
    No fun ! What am I not understanding here ?

    5e33d18c-3b32-48d4-82a7-676feeaa97c9 wrote:
    Newbie blues: Oracle Sql Developer showing different data from Sqlplus.
    First of all; it would be difficult to know less about Oracle than myself.
    I just installed a recent copy of the server and am running SQl Developer 3.2.20.10.
    I made a small test table , borrowed some pl sql code to add rows, then wrote code to delete some rows. Lots of fun.
    In SQL Developer “Select * from t1;” now shows 7 records, which seems right.
    I wanted other views of the data and so logged in from the command line using SQLPlus.
    The same code here shows the table prior to the delete, with 600 plus rows. Needless to say I’ve logged out and back in again, with no changes.
    No fun ! What am I not understanding here ?
    Others sessions never see uncommitted data
    > then wrote code to delete some rows. Lots of fun.
    did you ever actually issue COMMIT so other session can see the changed data?

  • How to Handle Automatic Skip Property of Item in Oracle Forms through Custom.pll or from other methods

    Hi All,
    How to Handle Automatic Skip Property of Item in Oracle Forms through Custom.pll or from other methods.
    This is a enhancement requirement.
    When ever user enter value in field 1 then automatically cursor should go to next field.

    Hello Bobb,
    You can create a trigger(when-list-changed) for each list item where you could:
    1.recreate the record groups and then use POPULATE_LIST so you can hide the selected values. In forms builder online help there are some good examples about create record groups dynamically.
    or
    2.you can perform a validation instead of hiding the selected values. If the values is already selected the display a message 'Value already selected....'
    Second option is much faster(only an 'if clause')
    Hope this helps.
    Regards,
    Alex

  • Updating Oracle 8i database from SQLServ 7

    Hi,
    I have successfully migrated data from sqlServ 7 to Oracle 8i. The SQLServ is constantly updated. Using OMWB, how do I update the data/tables in Oracle without recreating the schema/repository? Thanks.

    Gracie,
    The goal of the Oracle Migration Workbench is to achieve a one time migration, with the SQL Server DB being retired once the migration is complete. What you are looking for now is a replicaton capability to keep your SQL Server in sync with Oracle.
    Check out our gateway products:
    http://otn.oracle.com/products/gateways/content.html
    Donal

  • Migrating Oracle EBS 11.5.10.2 from Solaris to Linux

    Hi,
    I want to migrate Oracle applications 11.5.10.2 from Solaris to Linux using transportable database feature.
    Please suggest how to proceed with this.
    Thanks,
    Anirudh

    Hi Anirudh,
    Please see:
    https://blogs.oracle.com/stevenChan/entry/have_you_used_10gr2_transportable_tablespaces_with
    And see:
    10g+: Transportable Tablespaces Across Different Platforms (Doc ID 243304.1)
    Cross Platform Transportable Tablespaces on 11i with 10gR2 (Doc ID 454574.1)
    Master Note for Transportable Tablespaces (TTS) -- Common Questions and Issues (Doc ID 1166564.1)
    R11i / R12: Oracle E-Business Suite Upgrades and Platform Migration (Doc ID 1377213.1)
    R11i / R12: Oracle E-Business Suite Upgrades and Platform Migration (Doc ID 1377213.1)
    Transportable Tablespace (TTS) Restrictions and Limitations: Details, Reference, and Version Where Applicable (Doc ID 1454872.1)
    Best Practices for Using Transportable Tablespaces (TTS) (Doc ID 1457876.1)
    Thanks &
    Best Regards,

  • Oracle Appcation R12.0.6 migration from 64 bit RHEL 5.3 to 32 bit RHEL 4.4

    Hi,
    Woul it be possible to migrate Oracle Appcation R12.0.6 migration from 64 bit RHEL 5.3 to 32 bit RHEL 4.4?
    Thanks

    Hi,
    Please see these threads.
    Migration/cloning from 64 bit to 32 bit !!!!
    Migration/cloning from 64 bit to 32 bit !!!!
    11i: Can you clone from 64-bit to 32-bit?
    11i: Can you clone from 64-bit to 32-bit?
    Thanks,
    Hussein

  • Bad performing update query - converting from sqlserver to oracle

    SQLSERVER UPDATE
    =================
    UPDATE
    netVIEWplus.dbo.DIM_OUC_Latest
    SET
    OUC = LatestDIM.OUC,
    OUC_Desc = LatestDIM.OUC_Desc,
    OUC_Level = LatestDIM.OUC_Level,
    Parent_OUC = LatestDIM.Parent_OUC,
    CC_Type = LatestDIM.CC_Type,
    GFR = LatestDIM.GFR,
    CORP = LatestDIM.CORP,
    SOB = LatestDIM.SOB,
    Div_Unit = LatestDIM.Div_Unit,
    Div_Desc = LatestDIM.Div_Desc,
    L1_OUC = LatestDIM.L1_OUC, L1_DEPT_DESC = LatestDIM.L1_DEPT_DESC,
    L2_OUC = LatestDIM.L2_OUC, L2_DEPT_DESC = LatestDIM.L2_DEPT_DESC,
    L3_OUC = LatestDIM.L3_OUC, L3_DEPT_DESC = LatestDIM.L3_DEPT_DESC,
    L4_OUC = LatestDIM.L4_OUC, L4_DEPT_DESC = LatestDIM.L4_DEPT_DESC,
    L5_OUC = LatestDIM.L5_OUC, L5_DEPT_DESC = LatestDIM.L5_DEPT_DESC,
    L6_OUC = LatestDIM.L6_OUC, L6_DEPT_DESC = LatestDIM.L6_DEPT_DESC,
    L7_OUC = LatestDIM.L7_OUC, L7_DEPT_DESC = LatestDIM.L7_DEPT_DESC,
    L8_OUC = LatestDIM.L8_OUC, L8_DEPT_DESC = LatestDIM.L8_DEPT_DESC,
    Current_Flag = LatestDIM.Current_Flag,
    INF_Div_Unit_Only = LatestDIM.INF_Div_Unit_Only,
    INF_DIM_OUC_Id_Used = LatestDIM.DIM_OUC_Id
    FROM
    netVIEWplus.dbo.DIM_OUC_Latest
    INNER JOIN
    netVIEWplus.dbo.DIM_OUC HistoryDIM
    ON
    HistoryDIM.DIM_OUC_Id = netVIEWplus.dbo.DIM_OUC_Latest.DIM_OUC_Id
    INNER JOIN
    netVIEWplus.dbo.DIM_OUC LatestDIM
    ON
    LatestDIM.DIM_OUC_ID = HistoryDIM.Latest_Id
    Oracle Version
    ===========
    UPDATE
    netVIEWplus.DIM_OUC_Latest T1
    SET (OUC,OUC_Desc,OUC_Level,Parent_OUC,CC_Type,GFR,CORP,SOB,Div_Unit,Div_Desc,L1_OUC,L1_DEPT_DESC,L2_OUC,
    L2_DEPT_DESC,L3_OUC,L3_DEPT_DESC,L4_OUC,L4_DEPT_DESC,L5_OUC,L5_DEPT_DESC,L6_OUC,L6_DEPT_DESC,L7_OUC,L7_DEPT_DESC,
    L8_OUC,L8_DEPT_DESC,Current_Flag,INF_Div_Unit_Only,INF_DIM_OUC_Id_Used) =
    ( SELECT LatestDIM.OUC OUC,LatestDIM.OUC_Desc OUC_Desc,
    LatestDIM.OUC_Level OUC_Level,LatestDIM.Parent_OUC Parent_OUC,LatestDIM.CC_Type CC_Type,LatestDIM.GFR GFR,
    LatestDIM.CORP CORP,LatestDIM.SOB SOB,LatestDIM.Div_Unit Div_Unit,LatestDIM.Div_Desc Div_Desc,
    LatestDIM.L1_OUC L1_OUC,LatestDIM.L1_DEPT_DESC L1_DEPT_DESC,LatestDIM.L2_OUC L2_OUC,
    LatestDIM.L2_DEPT_DESC L2_DEPT_DESC,LatestDIM.L3_OUC L3_OUC,LatestDIM.L3_DEPT_DESC L3_DEPT_DESC,
    LatestDIM.L4_OUC L4_OUC,LatestDIM.L4_DEPT_DESC L4_DEPT_DESC,LatestDIM.L5_OUC L5_OUC,
    LatestDIM.L5_DEPT_DESC L5_DEPT_DESC,LatestDIM.L6_OUC L6_OUC,LatestDIM.L6_DEPT_DESC L6_DEPT_DESC,
    LatestDIM.L7_OUC L7_OUC,LatestDIM.L7_DEPT_DESC L7_DEPT_DESC,LatestDIM.L8_OUC L8_OUC,
    LatestDIM.L8_DEPT_DESC L8_DEPT_DESC,LatestDIM.Current_Flag Current_Flag,
    LatestDIM.INF_Div_Unit_Only INF_Div_Unit_Only,LatestDIM.DIM_OUC_Id INF_DIM_OUC_Id_Used
    FROM
    netVIEWplus.DIM_OUC HistoryDIM,netVIEWplus.DIM_OUC LatestDIM
    where
    HistoryDIM.DIM_OUC_Id = T1.DIM_OUC_Id
    and
    LatestDIM.DIM_OUC_ID = HistoryDIM.Latest_Id and rownum=1)
    where exists ( SELECT 1
    FROM
    netVIEWplus.DIM_OUC HistoryDIM,netVIEWplus.DIM_OUC LatestDIM
    where
    HistoryDIM.DIM_OUC_Id = T1.DIM_OUC_Id
    and
    LatestDIM.DIM_OUC_ID = HistoryDIM.Latest_Id )
    Problem is oracle update is taking long time than sqlserver update. Can it be written in some orhet way.
    Regards,
    Koushik

    Hi,
    Have you gathered stats as well ? Did the query use index(es) as well ?
    Without any more info like explain plan, indexes, etc., further help will be unable.
    Nicolas.

  • Migrate HFM (9.3) from Sqlserver to Oracle

    Hello.
    We are using Sqlserver for HFM for historical reason, but now we would like to change
    our database to Oracle for improve performance and for licenses reason.
    We want to organize migration and some tests.
    I checked OTN and Metalink and I didn't find anything related to HFM.
    I have found a lot of documentation about migration from Sqlserver to Oracle,
    but I would like to find and read something specific related to HFM repository.
    Maybe Oracle suggests to do some premigration task
    or some postmigration task.
    How can I find this kind of documentation?
    There is anyone that have already done this kind of job?
    Some suggestion?
    Thanks in advance.
    D.
    Edited by: Spugna on May 20, 2011 8:33 AM
    Edited by: Spugna on May 20, 2011 8:34 AM

    You can use the HFMCopyApp utility, which ships with HFM, under the \Server folder on each HFM app server. There are other threads in this forum on how to use this utility. It will allow you to copy from one RDBMS to another.
    Each product however, is different in terms of migrating between RDBMS. FDM, for example, requires a rebuild. So you will have to check into each component. As for performance being better under Oracle vs. SQL Server, that's a matter of tuning and opinion. I would make sure performance will in fact be better before I undertook this project. License costs should be much more clear, of course.
    --Chris                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Maybe you are looking for

  • Procure to Asset  Complete Cycle

    Does anybody know all setups required to complete cycle from creating an item for asset ,creating PO, transfering asset to FA(rather than inventory) and paying this invoice etc .does any body have this test cycle-

  • DME - it is not released for customers

    Hi friends, I am getting error when i am executing F110 with the help of DME. Payment document is generating but i am not getting the file which i have to send it to bank. This is the error i am getting it "Format tree 8301:DME FOR OUT GOING PAYMENT

  • Mac Client Log on Window Takes Long Time

    Mac 10.6.x client is successfully joined the Windows Server 2008 based domain. But it's taking too much time (approx. 5 to 10 minutes) to shows the "Others" option (using that log on by AD user) in login window on Mac client. Has anyone idea why it's

  • Excel 2010 workbook crashing Excel 2013

    We have someone who created a workbook in Excel 2010 and when we open it in Excel 2013 it will crash. You can open the doc and look at it, but once you start trying to do anything in it, after a random time period, it will crash. Also if you try to r

  • Appreciated if someone can share your good data modeling tips/experience!

    Note: we don't want to read SAP Help links and we are tired of reading and understand SAP Help links, just share your own experience of good data modeling tips to improve the data load and query performance. We will give reward points and thanks in a