MSSQL = Oracle 8.1.5

Hi,
I try to get my MSSQL Datas to a Oracle Database (8.1.5) on a linux system.
We use linux red hat 6.1. Is there a way to manage the migration?
thanx for help
null

I had the same problem when installing discoverer on machines that had 8.1.5 client tools on them........I was unable to create multiple homes with success......I uninstalled (and deleted) all things oracle (ugh!) with both the universal installer and manually from my machine (both registry and hard drive) then installed Discoverer then installed 8.1.5

Similar Messages

  • DB Connect, BW on MSSQL, Oracle as external system(NON SAP)

    Hi,
    Requirement:
    I want to connect and Extract data from Oracle database (non-sap).
    BI System Details:
    1. BI 7.0 (EHP 1) server is running on MSSQL 2005.
    2. I have WEB AS as ABAP only.
    3. Operating system Win 2003 server.
    Oracle Database (NON SAP) Details:
    1. OS : Win 2003
    2. Oracle 10g Release 2
    Activity:
    1. I have downloaded, unpacked and copied the Database Shared Library (DBSL) as mentioned on sap help link http://help.sap.com/saphelp_nw04s/helpdata/en/42/fdccb72aa95277e10000000a1553f7/frameset.htm
    2. I have installed the oracle 8i client on BW server and configured the tnsnames.ora file. I am able to ping(tnsping sap.world) the oracle database through command prompt(cmd).
    3. RSA1 -> Source system -> DB Connect.
    4. Right Click on DB Connect -> Create.
    5. Entered following entries in screen: Create Source System
    Logical System Name : Oracon
    Source System Name  : Oracle Connection
    6. Click on Enter icon.
    7. I make the following entries in the screen "Description Of Database Connections"
    DB Connection  : Oracon
    DBMS : ORA
    User Name : username of oracle database with admin right
    DB password : database password
    Conn. info : sap.world
    Permanent : unticked
    Connection Limit: empty
    Optimum Conns : empty
    8. Click on SAVE Button
    9. Click on Back Button and again click on Back Button
    10. Now i got the Dialog box "Cannot Access Source System ORACON" with three button.
    System Log
    Correct
    Cancel
    11. I clicked on System Log and checked the log.
    12. I am getting the following error
    No shared library found for the database with ID ORACON
    Documentation for system log message BY G :
    As well as the standard connection, an attempt was made to set up
    another database connection, under the specified ID. The Shared Library
    for this second database could not be found.
    The Shared Library is usually found in the  Executable
    directory (profile parameter DIR_LIBRARY) under the name dbs
    <dbs>slib<os_ext>. <dbs> stands for the database type and <os_ext>
    stands for the operating system-specific extension of the Shared
    Libraries.
    The database type is determined from the entry that corresponds to the
    specified DB ID in the table DBDCON. Check whether the data in this
    entry is correct.
    Please Help me to rectify the error.
    Regards,
    Aslam Khan

    Hi,
    and thanks for the answers.
    Now I have the oracle client installed on the BW server, and the dbsoraslib library has been copied to the BW run directory. But any attempt to connect to the system just gives me the error "No shared library found for the database with ID AGRESSO"
    (I get ths error no matter what I input when trying to set up the connection, also if I intentionally gives wrong ID and/or IP)
    I'm wondering if my input is the problem, and then, what would be correct.
    My tnsnames.ora looks like this
    AGRESSO =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (COMMUNITY = tcp.world)(PROTOCOL = TCP)(Host = xxx.xxx.xxx.xxx)(Port = 1521))
          (ADDRESS = (COMMUNITY = tcp.world)(PROTOCOL = TCP)(Host = xxx.xxx.xxx.xxx))(Port = 1521))
        (CONNECT_DATA =
          (SID = db06)
    (edited out ip adress)
    When creating the connection I give
    Logical system name "AGRESSO",
    source system name I assume I can give whatever here.
    Type and release I leave blank.
    Next screen I give:
    DB Connection: AGRESSO (Can not be edited)
    DBMS: ORA
    Username/passord as given by the server admin
    Conn. info I have tried many different inputs. AGRESSO, the IP adress, the SID (db06), but no luck.
    Anyone have any knowledge about what to give as input? (if the tnsnames.ora is lacking information etc)
    Thanks for any input.
    Regards,
    Øystein

  • MSSQL -- Oracle 10g migration

    Hello,
    I am a seasoned microsoft developer and I have been working almost exclusively with MSSQL (since 6.5) and Sybase. The company I work for has determined to stop all new MSSQL installs and go exclusively with Oracle 10g. Are there any resources or materials from a MS developers view point to help orient to Oracle technology? I've read the 2 - day DBA to help me get up to speed but reading material that translates it into familiar terms would certainly help me and others I work with get a reference point.
    thanks,
    c

    I too came from SQL Server. Here's the first two books you should read.
    Expert One-on-One Oracle
    by Tom Kyte
    It's targeted at developers and highlights the differences between Oracle and other RDBMS products.
    Oracle Concepts Guide
    http://download-west.oracle.com/docs/cd/B14117_01/server.101/b10743.pdf
    General introduction to the Oracle Database. Surprisingly good reading for documentation.
    All the books are available in the online documentation library
    http://otn.oracle.com/pls/db10g/portal.portal_demo3?selected=1
    David

  • TWO MSSQL= ORACLE Migration Problems

    I have to migrate a MS SQL Database to ORACLE, but I'm facing two major problems.
    1) How do I treat NOCLUSTERED Primary Keys and CLUSTERED Unique-IDs? There is no equivalent in Oracle, is there?
    2) What can I do about MS SQL "Uniqueidentifiers"? Please give me some help, I allready read the MigrationGuide and looked in the internet, but I couldn't find any solutions to this...
    So how would you translate this MS-SQL table?
    CREATE TABLE example (
    someid int IDENTITY(1,1),
    type varchar(20) NOT NULL,
    real uniqueidentifier NOT NULL,
    PRIMARY KEY NONCLUSTERED (someid),
    UNIQUE CLUSTERED (
    real
    UNIQUE (
    type
    Any help will be greatly appreciated!
    Thanx in advance,
    Mark

    First thing when you create a primary key in sql server it is defaulted to clustered index, which is not the case with Oracle.
    To retain the identity property of the someid field you would have create sequence for that column which is fired by trigger.
    something like this
    CREATE SEQUENCE "S_EXAMPLE_ID" INCREMENT BY -1
    START WITH -1 MAXVALUE 1.0E27 MINVALUE 0 NOCYCLE
    CACHE 30 NOORDER
    CREATE OR REPLACE TRIGGER "TRG_EXAMPLE_SEQ"
    BEFORE
    INSERT ON "EXAMPLE" FOR EACH ROW begin
    select S_EXAMPLE_ID.nextval into :new.SOMEID FROM dual;
    END;
    As for index you have decide which you want to use based on your requirements and clustered indexes in oracle is different from that in Sql Server

  • DAC Server with Oracle XE database

    Hi
    I've installed on my personel computer Oracle BI EE 10.1.3.3.3 and BI Applications 9.1.5
    I've only installed the client version of Informatica 8
    When I'm starting the DAC Client, I cannot create any connexion because I've only the choice between DB2, MSSQL, Oracle Thin and Oracle OCI8.
    Is there a way to use my Oracle XE database ?
    Thanks

    I assume you meant BI Applications 7.9.5 I am quite anxious to see BI Apps 9.1.5.
    When you try to run the product with unsupported Databases (even Oracle ones) all bets are off.
    That being said if the XE DB is local to that environment it does install OCI libraries and creates a TNS file. You can use OCI8. I have never used it with the DAC but it worked just fine for BI EE.

  • ASE 15.7 on Windows Server 2012

    Hi,
    did anyone manage to get ASE 15.7 SP 131 running with more than 3 GB default data cache on a Windows host ? I'm not talking
    about how to configure that memory or use the cfg file to do it offline. What I mean is this message in the log file:
    "Configuration of the cache (default data cache) failed since the defined cache configuration consumes more memory than is available for buffer caches."
    I have 16 GB RAM, max memory=9GB, sp_configure memory shows 6738682 K bytes available. As soon as I try to increase "default data cache" to more than 3 GB (2.3 GB to be exact) , ASE won't come up again. Please try this first on your environment before coming back with questions as it sounds weird.
    Regards,
    Mat

    Yes - my default data cache is 6GB.....but not on Win2012...which is why I think it is OS related.  I am not as familiar with Windows as Unix/Linux - but in Unix/Linux, there are kernel configs that control the size of the shared memory segment as well as the number of shared memory segments.   When ASE starts, it attempts to grab everything in ONE shared memory segment of X size (whatever total memory is set to).   Soooo...normally, when ASE is running, in Unix, you do an ipcs -a and you will see the ASE user (Sybase typically) with 1 shared memory segment.   If you sp_configure 'total memory' higher while ASE is running, it then grabs another segment - so, it would have two segments.   However, when you shutdown and restart, it will attempt to grab a single segment at the now higher size.   If you were on Unix, that would explain why you could increase it slightly while running, but it wouldn't restart at the higher setting.
    However, on Windows, ASE will grab more than one segment....if you look in your errorlog at boot time, you should see lines similar to:
    10:49:31.10 kernel  Allocating a shared memory segment of size 1075904512 bytes.                     
    10:49:31.36 kernel  Allocating a shared memory segment of size 191758336 bytes.                      
    10:49:31.37 kernel  Allocating a shared memory segment of size 86245376 bytes.                       
    10:49:31.37 kernel  Allocating a shared memory segment of size 78446592 bytes.                       
    10:49:31.37 kernel  Allocating a shared memory segment of size 35586048 bytes.                       
    10:49:31.37 kernel  Allocating a shared memory segment of size 119603200 bytes.                      
    10:49:31.38 kernel  Allocating a shared memory segment of size 4295032832 bytes.                     
    10:49:31.41 kernel  Allocating a shared memory segment of size 7002324992 bytes.                     
    10:49:31.45 kernel  Kernel memory at 0x0000000020000000, 1075904512 bytes                            
    10:49:31.45 kernel  Kernel memory at 0x0000000020000000, 3536896 bytes                               
    10:49:31.46 kernel  Server part of first shared memory region at 0x000000002035F800, 1072367616 bytes.
    10:49:31.46 kernel  Failed to log the current message in the Windows NT event log                    
    10:49:31.46 kernel  Server region 0 at 0x0000000060220000, 191758336 bytes                           
    10:49:31.46 kernel  Server region 1 at 0x000000006B9D0000, 86245376 bytes                            
    10:49:31.46 kernel  Server region 2 at 0x0000000070CF0000, 78446592 bytes                            
    10:49:31.46 kernel  Server region 3 at 0x00000000757E0000, 35586048 bytes                            
    10:49:31.47 kernel  Server region 4 at 0x0000000077DD0000, 119603200 bytes                           
    10:49:31.47 kernel  Server region 5 at 0x000000007FFF0000, 4295032832 bytes                          
    10:49:31.47 kernel  Server region 6 at 0x0000000180030000, 7002324992 bytes                          
    10:49:31.47 kernel  Highest valid address is 0x0000000321620000                                      
    10:49:31.47 kernel  Adaptive Server is using the threaded kernel mode.                              
    ...as you can see, I grabbed 8 shared memory segments with sizes from 35MB to ~7GB....likely due to fact that other apps were using memory and since shared memory is normally pinned (non-swapped), Windows had to scrounge multiple non-contiguous blocks of memory.
    Windows did some funky stuff with shared memory and permissions (which is why I suggested running as Administrator)....some of which I suspect was to do with same sort of things that Linux tried adding some security around by randomizing virtual address space, etc.    I am not sure if that is related to your problem except only indirectly perhaps.....
    ....what it looks like to me is that your OS installation (and not sure who/how it was done) is capping your shared memory segments at 4GB...or you are being capped at a set number of shared memory segments.   The latter in Unix (for example) is set system wide, so if you set the OS to limit only 32 shared memory segments, then all processes on the host combined can only have 32 shared memory segments.   This can get fun if running SAP installations as the NW worker processes also use shared memory....since this post is in the Custom vs. SAP area, I will assume you are not running SAP - but it is possible that other programs such as MSSQL, Oracle, etc. all will need shared memory.....
    It would be interesting to see the corresponding entries in your errorlog similar to the above when ASE booted fine and also when it failed....might point us to whether it is a total MB of shared memory as the issue or the number of segments.....

  • DB connect no data found is rfc connection required

    Hi Gurus,
    I want to retrieve data from oracle database, i have all the table with data in it, but through the source system i.e db connect it does not display any contents of the table, it says no data found, the installation was all done perfecttly fine, i can read the table fields but i am not able to read the data from the table. what could be the problem.
      Is an RFC connection required for this db connect to retrieve the data from oracle. or else what is the issue. Can anyone please help me out on this, I already posted long back on this still no reply on it. From the osss notes it allgives information about the intallation but it there is no data found then it does not give any information onthis. Can anyone please help me out on this.
    Thanks,
    Hem

    Hi Hem,
    You want to retrieve data from Oracle Database using BW and you are having a problem?
    Try isolation technique to solve your problem.
    Try to use third party softwares e.g. MS Excel. Retrieve data from Oracle using MSExcel. If MSExcel can retrieve data then you can conclude:
        a.) The network connection to Oracle is fine.
        b.) Oracle is up and running and is able to serve data from your specified table.
    RFC Connection is not required. RFC is only useful for SAP to SAP communication. This connection uses a different technique and uses a different driver to communicate. SAP provided DB Connect Engine. A similar approach as what Microsoft's OLEDB is doing. This to make a transparent connection between various database systems. (whether MSSQL, Oracle, MSACCESS, SYBASE etc.)
    As part of isolation technique, are you sure you are accessing the correct table? Try to access other tables. If you can access data of different tables then something is wrong with the table you want to access.
    Have you check authorization issues? Are you allowed to extract data?
    Hope I have helped. If I did, please grant points...
    --Jkyle

  • How to connect MS Access or other d/b tools to SAP R/3

    Hi SAP Experts,
    I got a requirement i.e by using MS Access or other database tools to take the SAP table dumps and analyze gaps or errors in the system data using business guided .
      I don't know how to connect MS Access to SAP R/3 and how to connect other database tools to SAP R/3.
    pls any body can explain me on this topic or inform me where i can get the corresponding documents.
    This is urgent for me.
    I appreciate you're help.

    Hi,
    For some databases (for example MSSQL, Oracle,...) you can use transaction DBCO (table DBCON) to create connection to external database. Then you can use native SQL in ABAP programs (EXEC SQL command).
    Krzys

  • How to determine the field size

    I am going to make a multiplatform application that hopefully
    will run on linux and windows 2000.If the os is 2000, then I will use
    vb.net/aspx else I'll use java servlets. I make the connection
    to the web server ( through HTTP) not directly to database server.
    So, the resultset will be stored in the String object. The columns
    will be separated by delimeter. Our problem is how to determine
    the size and type of the fields of mssql,oracle and postgres database
    so that we can include it in the String object.
    Ex.
    String sResultSet=new String();
    ResultSet rs=statement.executeQuery(sSQL);
    while(rs.next()){
    sResultset=sResultSet + rs.getString(field1) + "||" + rs.getString(field2) + "||";
    vertical bars acts as delimeter
    supposedly this is the code:
    sResultset=sResultSet + rs.getString(field1) +"_" + rs.getFieldType() + "_"+
    rs.getFieldSize() + "||" + rs.getString(field2) +"_" + rs.getFieldType() + "_"+
    rs.getFieldSize() + "||";
    supposedly this is the code if rs.getFieldType() and rs.getFieldSize() methods are existing
    Anyone can give me an idea how to get the field type and field size of the database?
    thanks in advance

    Yes, but I dont know how to do it.
    Can you give me an example of using it.
    Thanks in advance

  • Crystal Reports Server XI R2 and JDBC

    Post Author: dkt
    CA Forum: Data Connectivity and SQL
    Hello
    For published reports, it is possible to reuse the existing JDBC connection setting embedded in side the report.
    But is it possible to set a Custom JDBC driver in the Schedule -> Database -> custom driver?
    By default, it has ODBC driver for MSSQL, Oracle, Sybase and Informix.
    Thanks.

    Post Author: RecallNADavidH
    CA Forum: Data Connectivity and SQL
    Sconan,
    Yes theres several issues you're facing that we solved.
    Here's what you need to check
    1) Are you using a 64bit system?  Netsuite ODBC doesnt work with 64bit.
    2) BOXI and Netsuite OpenSSL driver conflict and wont work on the same box.  You MUST seperate the systems.  We have one server running SQL and the ETL, and then a second server running BOXI.  THIS IS WHY CMS WONT START.  THERE'S NO WAY AROUND THIS.
    3) We went through the same steps your describing several times and pretty much pulled our hairs out before we figured it out...because we also were getting valid connections through CR and excel querys.
    What were facing now is that we cant get SSIS to bring over the correct table size values.  Everything is comming over as text with 0 lenghts.
    If you have a minute give me a call.
    David Hudgins
    Recall
    678-516-6124

  • Third-party tools  for solution manager

    Hi all,
    Im new for solution manager a i just  want to know whats SM tools and whats the third-party tools integrate and interface with SAP Solution Manager and if will be more third party tools??  ( Whats the add on tools SM have??)
    regards
    Tim

    Hi Murali Narayanan   
    If you wan to achieve monitoring from technical perspective, the way that was introduced by shivjansi might be the option.
    If you want to check the entry of specific table in stand alone MSSQL to ensure the business process that use MSSQL
    stand alone DB, you can use BPMon remote DB monitoring that enables monitoring of non ABAP/ non SAP that supported
    by netweaver like MSSQL, Oracle, DB2.
    By using this function, you can monitor the entry of your stand alone SQL server.
    For example, stand alone SQL Server has some table that contains some error,
    or there is  application table and in one row that it indicates error or  completeness.
    Now if you want to check these error document or incomplete document  in the DB,
    you can use BPMon remote DB monitor.
    By monitoring this, you can ensure whether there is issue in your business or not.
    You can find out how to setup from following link.
    http://service.sap.com/bpm
    ->technical detail ->Setup Guide for non-ABAP/non-SAP
    P14 (The monitoring object u201CGeneric Table Entry Counter for remote DBu201D (NATABCNX) )
    is related description.
    (In the document, it also introduce some other way using web service).
    Also in same link, you can find out other document like how to setup BPMon.
    Also there is some blog about table entry counter. it is for SAP ABAP system.
    But the function is more or less same for remote DB.
    So you can also check following blog to have more understandable image.
    /people/volker.vongloeden/blog/2010/07/16/create-your-own-customer-specific-key-figure-for-business-process-monitoring-within-5-minutes
    Best Regards
    Keiji

  • Wanted  hasslefree Vault storage for 2 computers each with Aperture

    I have a G5(10.4.1) and a MacBook Pro(10.5.2) each of which have Aperture 2.1.1 installed. I want to be free to load pictures into either computer and also want to take advantage of Aperture's Vaults. I understand that backing up differing libraries into the one Vault is not advisable.
    Is it possible to safely set up one or more libraries on an external hard drive so that they accessed by more than computer and when required these external library(ies) be backed up by a vault(s)?
    T5G5

    sfoster_au wrote:
    Aristophanes is absolutely right Aperture is no MSSQL, Oracle or DB2 Database so the concept of branching and merging if extremely difficult.
    It would add a LOT more $$$ to the cost of development and support.
    Photos properly encoded with the IPTC and Exif data are actually excellent from a metadata perspective. However, any circumstance I can foresee would have to be strict chronological ordering as photos are shot in a linear fashion.
    However: Imagine a photo shoot where 2 cameras are at work in hi-speed mode. Identical model cameras creating similarly named (if not identical) files in an almost simultaneous environment. That's fashion photography and the kind of pro market Aperture is aimed at. That's one example that could break the paradigm's back.
    I would like to see a tentative step whereby a user can designate a single project as fluid and sync it within a strict chronological, linear uplink. Sort of an auto upload and update feature complete with field edits, deletions (optional), etc. We're on the verge of Wi-fi enabled cameras as an integral function anyway.
    Given this, It would be nice to see Aperture have a one way migration tool that takes ALL Folders / >Projects / Etc and moves them in one hit back to the main library (ONE WAY Transfer). If the same >name existed at the same level in the Main Library then Suffix with a 2 etc.
    Absolutely. Vaults already are a one-way self-contained copy.

  • ODI 12c Hints

    Hi everyone,
    I am a new baby in Oracle and plus ODI 12c. Shortly my question is about adding hints to ODI. My query is;
    SELECT /*+ full(s) */
             s.sip_date,
             con.seg_behavior,
             s.organization_id,
             SUM (CASE WHEN s.no IS NULL THEN 1 ELSE 0 END) num_cust_without_card,
             COUNT (s.no) num_cust_with_card,
             COUNT (1) num_total_cust,
             COUNT (con.tmv_id) num_cust_with_segcard
    FROM xxmg_siparis s
             LEFT JOIN tmv.contact con ON s.tmv_id = con.tmv_id 
    WHERE s.sip_date >= TRUNC (ADD_MONTHS (SYSDATE, -3), 'mm')
                AND s.status = 5 
    GROUP BY s.sip_date, con.seg_behavior, s.organization_id
    However, the running query in ODI is;
    SELECT
             s.sip_date,
             con.seg_behavior,
             s.organization_id,
             SUM (CASE WHEN s.no IS NULL THEN 1 ELSE 0 END) num_cust_without_card,
             COUNT (s.no) num_cust_with_card,
             COUNT (1) num_total_cust,
             COUNT (con.tmv_id) num_cust_with_segcard
    FROM xxmg_siparis s
             LEFT JOIN tmv.contact con ON s.tmv_id = con.tmv_id 
    WHERE s.sip_date >= TRUNC (ADD_MONTHS (SYSDATE, -3), 'mm')
                AND s.status = 5 
    GROUP BY s.sip_date, con.seg_behavior, s.organization_id
    I want to add  /*+ full(s) */ hint to my query. How can I accomplish it? I searched google a lot, but Please help me.
    Thank you

    I can't attach any file, the buttons are inactive and I don't know the reason. I added full(sip) value to IKM Oracle Incremental update km ORACLE_HINT option. However; in designer tab, sip is in default container. Should I write full(default.sip) or full(sip). Also, under knowledge module tabs (IKM), I added many IKM incremental update modules (for SQL, MSSQL, ORACLE). In this case, which one ODI is uses is determined by the data server connection type? I want to guarantee that, these installed modules does not affect the others operation.
    Here is the output of generated code in simulation mode;
    Generated Session
    Session Name:
    CBS_MUSTERI_DILEK_DS_SESS
    Context Code:
    DEV01
    Step
    Step Name:
    CBS_MUSTERI_DILEK_DS_STEP
    Step No:
    10
    Step Type:
    MAPPING
    Ok Exit:
    0
    Task
    Task Type :
    EX_UNIT_BEGIN
    Task Name 1:
    SERIAL
    Task Name 2:
    MAP_MAIN
    Task
    Task Type :
    EX_UNIT_BEGIN
    Task Name 1:
    SERIAL
    Task Name 2:
    EU
    Task Name 3:
    EBS_APPS_UNIT
    Task
    Task Type :
    EX_UNIT_BEGIN
    Task Name 1:
    Load AMUSTERI_SEGMENT
    Task Name 2:
    IKM Oracle Insert
    Exe Channel:
    JDBC
    Source Logical Schema Name:
    EBS_APPS
    Source Isolation Level:
    DEFAULT
    Target Logical Schema Name:
    EBS_APPS
    Target Connection Name:
    DEV01
    Target Isolation Level:
    DEFAULT
    Target Technology Internal Name:
    ORACLE
    Target Command:
    INSERT /*+  APPEND    PARALLEL  */ INTO APPS.XXCBS_MUSTERI_SEGMENT ( "organization_id" ,  "tarih" ,  "seg_behavior" ,  "seg_kartli_musteri_sayisi" ,  "kartsiz_musteri_sayisi" ,  "kartli_musteri_sayisi" ,  "musteri_top_sayisi" ) SELECT
    (SIP_1.ORGANIZATION_ID) , (SIP_1.SIP_TARIHI) , (CONTACT_1.SEG_BEHAVIOR) , (COUNT(CONTACT_1.TMV_ID)) , (sum(CASE WHEN SIP_1.MUSTERI_KART_NO IS NULL THEN 1 ELSE 0 END)) , (COUNT(SIP_1.MUSTERI_KART_NO)) , count(1)
    FROM ( SELECT
    SIP.SIP_TARIHI SIP_TARIHI , SIP.ORGANIZATION_ID ORGANIZATION_ID , SIP.DURUM_ID DURUM_ID , SIP.MUSTERI_KART_NO MUSTERI_KART_NO , SIP.TMV_ID TMV_ID
    FROM XXMG.XXMG_SIPARIS SIP   WHERE  SIP.SIP_TARIHI >= trunc(add_months(sysdate, -3), 'mm')  AND  SIP.DURUM_ID = 5         ) SIP_1 ,  ( SELECT  FROM TMV.CONTACT CONTACT   WHERE  CONTACT.SEG_BEHAVIOR IN('KAYAN_YILDIZ', 'ALTIN_ISLEM', 'YENI', 'YILDIZ') CONTACT.SEG_BEHAVIOR         ) CONTACT_1   WHERE  SIP_1.TMV_ID = CONTACT_1.TMV_ID
    GROUP BY  (SIP_1.ORGANIZATION_ID),(SIP_1.SIP_TARIHI),(CONTACT_1.SEG_BEHAVIOR)        
    CONTACT.TMV_ID TMV_ID , CONTACT.SEG_BEHAVIOR SEG_BEHAVIOR

  • Query Explain without running it.

    I use trans code rsrt to display the execution plan of my slow running query. Can anyone tell me how to do this WITHOUT running the query. Each time I try and exit it runs.
    Thanks

    Hi Richard,
    I am not so sure but I think any optimizer program needs to run the QUERY somehow to detect the execution plan. Even if you go straight to the RDBMS (<i>e.g. MSSQL, ORACLE etc.</i>) bundled <i>optimizer/analyzer utilities</i> with them somehow executes the <b>SQL Query</b> to detect <i>bottlenecks</i> and problematic sections of the SQL Query (w/c is of no difference to BEX Query as in your Case). 
    Regards,
    --Jkyle

  • Solution manager-third party tracking tools conectivity

    Hi All,
    How to connect solution manger to third party issue tracking tools to get fake data  in solution manager and update the same?
    Thanks in advance
    vasumathi

    Hi Murali Narayanan   
    If you wan to achieve monitoring from technical perspective, the way that was introduced by shivjansi might be the option.
    If you want to check the entry of specific table in stand alone MSSQL to ensure the business process that use MSSQL
    stand alone DB, you can use BPMon remote DB monitoring that enables monitoring of non ABAP/ non SAP that supported
    by netweaver like MSSQL, Oracle, DB2.
    By using this function, you can monitor the entry of your stand alone SQL server.
    For example, stand alone SQL Server has some table that contains some error,
    or there is  application table and in one row that it indicates error or  completeness.
    Now if you want to check these error document or incomplete document  in the DB,
    you can use BPMon remote DB monitor.
    By monitoring this, you can ensure whether there is issue in your business or not.
    You can find out how to setup from following link.
    http://service.sap.com/bpm
    ->technical detail ->Setup Guide for non-ABAP/non-SAP
    P14 (The monitoring object u201CGeneric Table Entry Counter for remote DBu201D (NATABCNX) )
    is related description.
    (In the document, it also introduce some other way using web service).
    Also in same link, you can find out other document like how to setup BPMon.
    Also there is some blog about table entry counter. it is for SAP ABAP system.
    But the function is more or less same for remote DB.
    So you can also check following blog to have more understandable image.
    /people/volker.vongloeden/blog/2010/07/16/create-your-own-customer-specific-key-figure-for-business-process-monitoring-within-5-minutes
    Best Regards
    Keiji

Maybe you are looking for

  • Error 0 update while loading master data

    Hi,     Iam facing a problem while loading master data.Data has comes to PSA but it getting failed to load into infoobject it is showing the error " error in the 0 update". Ihave tried for manual update, even though it is showing same problem .master

  • Serial number not working with upgrade from production studio

    I have an old WinXP with the first Adobe CS Production Studio Premium that I've been using for more than six years. I recently had to reinstall my system and now I have an install error with serial number.  The Prod Studio Prem is an upgrade to the V

  • Gradient mesh tool and scribble effect

    Hi Was hoping some bright spark can help me! I am trying to apply a scribble effect to an object that is colored with a Gradient Mesh. Is this possible and if so how is it done? I can apply a scribble effect to a normal gradient but not a gradient me

  • Always On - async mode - Failover and failback check list

    Hi All, Our production is configured with Always On in Async mode with DR. We are planning to do a failover and failback on the Availability Groups in weekend. Apart from the time consuming to do a failover and failback, does anyone having complete c

  • Portal with MDM

    Hi i am going to work on the project which have the components like EP and MDM. it is going to start soon. so far i have not worked in this combination. can u tell me what are the requirments will come between EP and MDM ? how are the interactions wi