Deadlock in SAP B1 Database...On ONNM  and NNM1

What could be the problem with SAP database which causes deadlock in these two tables....
Sql server is also not releasing the memory....Can someone help me..

Kim,
2005A SP00 PL17 is the latest available for SP00.  In looking at the "Info" file that comes with PL17, I do not see between PL11 and PL17 a "Deadlock" issue addressed, however I do see "Deadlock" issues addressed in the 2005A SP01 patch level fixes.  Even in the case of SP01, I do not specifically see your issue as one corrected, but in both SP00 and SP01 patch levels, the new patches could have fixed issues that caused the issue your having inadvertently.  You can either download and try the latest PL for SP00 or contact SAP Support as Frank mentions.
Eddy

Similar Messages

  • What are the commands using in SAP ECC 6.0 ehp on SYBASE Database? Backup and restore commands?

    Hi All,
    What are the commands using in SAP ECC 6.0 ehp on SYBASE Database? Backup and restore commands?

    Hi Jayachander,
    Have a look at these sap notes:
    For taking backup: Schedule from DB13 and get the exact command from Logs
    1841993 - SYB: How to schedule backups in DBA Cockpit
    1887068 - SYB: Using external backup and restore with SAP Sybase ASE
    How to restore DB
    1611715 - SYB: How to restore a Sybase ASE database server (Windows)
    Divyanshu

  • SAP DB database username and password

    Hi!
    I'd like to connect to the SAP DB database by using the Database Manager application. The DB instance was installed with sapinst.exe and I've never got any username and password.
    What can I do?
    Thanks in advance!
    Kind regards,
    Igor Barbaric

    Hello!
    "control - control" was fine for a DBM user, but now I need an SQL user. I tried in SAPDB SQL Studio with SAP<sysid>DB and SAP<sysid> with the password entered in the installation process, but it doesn't work. In DB Manager -> Configuration -> Users I can see only default DBM users CONTROL and SUPERDBA.
    However, when the SAP system is up and running, in Information -> Sessions I can see 8 sessions of SAPDEV user. This is obviously an SQL user which SAP uses to connect to the database, but I don't know it's password.
    Is there some other default SQL user or a way to find out or change the SAPDEV's password (ofcourse, then I'd have to change it in SAP too, or otherwise it couldn't connect)?
    Thanks!
    Kind regards,
    Igor Barbaric

  • Content of SAP SQL Database and backup

    1.     The SAP database / data files store in the folder “<SID>DATA” with extension mdf, what does it store?  Does it content the structure of the database only or inclusive of the daily entry of the SAP data?
    2.     Will it be sufficient to backup the SAP SQL Database with the SQL database ONLINE for recovery purpose in case of server crash?

    Alvin Teo wrote:
    Markus,
    Thank you for your response.
    I would like to clarify further that other than the database is required to be backup, any other SAP related system file that require to be include in the backup file occasionally, like during daily or weekly backup?
    Yes - the instance directory and the Windows OS including the registry
    Apart from this, do you happen to know where can I obtain the documentation which can assist me to do hardware sizing for SAP systems?
    Usually it´s done the following way:
    - the customer creates a project under http://service.sap.com/quicksizer
    - the hardware partner takes this project and offers a machine that fits
    Markus

  • Regarding Invoice No 1003 in SAP Demo Database

    Hi
    In sap Demo Database SBODemo_US, for Invoice no 1003,
    for an item A00006 Price is given as 786.60. Choose Goto Menu and further choose Gross Profit, it displays the base price and Sales Price(770.87). How can the price be different at two places?
    If it is how it is calculated?
    Reply Soon
    Thanks
    Janakiraman

    Hi Janakiraman,
    unfortunately we don't have an upload storage here in the SDN. At this point we have two options:
    a) you could upload the screenshots to a website that provides storage and then you can paste the url to the screenshots here
    b) we can route this through our support channel. You can send a message to our support team in the <a href="http://service.sap.com/smb/sbo/support">SAP Business One Support Center</a> in our <a href="http://service.sap.com/smb/sbo">SAP PartnerEdge Portal</a>.
    Please use the method that works best for you.
    Thanks,
    Torsten

  • Q&A database for MM and PP

    Hi Experts,
    I am looking for the ASAP Q&A database for MM and PP modules. Can anyone send me the documentation please?
    Fotso

    Hello,
    Refer the below link for your reference.
    http://dev.fyicenter.com/Interview-Questions/SAP-1/What_is_SAP_.html
    http://www.esnips.com/web/ndpanchal-SAPMaterials/
    http://www.geekinterview.com/Interview-Questions/SAP-R-3/Modules
    http://www.sap-img.com/materials/common-sap-mm-questions.htm
    http://www.sap-img.com/mm015.htm
    http://www.sap-img.com/materials/sap-mm-self-test-questions.htm.
    http://www.daypo.net/test-sap-mm.html
    Regards,
    Sarthak

  • Change database name - Crystal10 and Visual Studio 2005

    <p>Hi there,</p>
    <p>
    I have about 150 crystal reports in my development environment. I need to move them into the testing environment. Every environment has its own database and every database is names '[client name]_[environment]' so I get things like client1_dev, client1_test, client1_prod, etc. The reports are very, very unhappy when moving from dev to test. I have googled this a fair bit and have attempted the stuff on:
    </p>
    http://www.codeproject.com/KB/aspnet/crystalwithaspdotnet.aspx
    <br/>
    http://www.tek-tips.com/faqs.cfm?fid=5374
    <br/>
    <p>
    and a few others and have gotten no where. I spent a couple of days working on this and am now over budget and late. I need a fix and fast.
    </p>
    <p>
    I have two ideas I have been working on and both have failed out right.<br/>
    Idea 1 - during run time:<br/>
      - loop through everything thing in sight and set the database information on it<br/>
      - that one looks like:<br/>
    <br/>
    <pre>
    using CrystalDecisions.Shared;
    using CDCRE = CrystalDecisions.CrystalReports.Engine;
    using CrystalDecisions.CrystalReports.Engine;
    using CrystalDecisions.Web;
    public abstract class ReportBase : Page
         ...snip....
        protected virtual void DoLoad(CrystalReportViewer ReportViewer)
            ReportDocument reportDocument = new ReportDocument();
            SetReportInfo(reportDocument);
            SetParameters(reportDocument);
            DumpParameters(reportDocument);
        protected virtual void SetReportInfo(ReportDocument reportDocument)<br/>
            db_Reports.Reports reportInfo = new ReportsClass();
            CriteriaID = reportInfo.InsertCriteria(CommonUtils.GetLanguagePrefix(), CurrentForm["criteria"].Trim() +
    CurrentForm["extracriteria"].Trim(), CSecuritySession.UserSessionInfo.iUserId, string.Empty, CurrentForm["param1"]);
            ADODB._Recordset rs = reportInfo.GetReportInfo(CommonUtils.GetLanguagePrefix(), ModuleName, ReportID, CSecuritySession.UserSessionInfo.iUserId);
            // report to load
            HttpContext.Current.Trace.Warn("Loading the report", rs.Fields["vReportName"].Value as string);
            reportDocument.Load(rs.Fields["vReportName"].Value as string);
            // connection info
            reportDocument.DataSourceConnections[0].SetConnection(rs.Fields["vSQLServer"].Value as string, rs.Fields["vDatabase"].Value as string, false);
            HttpContext.Current.Trace.Warn("Setting connection information",
                string.Format("Server Name:[{0}] Database Name:[{1}]", reportDocument.DataSourceConnections[0].ServerName, reportDocument.DataSourceConnections[0].DatabaseName));
            // logon info
            reportDocument.DataSourceConnections[0].SetLogon(rs.Fields["vUsername"].Value as string, rs.Fields["vPassword"].Value as string);
            HttpContext.Current.Trace.Warn("Setting Logon Information",
                string.Format("Username: [{0}] Password: [{1}]", reportDocument.DataSourceConnections[0].UserID, reportDocument.DataSourceConnections[0].Password));
            DumpConnInfo(reportDocument);
            DumpSubReportConnInfo(reportDocument);
            // reportname / page title
            ReportName = rs.Fields["vDescription"].Value as string;               
        private void DumpSubReportConnInfo(ReportDocument reportDocument)
            foreach (Section sec in reportDocument.ReportDefinition.Sections)
                foreach (ReportObject ro in sec.ReportObjects)
                    if (ro is SubreportObject)
                        SubreportObject sro = (ro as SubreportObject);
                        DumpConnInfo(sro.OpenSubreport(sro.SubreportName));
        protected virtual void DumpConnInfo(ReportDocument reportDocument)
            foreach(CDCRE.Table table in reportDocument.Database.Tables)
                Trace.Warn(string.Format("Connection info[{0}]", table.Name),
                    string.Format("database: {0} Server: {1} User ID: {2} Pwd: {3}",
                    table.LogOnInfo.ConnectionInfo.DatabaseName,
                    table.LogOnInfo.ConnectionInfo.ServerName,
                    table.LogOnInfo.ConnectionInfo.UserID,
                    table.LogOnInfo.ConnectionInfo.Password));
                foreach(NameValuePair2 nvp in table.LogOnInfo.ConnectionInfo.Attributes.Collection)
                    Trace.Warn("connection attributes", string.Format("{0} = {1}", nvp.Name, nvp.Value));
                    if (string.Compare(nvp.Name as string, "QE_LogonProperties", true) == 0)
                        DbConnectionAttributes dca = nvp.Value as DbConnectionAttributes;
                        Trace.Warn("connection attributes - QE_LogonProperties", "processing the 'QE_LogonProperties'. Is null [" + (null == dca).ToString() + "]" );                   
                        foreach (NameValuePair2 nvp1 in dca.Collection)
                            Trace.Warn("connection attributes - QE_LogonProperties", string.Format("{0} = {1}", nvp1.Name, nvp1.Value));
                Trace.Warn("----------------------");           
        protected virtual void DumpParameters(ReportDocument reportDocument)
            HttpContext.Current.Trace.Write("--------------------------");
            HttpContext.Current.Trace.Write(" Dumping Parameters ");
            HttpContext.Current.Trace.Write("--------------------------");
            for (int i = 0; i < reportDocument.ParameterFields.Count; i++)
                if (string.IsNullOrEmpty(reportDocument.ParameterFields<i>.ReportName))
                    HttpContext.Current.Trace.Write(string.Format("[{0}] {1}", i, reportDocument.ParameterFields<i>.Name), GetParamValue(reportDocument.ParameterFields<i>));
                else
                    HttpContext.Current.Trace.Warn(string.Format("SubReport Parameter [{0}] {1}", i, reportDocument.ParameterFields<i>.Name), GetParamValue(reportDocument.ParameterFields<i>));
            HttpContext.Current.Trace.Write("--------------------------");
    </pre>
    <br/>
      - this one always errors out with a can't find database type connection and spits out the old database message.<br/>
      - as you can see there is a stack of tracing in there. all of the trace messages make it look like it is hitting the right database. I have no clue why this isn't working.<br/>
    <br/>
    Idea 2 - fix up reports before moving to the other environments:<br/>
      - I figured I would write a little app that would crawl through the directories of reports and fix them up<br/>
      - I read a few examples of this online and none of them seem to work with Crystal 10. They work with some of our legacy Crystal 8 reports (I have been testing this all over the place) but not with 10.<br/>
      - the last function is the interesting one.<br/>
      - that one looks like:<br/><br/>
    <pre>
    using System;
    using System.Collections;
    using System.Collections.Generic;
    using System.Text;
    using System.IO;
    using System.Reflection;
    using System.Diagnostics;
    namespace crystal_10_switch
        public class Changer
            protected CRAXDDRT.Application app;
            protected object missing = Missing.Value;
            protected string currentFolder = string.Empty;
            protected string OdbcName;
            protected string DBName;
            protected ICollection Folders;
            public Changer(string OdbcName, string DBName, ICollection Folders)
                this.OdbcName = OdbcName;
                this.DBName = DBName;
                this.Folders = Folders;
                app = new CRAXDDRT.Application();
                string junk = Console.ReadLine();
            public virtual void Switch()
                foreach (string dir in Folders)
                    SwitchDir(dir);
            protected virtual void SwitchDir(string dir)
                DirectoryInfo di = new DirectoryInfo(dir);
                FileInfo[] files = di.GetFiles("*.rpt", SearchOption.AllDirectories);
                currentFolder = di.FullName;
                foreach (FileInfo file in files)
                    Trace.WriteLine("Processing the report: " + file.FullName);
                    Trace.Indent();               
                    SwitchFile(file);
                    Trace.Unindent();
            protected virtual void SwitchFile(FileInfo file)
                CRAXDDRT.Report rpt = app.OpenReport(file.FullName, missing);
                SwitchTable(rpt);
                SwitchSubreports(rpt);
                SaveReport(rpt, file);
            protected virtual void SwitchSubreports(CRAXDDRT.Report rpt)
                Trace.Indent();
                foreach (CRAXDDRT.Section section in rpt.Sections)
                    foreach (CRAXDDRT.IReportObject robj in section.ReportObjects)
                        if (robj is CRAXDDRT.ISubreportObject)
                            CRAXDDRT.ISubreportObject sub = (robj as CRAXDDRT.ISubreportObject);
                            Trace.WriteLine("Processing sub report: " + sub.Name);                       
                            SwitchTable(sub.OpenSubreport());                       
                Trace.Unindent();
            protected virtual void SwitchTable(CRAXDDRT.Report rpt)
                Trace.Indent();
                foreach (CRAXDDRT.IDatabaseTable table in rpt.Database.Tables)
                    Trace.WriteLine(" Processing table: " + table.Name);
                    // this one line should do it
                    (table.ConnectionProperties["Database"] as CRAXDDRT.IConnectionProperty).Value = DBName;
                    // but it didn't so try this
                    (table.ConnectionProperties["UseDSNProperties"] as CRAXDDRT.IConnectionProperty).Value = "1";
                    // read that this 'might' work
                    table.SetLogOnInfo(OdbcName, DBName, missing, missing);
                    // but it didn't so I tried this with the user anme and password set
                    table.SetLogOnInfo(OdbcName, DBName, "XXXXX", "XXXXX");
                    // read that this is requiried, but it does nothing
                    table.Name = table.Name;
                    // this causes issues - the map fields thing pops up which is way not cool
                    //table.Location = table.Name;              
                Trace.Unindent();
        }//class
    }//namespace
    </pre>
    <br/>
    At this point I really don't care which one will work the best, I am just desperate for a working solution. Any help, any at all would be greatly appreciated.<br/>
    <br/>
    Thanks<br/>
    <br/>
    -Cam<br/><br/>

    This is a typical requirement of most application and is relatively trivial to implement. There are a lot of samples and documentation on our support site (links below). Also, search these forums for code snippets that will help you. BTW., do not use the craxDDrt.dll as you are not licensed to use it.
    To look for downloads:
    https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/bobj_download/main.htm
    Articles:
    https://www.sdn.sap.com/irj/sdn/businessobjects-articles
    Notes:
    https://www.sdn.sap.com/irj/scn/advancedsearch?cat=sdn_ossnotes&query=&adv=true
    Samples:
    https://wiki.sdn.sap.com/wiki/display/BOBJ/CrystalReportsfor.NETSDK+Samples
    Dev. Library and API reference:
    http://help.sap.com/businessobject/product_guides/boexir31/en/crsdk_net_dg_12_en.chm
    http://help.sap.com/businessobject/product_guides/boexir31/en/crsdk_net_apiRef_12_en.chm
    My recommendations:
    https://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/2081b4d9-6864-2b10-f49d-918baefc7a23&overridelayout=true
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/208edbbf-671e-2b10-d7b5-9b57a832e427
    https://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/702ab443-6a64-2b10-3683-88eb1c3744bc&overridelayout=true
    Ludek
    Edited by: Ludek Uher on Jul 21, 2009 8:38 AM

  • Move pictures in Jpg from a server to SAP (Oracle database) in BLOB

    Hi SAP Friends,
    We would like to know if this is possible.
    We have pics in jpg/jpeg format in one server. We want to move these pics automatically once every hour to SAP Oracle database in BLOB format. The server has the capability to push these jpg files into BLOB format of Oracle database. We need to know if it is possible to send to SAP's Oracle database and store in BLOB format. If so, pl let us know how.
    Pl let us know.
    Niranjan

    You are facing two things here:
    a) Licensing issue
    Check Note 581312 - Oracle database: licensing restrictions:
    As of point 3, it follows that direct access to the Oracle database is only allowed for tools from the areas of system administration and monitoring. If other software is used, the following actions, among other things, are therefore forbidden at database level:
    Creating database users
    Create database objects
    Querying/changing/creating data in the database
    Using ODBC or other SAP external access methods
    This depends on the contract and where you bought which licenses for Oracle.
    b) Technical issues
    It´s not a good idea to insert data into a SAP database without using SAP tools. Even if it´s a separate table(space) or "isolated" in a SAP understanding. You never know, how upgrades behave with that table, you may see the table in sense of SAP-DDIC consistency (Table without DDIC reference) etc.
    If you want to insert JPEGs easily,  you can use transaction CSADMIN, create a repository and write a small program, that uploads the data to the database using SAP standard interfaces. This will insure DATA integrity and will make sure, the data is accessible even after database/SAP system upgrades.
    Markus

  • I want to connect SAP HANA database (Default database) using JDBC connection URL.

    I am using trial account .at sap cloud server.
    What will be my URL of SAP HANA database for Trail account.
    For ex:
    java.sql.Connection conn= java.sql.DriverManager.getConnection("jdbc:sap://<YOUR SAP HANA IP>:host","<YOUR SAP HANA USER>","<YOUR PASSWORD>");
    I had User and password but what supposed to be used in place of IP and Host ?

    Thanks .But iwant to use like this ..and below properties are not working
    repliesd as connectin refused -813
    please help onthis
    <bean id="dataSource"
          class="org.springframework.jdbc.datasource.DriverManagerDataSource">
          <property name="driverClassName" value="com.sap.db.jdbc.Driver"/>
          <property name="url" value="jdbc:sap://localhost:30015/?currrentschema=TestSchema" />
          <property name="username" value="p1940828544"/>
          <property name="password" value="[email protected]"/>
       </bean>

  • Difference between SAP ECC IDES 6.0 and SAP NetWeaver?

    Hello everyone!
    I am a bit confused since I am also new to SAP world, so I would to ask you, we have a SAP IDES ECC 6.0 in our server here to our company, I was trying to see a little of SAPUI5 and in a tutorial a guy was using SAP NetWeaver Visual Composer.
    1- But, what's the difference between the SAP IDES ECC 6.0 and SAP NetWeaver?
    2- What are the other parts I am missing? Are there any other IDES or such a thing around those terms?
    3- How can I get installed SAP NetWeaver?
    4- I have also got some info about SAP ERP, SAP CRM, SAP MM, SAP BW.. And those?
    5- What are they in term of software/patch/ide/plugin/addon... ?
    Please, I really need an overview in order to make all the things clear in my mind,
    Thank you!
    Denis

    Hi Denis,
    SAP is a big umbrella where lot of products are developed and made to use in various industry solution like Engineering, Chemical, Retail, Oil & Gas. I used the term Solution to relate SAP application to these solutions.
    SAP NW is comprised of following components SAP_BASIS, SAP_ABA, PI_BASIS and SAP_BW. In totality we refer this as NW stack.
    SAP application will have underlying database like Oracle, DB2, MSSQL or MaxDB where actual business data is stored.
    Please check link Products | SAP to have more insight of SAP products ,services and offerings.
    Hope this helps.
    Regards,
    Deepak Kori

  • Can not start instance SAP - ABAP Database is not available via R3trans

    Dear all !
    My OS : Linux RHEL 4U7 32bit
    Oracle 10G R2 32bit 10.2.0.2
    when system running but  power off suddenly
    and when power on ->
    i am having problem as below when i start instance SAP (Databse Oracle Started)
    Step 1 : I login user (ora<sid>) of Oracel to start up database
    Database startup -> OK
    then i tried to shutdown database -> OK too
    and start up again -> OK
    Query -> OK
    I think Database do not problem
    Step 2: start listener -> OK
    Step 3: i login user (<sid>adm) and startup instance SAP (command : startsap r3) with error:
    Checking SED Database
    ABAP Database is not available via R3trans
    Starting SAP-Collector Daemon
    11:11:48 10.02.2010   LOG: Effective User Id is root
    This is Saposcol Version COLL 20.90 700 - Intel x86 with Linux, PL:75, Aug 29 2006
    Usage:  saposcol -l: Start OS Collector
            saposcol -k: Stop  OS Collector
            saposcol -d: OS Collector Dialog Mode
            saposcol -s: OS Collector Status
    The OS Collector (PID 6870) is already running .....
    saposcol already running
    ABAP Database SED must be started first
    Please help me to resolve this problem
    Thanks for your advice

    Dear all !
    1. output of tnsping SED :
    TNS Ping Utility for Linux: Version 10.2.0.2.0 - Production on 11-FEB-2010 13:51:24
    Copyright (c) 1997, 2005, Oracle.  All rights reserved.
    Used parameter files:
    /oracle/SED/102_32/network/admin/sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (COMMUNITY = SAP.WORLD)(PROTOCOL = TCP)(HOST = sapsed)(PORT = 1527))) (CONNECT_DATA = (SID = SED) (GLOBAL_NAME = SED.WORLD)))
    OK (0 msec)
    2. output startsap_.log
    Checking SED Database
    ABAP Database is not available via R3trans
    Starting SAP-Collector Daemon
    saposcol already running
    ABAP Database SED must be started first
    ---> output above repeats many
    3. output trans.log
    4 ETW000 R3trans version 6.14 (release 700 - 18.09.06 - 09:35:00).
    4 ETW000 unicode enabled version
    4 ETW000 ===============================================
    4 ETW000
    4 ETW000 date&time   : 11.02.2010 - 13:49:36
    4 ETW000 control file: <no ctrlfile>
    4 ETW000 R3trans was called as follows: R3trans -d
    4 ETW000  trace at level 2 opened for a given file pointer
    4 ETW000  [dev trc     ,00000]  Thu Feb 11 13:49:36 2010                             159  0.000159
    4 ETW000  [dev trc     ,00000]  db_con_init called                                    27  0.000186
    4 ETW000  [dev trc     ,00000]  create_con (con_name=R/3)                             55  0.000241
    4 ETW000  [dev trc     ,00000]  Loading DB library '/usr/sap/SED/SYS/exe/run/dboraslib.so' ...
    4 ETW000                                                                              63  0.000304
    4 ETW000  [dev trc     ,00000]  load shared library (/usr/sap/SED/SYS/exe/run/dboraslib.so), hdl 0
    4 ETW000                                                                           16430  0.016734
    4 ETW000  [dev trc     ,00000]  Library '/usr/sap/SED/SYS/exe/run/dboraslib.so' loaded
    4 ETW000                                                                              56  0.016790
    4 ETW000  [dev trc     ,00000]  function DbSlExpFuns loaded from library /usr/sap/SED/SYS/exe/run/dboraslib.so
    4 ETW000                                                                              41  0.016831
    4 ETW000  [dev trc     ,00000]  Version of '/usr/sap/SED/SYS/exe/run/dboraslib.so' is "700.08", patchlevel (0.73)
    4 ETW000                                                                              94  0.016925
    4 ETW000  [dev trc     ,00000]  function dsql_db_init loaded from library /usr/sap/SED/SYS/exe/run/dboraslib.so
    4 ETW000                                                                              38  0.016963
    4 ETW000  [dev trc     ,00000]  function dbdd_exp_funs loaded from library /usr/sap/SED/SYS/exe/run/dboraslib.so
    4 ETW000                                                                              68  0.017031
    4 ETW000  [dev trc     ,00000]  New connection 0 created                              44  0.017075
    4 ETW000  [dev trc     ,00000]  0: name = R/3, con_id = -000000001 state = DISCONNECTED, perm = YES, reco = NO , timeout = 000, con_max = 255, con_opt = 255, occ = NO
    4 ETW000                                                                              46  0.017121
    4 ETW000  [dev trc     ,00000]  db_con_connect (con_name=R/3)                         38  0.017159
    4 ETW000  [dev trc     ,00000]  find_con_by_name found the following connection for reuse:
    4 ETW000                                                                              37  0.017196
    4 ETW000  [dev trc     ,00000]  0: name = R/3, con_id = 000000000 state = DISCONNECTED, perm = YES, reco = NO , timeout = 000, con_max = 255, con_opt = 255, occ = NO
    4 ETW000                                                                              39  0.017235
    4 ETW000  [dev trc     ,00000]  Oracle Client Version: '10.2.0.2.0'                  480  0.017715
    4 ETW000  [dev trc     ,00000]  -->oci_initialize (con_hdl=0)                         42  0.017757
    4 ETW000  [dev trc     ,00000]  Client NLS settings: AMERICAN_AMERICA.UTF8          3789  0.021546
    4 ETW000  [dev trc     ,00000]  Logon as OPS$-user to get SAPSR3's password           48  0.021594
    4 ETW000  [dev trc     ,00000]  Connecting as /@SED on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    4 ETW000                                                                              51  0.021645
    4 ETW000  [dev trc     ,00000]  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    4 ETW000                                                                              43  0.021688
    4 ETW000  [dev trc     ,00000]    0 UTF8                                                      1  0x9511ea0  0x951750c  0x9516d94
    4 ETW000                                                                              40  0.021728
    4 ETW000  [dev trc     ,00000]  Allocating service context handle for con_hdl=0       40  0.021768
    4 ETW000  [dev trc     ,00000]  Allocating server context handle                      52  0.021820
    4 ETW000  [dev trc     ,00000]  Attaching to DB Server SED (con_hdl=0,svchp=0x9516d20,svrhp=0x9528504)
    4 ETW000                                                                              88  0.021908
    4 ETW000  [dboci.c     ,00000]  *** ERROR => OCI-call 'OCIServerAttach' failed: rc = 12505
    4 ETW000                                                                            4712  0.026620
    4 ETW000  [dbsloci.    ,00000]  *** ERROR => CONNECT failed with sql error '12505'
    4 ETW000                                                                              49  0.026669
    4 ETW000  [dev trc     ,00000]  Try to connect with default password                  62  0.026731
    4 ETW000  [dev trc     ,00000]  Connecting as SAPSR3/<pwd>@SED on connection 0 (nls_hdl 0) ... (dbsl 700 110706)
    4 ETW000                                                                              39  0.026770
    4 ETW000  [dev trc     ,00000]  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    4 ETW000                                                                              56  0.026826
    4 ETW000  [dev trc     ,00000]    0 UTF8                                                      1  0x9511ea0  0x951750c  0x9516d94
    4 ETW000                                                                              47  0.026873
    4 ETW000  [dev trc     ,00000]  server_detach(con_hdl=0,stale=0,svrhp=0x9528504)
    4 ETW000                                                                              37  0.026910
    4 ETW000  [dev trc     ,00000]  Detaching from DB Server (con_hdl=0,svchp=0x9516d20,srvhp=0x9528504)
    4 ETW000                                                                              37  0.026947
    4 ETW000  [dev trc     ,00000]  Deallocating server context handle 0x9528504          45  0.026992
    4 ETW000  [dev trc     ,00000]  Allocating server context handle                      48  0.027040
    4 ETW000  [dev trc     ,00000]  Attaching to DB Server SED (con_hdl=0,svchp=0x9516d20,svrhp=0x9528504)
    4 ETW000                                                                              60  0.027100
    4 ETW000  [dboci.c     ,00000]  *** ERROR => OCI-call 'OCIServerAttach' failed: rc = 12505
    4 ETW000                                                                            1538  0.028638
    4 ETW000  [dbsloci.    ,00000]  *** ERROR => CONNECT failed with sql error '12505'
    4 ETW000                                                                              41  0.028679
    4 ETW000  [dblink      ,00431]  ***LOG BY2=>sql error 12505  performing CON [dblink#3 @ 431]
    4 ETW000                                                                             131  0.028810
    4 ETW000  [dblink      ,00431]  ***LOG BY0=>ORA-12505: TNS:listener does not currently know of SID given in connect descriptor [dblink#3 @ 431]
    4 ETW000                                                                              39  0.028849
    2EETW169 no connect possible: "DBMS = ORACLE                           --- dbs_ora_tnsname = 'SED'"
    thansk for your help
    Edited by: myfriend280985 on Feb 11, 2010 7:53 AM

  • Cannot start widget - Ensure that SAP Business One Integration Service and SAP Business One Event Sender Service have been started

    Dear Experts .
    I'm trying to enable widget for my company db but getting the following error :
    Ensure that SAP Business One Integration Service and SAP Business One Event Sender Service have been started; then wait 1 minute and try again
    I can connect to the B1iF locally and remotely .
    I have the db configured in the SLD and connects successfully .
    I have the event sender service and proxy started and configured for the company db.
    I can access the Dashboard web portal and login with database sap credentials (but I see nothing there)
    I've checked that there are no duplicate entries in the SSLD table for SBO common (note : 1619422)
    I've also tried to re-activate the xelcious from the B1iF->control.
    My Setup :
    I'm runing SBO server, B1iF installed locally and B1iSN installed on a 3rd party server.
    I'm using B1iF as even forwarder for B1iSN.
    I know this has been discussed many times through out the forum and I've tried most of the stuff other than clean install.
    I would appreciate any input before removing B1iF completely and re-installing.
    Thanks in advance ,
    Nadav.

    Hi,
    The problem is SAP 8.81 PL04, with PL05 or PL06, it is solutioned.
    Thanks,

  • Recover database with datafile and logfile

    Hi Export,
    we have one maxdb database. For some reasons, we have no backup and lost the programs binaries. Is it possble to recover the database with datafile and logfile? and how?
    thanks a lot.
    Rongfeng

    Hello Rongfeng,
    1. Please see document u201CHowTo - Creating a clone of a SAP MaxDB databaseu201D at
    http://wiki.sdn.sap.com/wiki/display/MaxDB/SAPMaxDBHowTo
    and review the section u201CCreating a clone manually via reusing volumes and parameters.u201D
    2. You wrote, that you u201Clost all dba passwords.u201D
    Please review the SAP note 25591. This note also has the brief description of the database user types.
    You are SAP customer, I recommend you to create the SAP message to the component u201CBC-DB-SDBu201D to clarify more details about the problem & find solution for you.
    Thank you and best regards, Natalia Khlopina

  • SAP NW7.1 with 10g and Netapp SAN on VM-Ware

    Hello together,
    I want to install several NW CE 7.1 Installations with an 10g Oracle DB on Windows Server 2003.
    Now, our admins talk about the Windows Hard Disk Drives like C: or D:
    Some admins want to implement different hard disk drives (like c: and d: etc.)  to the windows server 2003 to optimize the disk access, even if the server is connected to a netapp NAS. They say the the Windows 2003 server optimizes the disk access if more then one disk drive is configured.
    Some other solution architects says, that this is not necessary, because the C: partition an D: partition and e:partition is not on  a real hard disk, but on a SAN connection. It will be ok, if you define a c:partition with windows and a d:partition with oracle and sap on it, because the SAN is so fast that you must not seperate the disk load.
    How do you configure your Systems with oracle ?
    best rgards,
    Carsten Schulz

    Hi,
    I would do the mixing of Local Storage + SAN Storage for the same to have optimal file distributions.
    Along with the suggested partition layout by Eric (as well as by SAP and Oracle) , I would add the additional stripped partition on the local Hard-disk of the Box, which will be specially used for Paging activity (Virtual Memory).
    It is good to distribute all the suggested files (of different purpose) on different disks using RAID levels to deal with Data loss situation as well as to achieve higher I/O performance.
    Also the RAID levels play an important role here. Storage Partition with RAID-5 level is recommended for Storing the SAP Data files (Oracle Database files).  I am preferring RAID-0 level for OS executable and for SAP Executable (sapmnt) on local Hard-disks (or on SAN storage LUNs).
    *Origlogs and Mirrlogs files * are very sensitive & important files (online redo log files) which contains all committed+non-committed transaction entries and which are required to deal with Instance Recovery. So they are required to store at different locations to deal with any unexpected File loss/corruption situation whenever demanded in future.
    Along with the other files, the mirroring of Control files are also recommended on separate Disks location. A control file is very necessary file for the database to start and operate successfully.
    Separate location for storing Offline redo-log files (ORAARCH) is recommended to deal with Media recovery which is required in performing Complete/Point-in-time Database recovery.
    Regards,
    Bhavik G. Shroff

  • What to share on SAP Hanna database server for application instance

    Hello
    I wander what do I have to share on my SAP Hanna database server (installed via SAP_HANA_Server_Installation_Guide_en.pdf). for an application server installation.
    Here it seems we have a little bit different situation than with a classical database. We have
    we do not have "sapmnt". Should we create it and mount it on application server. I guess /usr/sap/trans should also be created.
    Is there something more?
    Let say db instance is DB1
    Thank you in advance
    Jan

    Hello Jan,
    which kind of application server do you want to install on top of HANA?
    I think what the figure shows is a distributed DB system.
    BR,
    Phoebe

Maybe you are looking for

  • Multiple Date Keys in a Fact Table

    Do you guys see a problem with having multiple date keys (all date keys are referencing one date demension table) on a fact table? RESERVATION_DATE_KEY SHIP_DATE_KEY CONTRACT_DATE_KEY SHIP_DATE_KEY CANCEL_DATE_KEY APPLICANT_KEY BRANCH_KEY ENLST_CAT_K

  • Restore iPhone backup from somewhere else?

    I'm using iTunes on my Macbook Air to access my iPhone. I have created a backup from my iPhone in there. I was wondering how it is possible to restore that backup from any other Mac computers, like my iMac at home?

  • Is there a way to move contacts from Microsoft Outlook to iphone 4s?

    Is there a way to copy and/or sync contacts from Microsoft Outlook to an iPhone 4s?

  • Weird issues between iPhone Camera Roll and iPhoto?!?!?

    I just noticed when opening Photos and then my Camera Roll of pics taken with my 3G that there is a large black irregular shape area covering the top 2 rows of pics and part of the third row as well. I have exited and returned to the app, shut down a

  • Inner join inside a internal table loop

    Hello to all, I have this internal table in which i have selected some records for particular coulms. For  the rest of the colums i need to join 3 tables for the data. I had in mind, of looping the internal table and then having a inner join query an