Midp + sqlserver connection

i have build midp application which (suppose) can connect to the database(sql2k). i have tried this in servlet and its working perfectly in pc browser, but when i wanna connect with the midlet, it doesnt work. suppose i want the result of my query is working as it in the normal pc browser... here is the script:
-for midp:
import java.io.*;
import javax.microedition.io.*;
import javax.microedition.lcdui.*;
import javax.microedition.midlet.*;
public class test
extends MIDlet
implements CommandListener {
private Display mDisplay;
private Form mMainForm,SearchResult;
private StringItem mMessageItem;
private Command mExitCommand, mConnectCommand;
private TextField TfSearch;
public test() {
mMainForm = new Form("HitMIDlet");
TfSearch = new TextField(" Search ","",25,TextField.ANY);
mMainForm.append(TfSearch);
mMessageItem = new StringItem(null, "");
mExitCommand = new Command("Exit", Command.EXIT, 0);
mConnectCommand = new Command("Connect",Command.SCREEN, 0);
mMainForm.append(mMessageItem);
mMainForm.addCommand(mExitCommand);
mMainForm.addCommand(mConnectCommand);
mMainForm.setCommandListener(this);
public void startApp() {
mDisplay = Display.getDisplay(this);
mDisplay.setCurrent(mMainForm);
public void pauseApp() {}
public void destroyApp(boolean unconditional) {}
public void commandAction(Command c, Displayable s) {
if (c == mExitCommand)
notifyDestroyed();
else if (c == mConnectCommand) {
Alert a = new Alert( "Result" );
a.setString(""+ TfSearch.getString());
a.setTimeout( Alert.FOREVER );
mDisplay.setCurrent (a);
-for servlet:
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
import java.sql.*;
public class test extends HttpServlet{
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws IOException, ServletException
try
Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
String user = "sa";
String pass = "";
String cUrl = "jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=test";
Connection conn = DriverManager.getConnection (cUrl, user, pass);
String sName= request.getParameter("tfSearch");
String sQuery = "select "+sName+" from Table1 ";
Statement stmt = conn.createStatement();
ResultSet rs = stmt.executeQuery(sQuery);
if (rs != null)
PrintWriter out = response.getWriter();
while(rs.next())
out.println("result :"+rs.getString(sName));
response.flushBuffer();
stmt.close();
conn.close();
} catch(Exception e){
response.setContentType("text/html");
PrintWriter out = response.getWriter();
out.println("Error: "+e);
any kind of help were very appreciated... thanks before guys....

To the author who initiated this thread -
Iam trying to solve a problem (perhaps very silly for about a week and I have a feelin after seeing your code that you can help)
Iam developing a small j2me app (using j2me wireless tooklit), i have installed jdk1.4.2. In the application when i use
import java.sql.*;
the wireless tooklit build says "package java.sql" not found.
I will really appreciate your help in this regard.

Similar Messages

  • SQLServer connection in Connection Navigator doesn't display any tables ...

    I connect to a SQLServer DB using the steps described in the help and I can query tables just fine, but when I click on the Tables or Views, I see nothing.
    I can start up a SQL worksheet and get data from the database just fine.
    I can also connect using the JDBC/ODBC driver and see the tables just fine.
    My connection string looks like:
    jdbc:microsoft:sqlserver://credent.hsys.local:1433;databasename=echo_test
    Is this a bug in 10.1.3 of JDev?

    I'm using the SQL Server 2000 Service Pack 3 version 2.2.0040
    . I haven't tried the 2005 beta.
    I am setting up the connection using 'Third Party JDBC Driver'. If I change the connection information to use the JDBC-ODBC bridge instead of the SQL Server JDBC driver, I see the tables.
    Here's the steps:
    1) create a new connection using the connection wizard.
    2) Name the connection Echo_test and choose Third party JDBC driver
    3) put in the username and password
    4) Create a new driver class for SQL server com.microsoft.jdbc.sqlserver.SQLServerDriver
    5) Use that connection and put in the URL jdbc:microsoft:sqlserver://credent.hsys.local:1433;databasename=echo_test
    6) Test the connection and finish.
    7) go to the connection navigator Database node, and expand "Echo_test"
    8) go to the dbo schema node and expand that.
    9) go to the Tables node and try to expand that - no tables show (although there is a delay as if a query is being run).
    10) try the same thing with the Views node - same results.
    Next I changed the connection to use the JDBC-ODBC driver by changing the driver & connection:
    1) Add a new driver class sun.jdbc.odbc.JdbcOdbcDriver
    2) use that class and change the URL to jdbc:odbc:echo_test
    3) Go back to the connection navigator and expand "Echo_test" (no schemas display).
    4) change the filter to include the dbo schema
    5) Now when I expand the dbo/Tables, I see all the tables.

  • Powershell SQLServer Connect via New-PSDrive

    Hello,
    I try to connect to a local SQL Database running SQLServer 2012.
    I can not connect with my local account, but have to use a dedicated account.
    I tried the following:
    Import-Module SQLPS -DisableNameChecking
    PS SQLSERVER:\> $cred = Get-Credential
    PS SQLSERVER:\> New-PSDrive sqldrive -PSProvider SqlServer -Root SQLSERVER:\SQL\DB01-LT\DEFAULT -Credential $cred
    Name           Used (GB)     Free (GB) Provider      Root                                               CurrentLocation
    sqldrive                               SqlServer     SQLSERVER:\SQL\DB01-LT\DEFAULT+sa
    ($cred is valid, of cause)
    For me, everything seems good, but if I try to browse the psdrive I get an error.
    PS SQLSERVER:\> dir sqldrive
    Get-ChildItem : Cannot retrieve the dynamic parameters for the cmdlet. SQL Server PowerShell provider error: Path SQLSE
    RVER:\sqldrive does not exist. Please specify a valid path.
    At line:1 char:4
    + dir <<<< sqldrive
    + CategoryInfo : InvalidArgument: (:) [Get-ChildItem], ParameterBindingException
    + FullyQualifiedErrorId : GetDynamicParametersException,Microsoft.PowerShell.Commands.GetChildItemCommand
    Does anyone can give me a hint, why this is not working.
    I searched the Internet and found a lot of examples using exactly this commands.
    Thank you very much in advance.
    BR
    Matthias

    Hi Matthias,
    I'm confused why the root path has been changed to "SQLSERVER:\SQL\DB01-LT\DEFAULT+\sa", please try to copy and paste the script I posted.
    For more detailed information about sql PSdriver, please follow this article:
    Weekend Scripter: Use PowerShell to Work with SQL Server 2012 Database Objects
    If there is anything else regarding this issue, please feel free to post back.
    If you have any feedback
    on our support, please click here.
    Best Regards,
    Anna
    TechNet Community Support

  • Sqlserver connection in odi fetches no tables in reverse engineering

    Hi,
    I have created successfully sqlserver(2005) connection using odi. however, when i reverse engineered ..i do not see any tables..any idea why?
    Thanks
    Venkat

    I figured out..i need to specify the username and password.

  • JDBC SqlServer connection problem

    Hi,
    I'm trying to connect to a local Sql Server database. I started out connecting to a database on another computer on the network by using the following code:
    //Set up connection to database
    String driverName = "com.microsoft.jdbc.sqlserver.SQLServerDriver";
    String serverName = "10.42.8.102";
    String portNumber = "1433";
    String mydatabase = serverName + ":" + portNumber;
    String databaseName = "traffic";
    String url = "jdbc:microsoft:sqlserver://" + mydatabase +";databaseName="+databaseName+";";
    String username = "sa";
    String password = "foobar";
    // Load the JDBC driver
    Class.forName(driverName);
    // Create a connection to the database
    connection = DriverManager.getConnection(url, username, password);
    This worked fine. However, when I started trying to connect to a database on my own computer, I started having problems. The database I'm trying to connect to is listed under the node "TERRAIN\BEATTHETRAFFIC" in SqlServer's Enterprise Manager. The database name is still traffic, and the user name and password are unchanged. My new code is as follows:
    String driverName = "com.microsoft.jdbc.sqlserver.SQLServerDriver";
    String serverName = "localhost/TERRAIN/BEATTHETRAFFIC";
    String portNumber = "1433";
    String mydatabase = serverName + ":" + portNumber;
    String databaseName = "traffic";
    String url = "jdbc:microsoft:sqlserver://" + mydatabase +";databaseName="+databaseName+";";
    String username = "sa";
    String password = "foobar";
    // Load the JDBC driver
    Class.forName(driverName);
    // Create a connection to the database
    connection = DriverManager.getConnection(url, username, password);
    I have also tried the following as the serverName:
    "TERRAIN\\BEATTHETRAFFIC"
    "localhost/TERRAIN\\BEATTHETRAFFIC"
    "127.0.0.1/TERRAIN\\BEATTHETRAFFIC"
    I have tried the above with / instead of \\ as well.
    With these, I get the error:
    [Microsoft][SQLServer 2000 Driver for JDBC]Error establishing socket.
    I have also tried doing
    "localhost:TERRAIN\\BEATTHETRAFFIC" and
    "localhost:TERRAIN/BEATTHETRAFFIC" and used 127.0.0.1 instead of "localhost" as well.
    but with these I get
    [Microsoft][SQLServer 2000 Driver for JDBC]Unable to connect. Invalid URL.
    I'm honestly at my wits' end here. I haven't really tried to connect to a Sql Server database before, and haven't done much work with connecting to databases in general, so maybe I'm making some glaringly obvious mistake, so if anyone could point it out, I'd be very grateful.

    For the value of serverName, you need to use an Internet-style host name, or an IP-address, not a Windows resource name.
    Examples of an internet-style host name are:
    this_host
    this_host.my_company.com
    Names with slashes in them are not Internet-style.
    The requirement is that name be something that your operating system can convert to an IP address. At least on newer versions of Windows (and most versions of Unix/Linux) you can find out the host name, with the "hostname" command. On windows:
    Click the Start button.
    Click the Run... link
    Enter "cmd" into the command line and click OK ( a new command window will open)
    In the new command window, enter "hostname" and hit enter. The system will give you the host name you need to use (upper/lower case does not matter).
    To confirm that the name ought to work, in that still-open command window, enter "ping [whatever the host name is]". You should get about 10 lines back that includes 4 lines that begin with "Reply from [your IP address] ..."

  • OWB-SQLSERVER connectivity - critical

    Guys,
    I have few doubts... Please clarify.
    The details are -
    Scenarion 1:
    OWB server & Oracle serever - machine 1 (windows)
    Sql server - machine 2 (windows)
    I am able create a DB link thru OWB.... I can import SQL tables into OWB.
    This is working fine.
    Scenario 2:
    1) Sqlserver is on windows (always)
    2) Our Oracle is on Unix
    3) Our OWB is on Unix.
    Questions:
    a) I am not sure how easy it is to add odbc to OWB in Unix. Is it available in the original installation distribution media on Unix?
    b) Don't we need a listener running on each Sqlserver database server, so sqlnet knows to talk to other environments (sqlserver)?
    c) In OWB if we want create one source module for other database, ODBC driver is required?? In unix we cannot find any ODBC driver by default.
    Separately we need to insatll it.
    From what I have read, it seems for Oracle to talk to Windows sqlserver, that a listener needs to be running on windows, which means that Oracle sqlnet client tools is not enough. (We have 10.2 installed on a few machines, but I don't see that you can start a listener, so I expect we will need to
    install and support running Oracle server software no database), on the same server that is running sqlserver.
    Please clarify the above questions.
    Also i am planing to set up a connection between Oracle - SQL thru OWB. Please find the below steps and let me know if am wrong -
    1) Sqlserver is on windows (always)
    2) Our Oracle is on Unix
    3) Our OWB is on Unix.
    a. Create a DSN in windows where Sql serevr installed.
    b. Modify initSID.ora file(HS folder) in Unix.
    c. Modify listener.ora file in Unix where oracle installed
    d. Modify tns.ora.
    Now in the above steps i have few doubts...
    1) How the listener will pick the DSN of windows... Do we need to specify host to sql server ip (machine)???
    2) For this any ODBC is required in Unix??
    3) Do we need to install listener in windows where sqlserver installed & point host name of tns.ora(unix) to this ip(sql server).
    clarify the above steps...
    Thanks in advance.
    Harsha

    Hey thanks man...
    It helped a lot....
    But u know one thing i followed the same method in windows...
    Details are:
    machine1: Oracle & OWB (on windows)
    machine2: SQL server ( on windows)
    I am creating source module in OWB for non oracle database and giving host name as machine2 ip.
    here the tns name on machine 1 is no need to change and i am directly connecting to machin2 and able to import SQL tables..
    So here my question is how it is able to connect to machine 2 without changing anything in tnsname.ora file on machine1.
    So can i follow this method in unix, like no need to touch anything in UNIX not even tns file.
    Thanks
    Harsha

  • Transparent gateway to Sql Server losing the "\" in the SqlServer Connect s

    HS_FDS_CONNECT_INFO="Sql2k5-Stats/SQL2K5-STATS\SQL2K5STATS/AZDPS"
    No matter what we [inc Oracle support] put in here, somewhere it gets removed before it hits Sql Server
    it gets turned into Sql2k5-Stats\SQL2K5-STATSSQL2K5STATS and sqlplus barfs an error about not being able to connect to remote and that is because the "\" has been removed.
    Have tried numerous combinations for HS_FDS_CONNECT_INFO
    Any ideas out there ?
    Edited by: IanSparkes on Jun 23, 2009 12:01 PM

    When connecting to SQL Server instances, you can define a SQL Server alias using the MS Client Configuration Tool or you can use two back slashes:
    HS_FDS_CONNECT_INFO="SQLSERVER\\instance2.Northwind"
    or using the SERVER and DATABASE naming convention:
    HS_FDS_CONNECT_INFO="SERVER=<SERVER NAME>\\<INSTANCE NAME>;DATABASE=<DATABASE>"

  • Bug?Click on INDEX of sqlserver connections

    Hello,I met a strange question,my sql developer version is EA2.
    I established a connection of Sqlserver,but when I click Indexes of my sqlserver connetion,an error msgbox pops up,and shows me such error message "An error was encountered performing the requested operation: Invalid object name 'sys.indexes' . Vendor code 208".
    It seems that the dot of "sys.indexes" should be get rid of.
    And I click the "Logins",similar error occurs,and it show "sys.server_principals".
    To click "Rules" shows "sys.objects".
    To click "Synoyms" show "schema_id is not a recognized function name.Vendor code 195".
    And other errors are just like above two.
    But when I use the former 1.2 version,no errors.
    My oracle is oracle 9.0.2.1,and Sqlserver is 2000.
    How do I solve the problems?
    Thank you!

    Hi <user622179>,
    I have replicated your issue and logged a bug to track the issue
    6860562: EA2F :SQL SERVER 2000 BROWSING NOT ALL WORKING
    Ill look into this issue.
    Thanks for the feedback,
    Dermot.

  • SqlServer Connect Problem

    Hello, Sorry for my english. I don�t speak english, I speak spanish.
    well,
    I download from Microsoft site, the jdbc for SqlServer. and
    I have a little problem:
    my script is:
    Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
    Connection connection = DriverManager.getConnection ("jdbc:microsoft:sqlserver://ga0517:1433;databasename='JMessenger';user='nn';password='xxx'");
    and when I execute this script, I have the next error:
    An error occured in the bean. Error Message is: [Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]Error de inicio de sesi�n del usuario ''nn''. Motivo: no est� asociado a una conexi�n de SQL Server de confianza.
    this is the stacktrace:........
    at java.sql.DriverManager.getConnection(DriverManager.java:533)
    at java.sql.DriverManager.getConnection(DriverManager.java:199)
    at _0002fconexionSQLServer_0002ejspconexionSQLServer_jsp_4._jspService(_0002fconexionSQLServer_0002ejspconexionSQLServer_jsp_4.java:65)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:119)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:177)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:318)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:391)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.tomcat.core.ServletWrapper.doService(ServletWrapper.java:404)
    at org.apache.tomcat.core.Handler.service(Handler.java:286)
    at org.apache.tomcat.core.ServletWrapper.service(ServletWrapper.java:372)
    at org.apache.tomcat.core.ContextManager.internalService(ContextManager.java:797)
    at org.apache.tomcat.core.ContextManager.service(ContextManager.java:743)
    at org.apache.tomcat.service.http.HttpConnectionHandler.processConnection(HttpConnectionHandler.java:210)
    at org.apache.tomcat.service.TcpWorkerThread.runIt(PoolTcpEndpoint.java:416)
    at org.apache.tomcat.util.ThreadPool$ControlRunnable.run(ThreadPool.java:498)
    at java.lang.Thread.run(Thread.java:484)
    Please can someone helpme ?????

    your traslation is correct, but I can�t resolve my problem.
    I read that you send me, and nothing, I can�t resolve it.
    I tell you, I work with JBuilder 5.0, and in the DataBase Pilot in the Tool option of the menu, I try to connect with my DataBase, but I can't.
    in this instance, the Jbuilder tell me:
    "The driver: com.microsoft.jdbc.sqlserver.SQLServerDriver could not be loaded. This could be a problem with the driver itself, or that the driver is not found on the classpath."
    I don't understand nothing, why?? because, when I wrote my scritp, this driver was found it (encontrado).
    my sqlServer, is set to Windows and SqlServer authentification... but I can't connect to it.
    Can you Help me??? again, Thank for your time.!!!!!!!

  • Ms SqlServer connection: where is the database?

    I'm connecting to MS SQL 2000 with a user that is owner of the database i want to convert into oracle. The connection is OK, but when i connect i cannot see the database and its tables. The same if i connect with user "sa".
    Can anybody help me?

    Hi,
    I'm not sure where the problem is, I think it is more how SQL Server is implemented, whenever we look for tables they always appear under the 'dbo' schema regardless of who created them. All that JDeveloper does is query the Database metadata.
    Regards,
    Lisa

  • SQLServer connection refused - What´s problem ?

    Please help me !

    You need to provide more detail if you want someone to help you.
    Connection refused generally means that there is nothing listening on the port you are trying to connect to.

  • Oracle 2 SQLSERVER Connectivity

    Hi there,
    I am using Oracle 9iR2 and trying to connect it with SQL Server. I used HS for this purpose. Initially I was able to set the connection and every thing was working fine. After a little while, I received following error in my alert log file,
    Unable to establish RPC connection to an HS agent.
    Please suggest.
    regards.

    Unable to establish RPC connection to an HS agent.There should be other information with that line. Can you provide it please?
    Other things to check:
    1. Can you connect to the SQL Server with an SQL Server client?
    2. Have you tried setting the trace level to generate a trace to find where there error is taking place?

  • SQLServer - Connection Reset by Peer

    We recently swapped out one of their SQL Server boxes which WAS a
    SQL Server 7 (Build 6xx) on NT4. The new one is SQL Server 7 (Build
    9xx) on Win2K SP2. ODBC seems to work fine, but JDBC gets the
    following intermittent errors under load:
    weblogic.jdbcbase.mssqlserver4.TdsException: I/O exception while
    talking to the server, java.net.SocketException: Connection reset by
    peer: JVM_recv in socket input stream read
    The only other difference is the old SQL Server box was actually 2
    boxes clustered, and the new box is stand-alone.
    Any ideas on how to fix this problem greatly appreciated!

    Ryan Powers wrote:
    >
    We recently swapped out one of their SQL Server boxes which WAS a
    SQL Server 7 (Build 6xx) on NT4. The new one is SQL Server 7 (Build
    9xx) on Win2K SP2. ODBC seems to work fine, but JDBC gets the
    following intermittent errors under load:
    weblogic.jdbcbase.mssqlserver4.TdsException: I/O exception while
    talking to the server, java.net.SocketException: Connection reset by
    peer: JVM_recv in socket input stream read
    The only other difference is the old SQL Server box was actually 2
    boxes clustered, and the new box is stand-alone.
    Any ideas on how to fix this problem greatly appreciated!If knowing which end the problem is helps, then I can do that...
    This message is just the driver telling you that the DBMS/network
    has unexpectedly killed the socket the driver was using to talk to
    the DBMS.
    Joe

  • SQLServerAgent could not be started (reason: Unable to connect to server '(local)'; SQLServerAgent

    Dear all,
    i have a Windows 2008 Server (X64) with SQL 2005 SP3 and some troubels...
    The SQL works since some week, this week we installed SQL SP3 and change of the local Admin password.
    Yesterday we reboot  the Server, now the SQL Server Agent is unable to start!
    The SQL Server is up and running,
    Errorlog:
    2009-11-06 09:49:52.56 Server      Microsoft SQL Server 2005 - 9.00.4035.00 (X64)
     Nov 24 2008 16:17:31
     Copyright (c) 1988-2005 Microsoft Corporation
     Standard Edition (64-bit) on Windows NT 6.0 (Build 6002: Service Pack 2)
    2009-11-06 09:49:52.56 Server      (c) 2005 Microsoft Corporation.
    2009-11-06 09:49:52.56 Server      All rights reserved.
    2009-11-06 09:49:52.56 Server      Server process ID is 5912.
    2009-11-06 09:49:52.56 Server      Authentication mode is WINDOWS-ONLY.
    2009-11-06 09:49:52.56 Server      Logging SQL Server messages in file 'C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\LOG\ERRORLOG'.
    2009-11-06 09:49:52.56 Server      This instance of SQL Server last reported using a process ID of 4424 at 11/6/2009 9:43:23 AM (local) 11/6/2009 8:43:23 AM (UTC). This is an informational message only; no user action is required.
    2009-11-06 09:49:52.56 Server      Registry startup parameters:
    2009-11-06 09:49:52.56 Server        -d C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\DATA\master.mdf
    2009-11-06 09:49:52.56 Server        -e C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\LOG\ERRORLOG
    2009-11-06 09:49:52.56 Server        -l C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\DATA\mastlog.ldf
    2009-11-06 09:49:52.59 Server      SQL Server is starting at normal priority base (=7). This is an informational message only. No user action is required.
    2009-11-06 09:49:52.59 Server      Detected 4 CPUs. This is an informational message; no user action is required.
    2009-11-06 09:49:52.67 Server      Using dynamic lock allocation.  Initial allocation of 2500 Lock blocks and 5000 Lock Owner blocks per node.  This is an informational message only.  No user action is required.
    2009-11-06 09:49:52.71 Server      Attempting to initialize Microsoft Distributed Transaction Coordinator (MS DTC). This is an informational message only. No user action is required.
    2009-11-06 09:49:53.73 Server      Attempting to recover in-doubt distributed transactions involving Microsoft Distributed Transaction Coordinator (MS DTC). This is an informational message only. No user action is required.
    2009-11-06 09:49:53.73 Server      Database mirroring has been enabled on this instance of SQL Server.
    2009-11-06 09:49:53.73 spid4s      Starting up database 'master'.
    2009-11-06 09:49:53.86 spid4s      Recovery is writing a checkpoint in database 'master' (1). This is an informational message only. No user action is required.
    2009-11-06 09:49:53.95 spid4s      SQL Trace ID 1 was started by login "sa".
    2009-11-06 09:49:53.97 spid4s      Starting up database 'mssqlsystemresource'.
    2009-11-06 09:49:53.99 spid4s      The resource database build version is 9.00.4035. This is an informational message only. No user action is required.
    2009-11-06 09:49:54.16 spid9s      Starting up database 'model'.
    2009-11-06 09:49:54.17 spid4s      Server name is 'VIE-EU-ARC-02'. This is an informational message only. No user action is required.
    2009-11-06 09:49:54.19 Server      The certificate was successfully loaded for encryption.
    2009-11-06 09:49:54.19 Server      Server is listening on [ 'any' <ipv6> 1433].
    2009-11-06 09:49:54.19 Server      Server is listening on [ 'any' <ipv4> 1433].
    2009-11-06 09:49:54.19 Server      Server local connection provider is ready to accept connection on [ \\.\pipe\SQLLocal\MSSQLSERVER ].
    2009-11-06 09:49:54.19 Server      Server local connection provider is ready to accept connection on [ \\.\pipe\sql\query ].
    2009-11-06 09:49:54.19 Server      Server is listening on [ ::1 <ipv6> 1434].
    2009-11-06 09:49:54.19 Server      Server is listening on [ 127.0.0.1 <ipv4> 1434].
    2009-11-06 09:49:54.19 Server      Dedicated admin connection support was established for listening locally on port 1434.
    2009-11-06 09:49:54.31 Server      SQL Server is now ready for client connections. This is an informational message; no user action is required.
    2009-11-06 09:49:54.33 spid15s     Starting up database 'AdventureWorks'.
    2009-11-06 09:49:54.33 spid16s     Starting up database 'EnterpriseVaultDirectory'.
    2009-11-06 09:49:54.33 spid14s     Starting up database 'Test'.
    2009-11-06 09:49:54.33 spid12s     Starting up database 'AdventureWorksDW'.
    2009-11-06 09:49:54.33 spid17s     Starting up database 'EnterpriseVaultMonitoring'.
    2009-11-06 09:49:54.33 spid13s     Starting up database 'msdb'.
    2009-11-06 09:49:54.33 spid23s     Starting up database 'EVVSExchangeVaultStore_2'.
    2009-11-06 09:49:54.33 spid22s     Starting up database 'EVVSGVIE_2_2'.
    2009-11-06 09:49:54.33 spid24s     Starting up database 'EVVSJournalVaultStore_3'.
    2009-11-06 09:49:54.33 spid19s     Starting up database 'EVVSVIEIT_1'.
    2009-11-06 09:49:54.33 spid21s     Starting up database 'ReportServerTempDB'.
    2009-11-06 09:49:54.33 spid20s     Starting up database 'ReportServer'.
    2009-11-06 09:49:54.33 spid18s     Starting up database 'EVVSGVIEIT_1_1'.
    2009-11-06 09:49:54.56 spid9s      Clearing tempdb database.
    2009-11-06 09:49:54.61 spid19s     CHECKDB for database 'EVVSVIEIT_1' finished without errors on 2009-10-28 18:06:14.107 (local time). This is an informational message only; no user action is required.
    2009-11-06 09:49:54.65 spid23s     CHECKDB for database 'EVVSExchangeVaultStore_2' finished without errors on 2009-11-04 18:05:33.960 (local time). This is an informational message only; no user action is required.
    2009-11-06 09:49:54.71 spid24s     CHECKDB for database 'EVVSJournalVaultStore_3' finished without errors on 2009-11-04 18:05:51.793 (local time). This is an informational message only; no user action is required.
    2009-11-06 09:49:54.75 spid16s     CHECKDB for database 'EnterpriseVaultDirectory' finished without errors on 2009-11-04 18:06:38.103 (local time). This is an informational message only; no user action is required.
    2009-11-06 09:49:54.83 spid17s     CHECKDB for database 'EnterpriseVaultMonitoring' finished without errors on 2009-11-04 18:06:18.570 (local time). This is an informational message only; no user action is required.
    2009-11-06 09:49:54.99 spid4s      Recovery of any in-doubt distributed transactions involving Microsoft Distributed Transaction Coordinator (MS DTC) has completed. This is an informational message only. No user action is required.
    2009-11-06 09:49:55.55 spid9s      Starting up database 'tempdb'.
    2009-11-06 09:49:55.68 spid4s      Recovery is complete. This is an informational message only. No user action is required.
    2009-11-06 09:49:55.68 spid12s     The Service Broker protocol transport is disabled or not configured.
    2009-11-06 09:49:55.68 spid12s     The Database Mirroring protocol transport is disabled or not configured.
    2009-11-06 09:49:55.72 spid12s     Service Broker manager has started.
    Only the SQL Server Agent is unable to start,
    Eventlog:
    Log Name:      Application
    Source:        SQLSERVERAGENT
    Date:          06.11.2009 10:09:52
    Event ID:      103
    Task Category: Service Control
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      vie-eu-arc-02.global.domain
    Description:
    SQLServerAgent could not be started (reason: Unable to connect to server '(local)'; SQLServerAgent cannot start).
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="SQLSERVERAGENT" />
        <EventID Qualifiers="16384">103</EventID>
        <Level>2</Level>
        <Task>2</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2009-11-06T09:09:52.000Z" />
        <EventRecordID>8486</EventRecordID>
        <Channel>Application</Channel>
        <Computer>vie-eu-arc-02.global.domain</Computer>
        <Security />
      </System>
      <EventData>
        <Data>Unable to connect to server '(local)'; SQLServerAgent cannot start</Data>
      </EventData>
    </Event>
    SQLAgent.out Logfile:
    2009-11-06 10:09:52 - ! [298] SQLServer Error: 233, Shared Memory Provider: No process is on the other end of the pipe. [SQLSTATE 08001]
    2009-11-06 10:09:52 - ! [298] SQLServer Error: 233, Client unable to establish connection [SQLSTATE 08001]
    2009-11-06 10:09:52 - ! [000] Unable to connect to server '(local)'; SQLServerAgent cannot start
    2009-11-06 10:09:52 - ! [298] SQLServer Error: 233, Shared Memory Provider: No process is on the other end of the pipe. [SQLSTATE 08001]
    2009-11-06 10:09:52 - ! [298] SQLServer Error: 233, Client unable to establish connection [SQLSTATE 08001]
    2009-11-06 10:09:52 - ! [382] Logon to server '(local)' failed (DisableAgentXPs)
    2009-11-06 10:09:53 - ? [098] SQLServerAgent terminated (normally)
    Additional the SQL Server Management Studio is unable to logon to the Server:
    TITLE: Connect to Server
    Cannot connect to vie-eu-arc-02.
    ADDITIONAL INFORMATION:
    A connection was successfully established with the server, but then an error occurred during the pre-login handshake. (provider: Shared Memory Provider, error: 0 - No process is on the other end of the pipe.) (Microsoft SQL Server, Error: 233)
    For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&EvtSrc=MSSQLServer&EvtID=233&LinkId=20476
    The local Admin Password was reset to the "original" (after install) one.
    Any ideas how to fix the problem?

    Dear all,
    the encryption was NO on all protocols.
    Because no additional ideas available, i uninstalled the SQL Server on friday.
    At the Re-Install Process i got again an error:
    [Microsoft][SQL Native Client]Shared Memory Provider: No process is on the
    other end of the pipe .
    The install process failed.
    On google i found the same problem in an other thread:
    http://groups.google.com/group/microsoft.public.sqlserver.connect/browse_thread/thread/dbec4a9a271f69a6/7cd22694da3a6062?lnk=st&q=%22Shared+Memory+Provider%3A+No+process+is+on+the+other+end+of+the+pipe%22&rnum=2&hl=en#7cd22694da3a6062
    ++++++
    During the installation process of SQL Server 2005, Setup complains it cannot
    connect to the database service for server configuration. The error was:
    [Microsoft][SQL Native Client]Shared Memory Provider: No process is on the
    other end of the pipe .
    I have checked that the pipe exists (\\.\pipe\SQLLocal\MyInstance), but
    everytime the installer attempts the connecting the pipe is closed by the
    server and another is reopened. That's why the Client says there is no
    process on the other end of the pipe.
    I have re-installed 'everything', tried connections via TCP, but nothing
    works.
    I have made a small application to connect to the pipe and noticed that
    there are 3 instances of the pipe running, one that I am connecting to, and 2
    listening pipes. If I write to 'my' pipe SQL server disconnects the pipe and
    reopens another too. The difference is that SQL server writes an error
    message in the log file. No such luck when the Native client is doing the
    same.
    What more can I do?
    ++++++
    and an answer
    ++++++
    I finaly found the problem to be the certificate used.
    I noticed that a certificate was added to the machinekeys just recently.
    (in C:\Documents and Settings\All Users\Application
    Data\Microsoft\Crypto\RSA\MachineKeys)
    I renamed it to another name and re-installed sql server.
    I noticed that sql server ERRORLOG complained about certificate that it
    couldn't load and the generation of a self-generaed certificate (see below)
    "2005-12-10 21:01:02.30 Server      The server could not load the
    certificate it needs to initiate an SSL connection. It returned the following
    error: 0x8009030d. Check certificates to make sure they are valid.
    2005-12-10 21:01:02.49 Server      A self-generated certificate was
    successfully loaded for encryption."
    Now the installation succeeded
    ++++++
    With Windows 2008 it was really a challange to get access to this folder (!!!)
    After clearing the folder the ReInstall of SQL Server works fine.
    Now the SQL Server & the SQL Server Agent works again.
    The problem was anything with encryption, old certs & files.
    I don't think that everyone can afford reinstalling SQL server.
    I finaly found the problem to be the certificate used.
    I noticed that a certificate was added to the machinekeys just recently.
    (in C:\Documents and Settings\All Users\Application
    Data\Microsoft\Crypto\RSA\MachineKeys)
    I think this is what the following blog was saying , a problem with certification
    http://blogs.msdn.com/sql_protocols/archive/2006/07/26/678596.aspx
    Cheers
    Please mark as answer if you think this answers your questions

  • Problem while working  with sqlserver

    hello
    i am a user of jdeveloper using swing/jclient in my application.
    i am using sqlserver with my jdeveloper. i had followed the path necessary for foreign database.
    i had made a connection with sqlserver . connection is created.
    but when i test my applicationmodule . i am able to insert the data and save it.but when i tried to delete or update any record it is throwing an error:
    (oracle.jbo.DMLException) JBO-26080: Error while selecting entity for Trial
    ----- LEVEL 1: DETAIL 0 -----
    (java.sql.SQLException) [Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]FOR UPDATE cannot be specified on a READ ONLY cursor.
    details:
    oracle.jbo.DMLException: JBO-26080: Error while selecting entity for Trial
         at oracle.jbo.server.BaseSQLBuilderImpl.doEntitySelect(BaseSQLBuilderImpl.java:653)
         at oracle.jbo.server.EntityImpl.doSelect(EntityImpl.java:4480)
         at oracle.jbo.server.EntityImpl.lock(EntityImpl.java:3033)
         at oracle.jbo.server.ViewRowImpl.lockEntities(ViewRowImpl.java:1506)
         at oracle.jbo.server.ViewRowImpl.doRemove(ViewRowImpl.java:1631)
         at oracle.jbo.server.ViewRowImpl.remove(ViewRowImpl.java:1683)
         at oracle.jbo.server.QueryCollection.doRemove(QueryCollection.java:1176)
         at oracle.jbo.server.QueryCollection.remove(QueryCollection.java:1195)
         at oracle.jbo.server.ViewRowSetImpl.removeRowAt(ViewRowSetImpl.java:1423)
         at oracle.jbo.server.ViewRowSetIteratorImpl.doRemoveCurrentRow(ViewRowSetIteratorImpl.java:2044)
         at oracle.jbo.server.ViewRowSetIteratorImpl.removeCurrentRow(ViewRowSetIteratorImpl.java:2065)
         at oracle.jbo.server.ViewRowSetImpl.removeCurrentRow(ViewRowSetImpl.java:2112)
         at oracle.jbo.server.ViewObjectImpl.removeCurrentRow(ViewObjectImpl.java:5477)
         at oracle.jbo.jbotester.NavBar$rsDelete.doAction(NavBar.java:400)
         at oracle.jbo.jbotester.AbstractJboAction.actionPerformed(AbstractJboAction.java:60)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1764)
         at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1817)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:419)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:257)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:245)
         at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:227)
         at java.awt.Component.processMouseEvent(Component.java:5134)
         at java.awt.Component.processEvent(Component.java:4931)
         at java.awt.Container.processEvent(Container.java:1566)
         at java.awt.Component.dispatchEventImpl(Component.java:3639)
         at java.awt.Container.dispatchEventImpl(Container.java:1623)
         at java.awt.Component.dispatchEvent(Component.java:3480)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3450)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3165)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3095)
         at java.awt.Container.dispatchEventImpl(Container.java:1609)
         at java.awt.Window.dispatchEventImpl(Window.java:1590)
         at java.awt.Component.dispatchEvent(Component.java:3480)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:450)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:197)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:144)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:136)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:99)
    ## Detail 0 ##
    java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]FOR UPDATE cannot be specified on a READ ONLY cursor.
         at com.microsoft.jdbc.base.BaseExceptions.createException(Unknown Source)
         at com.microsoft.jdbc.base.BaseExceptions.getException(Unknown Source)
         at com.microsoft.jdbc.sqlserver.tds.TDSRequest.processErrorToken(Unknown Source)
         at com.microsoft.jdbc.sqlserver.tds.TDSRequest.processReplyToken(Unknown Source)
         at com.microsoft.jdbc.sqlserver.tds.TDSRPCRequest.processReplyToken(Unknown Source)
         at com.microsoft.jdbc.sqlserver.tds.TDSRequest.processReply(Unknown Source)
         at com.microsoft.jdbc.sqlserver.tds.TDSCursorRequest.openCursor(Unknown Source)
         at com.microsoft.jdbc.sqlserver.SQLServerImplStatement.execute(Unknown Source)
         at com.microsoft.jdbc.base.BaseStatement.commonExecute(Unknown Source)
         at com.microsoft.jdbc.base.BaseStatement.executeQueryInternal(Unknown Source)
         at com.microsoft.jdbc.base.BasePreparedStatement.executeQuery(Unknown Source)
         at oracle.jbo.server.BaseSQLBuilderImpl.doEntitySelect(BaseSQLBuilderImpl.java:530)
         at oracle.jbo.server.EntityImpl.doSelect(EntityImpl.java:4480)
         at oracle.jbo.server.EntityImpl.lock(EntityImpl.java:3033)
         at oracle.jbo.server.ViewRowImpl.lockEntities(ViewRowImpl.java:1506)
         at oracle.jbo.server.ViewRowImpl.doRemove(ViewRowImpl.java:1631)
         at oracle.jbo.server.ViewRowImpl.remove(ViewRowImpl.java:1683)
         at oracle.jbo.server.QueryCollection.doRemove(QueryCollection.java:1176)
         at oracle.jbo.server.QueryCollection.remove(QueryCollection.java:1195)
         at oracle.jbo.server.ViewRowSetImpl.removeRowAt(ViewRowSetImpl.java:1423)
         at oracle.jbo.server.ViewRowSetIteratorImpl.doRemoveCurrentRow(ViewRowSetIteratorImpl.java:2044)
         at oracle.jbo.server.ViewRowSetIteratorImpl.removeCurrentRow(ViewRowSetIteratorImpl.java:2065)
         at oracle.jbo.server.ViewRowSetImpl.removeCurrentRow(ViewRowSetImpl.java:2112)
         at oracle.jbo.server.ViewObjectImpl.removeCurrentRow(ViewObjectImpl.java:5477)
         at oracle.jbo.jbotester.NavBar$rsDelete.doAction(NavBar.java:400)
         at oracle.jbo.jbotester.AbstractJboAction.actionPerformed(AbstractJboAction.java:60)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1764)
         at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1817)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:419)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:257)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:245)
         at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:227)
         at java.awt.Component.processMouseEvent(Component.java:5134)
         at java.awt.Component.processEvent(Component.java:4931)
         at java.awt.Container.processEvent(Container.java:1566)
         at java.awt.Component.dispatchEventImpl(Component.java:3639)
         at java.awt.Container.dispatchEventImpl(Container.java:1623)
         at java.awt.Component.dispatchEvent(Component.java:3480)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3450)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3165)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3095)
         at java.awt.Container.dispatchEventImpl(Container.java:1609)
         at java.awt.Window.dispatchEventImpl(Window.java:1590)
         at java.awt.Component.dispatchEvent(Component.java:3480)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:450)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:197)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:144)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:136)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:99)
    ----- LEVEL 1: DETAIL 0 -----
    java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]FOR UPDATE cannot be specified on a READ ONLY cursor.
         at com.microsoft.jdbc.base.BaseExceptions.createException(Unknown Source)
         at com.microsoft.jdbc.base.BaseExceptions.getException(Unknown Source)
         at com.microsoft.jdbc.sqlserver.tds.TDSRequest.processErrorToken(Unknown Source)
         at com.microsoft.jdbc.sqlserver.tds.TDSRequest.processReplyToken(Unknown Source)
         at com.microsoft.jdbc.sqlserver.tds.TDSRPCRequest.processReplyToken(Unknown Source)
         at com.microsoft.jdbc.sqlserver.tds.TDSRequest.processReply(Unknown Source)
         at com.microsoft.jdbc.sqlserver.tds.TDSCursorRequest.openCursor(Unknown Source)
         at com.microsoft.jdbc.sqlserver.SQLServerImplStatement.execute(Unknown Source)
         at com.microsoft.jdbc.base.BaseStatement.commonExecute(Unknown Source)
         at com.microsoft.jdbc.base.BaseStatement.executeQueryInternal(Unknown Source)
         at com.microsoft.jdbc.base.BasePreparedStatement.executeQuery(Unknown Source)
         at oracle.jbo.server.BaseSQLBuilderImpl.doEntitySelect(BaseSQLBuilderImpl.java:530)
         at oracle.jbo.server.EntityImpl.doSelect(EntityImpl.java:4480)
         at oracle.jbo.server.EntityImpl.lock(EntityImpl.java:3033)
         at oracle.jbo.server.ViewRowImpl.lockEntities(ViewRowImpl.java:1506)
         at oracle.jbo.server.ViewRowImpl.doRemove(ViewRowImpl.java:1631)
         at oracle.jbo.server.ViewRowImpl.remove(ViewRowImpl.java:1683)
         at oracle.jbo.server.QueryCollection.doRemove(QueryCollection.java:1176)
         at oracle.jbo.server.QueryCollection.remove(QueryCollection.java:1195)
         at oracle.jbo.server.ViewRowSetImpl.removeRowAt(ViewRowSetImpl.java:1423)
         at oracle.jbo.server.ViewRowSetIteratorImpl.doRemoveCurrentRow(ViewRowSetIteratorImpl.java:2044)
         at oracle.jbo.server.ViewRowSetIteratorImpl.removeCurrentRow(ViewRowSetIteratorImpl.java:2065)
         at oracle.jbo.server.ViewRowSetImpl.removeCurrentRow(ViewRowSetImpl.java:2112)
         at oracle.jbo.server.ViewObjectImpl.removeCurrentRow(ViewObjectImpl.java:5477)
         at oracle.jbo.jbotester.NavBar$rsDelete.doAction(NavBar.java:400)
         at oracle.jbo.jbotester.AbstractJboAction.actionPerformed(AbstractJboAction.java:60)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1764)
         at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1817)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:419)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:257)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:245)
         at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:227)
         at java.awt.Component.processMouseEvent(Component.java:5134)
         at java.awt.Component.processEvent(Component.java:4931)
         at java.awt.Container.processEvent(Container.java:1566)
         at java.awt.Component.dispatchEventImpl(Component.java:3639)
         at java.awt.Container.dispatchEventImpl(Container.java:1623)
         at java.awt.Component.dispatchEvent(Component.java:3480)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3450)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3165)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3095)
         at java.awt.Container.dispatchEventImpl(Container.java:1609)
         at java.awt.Window.dispatchEventImpl(Window.java:1590)
         at java.awt.Component.dispatchEvent(Component.java:3480)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:450)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:197)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:144)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:136)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:99)
    Please do help if you can.
    Thanks in Advance
    Aparna

    thanks shay
    but i had gone through all the steps. i had also set the oracle.jbo.locking mode to optimistic
    but then also i am getting the same error while updating and deleting.
    Please do help me if you ca.
    thanks
    Aparna

Maybe you are looking for

  • Crystal report 10 support thai character?it doesn't work in crystal veiwer

    Hi, we have product with which package crystal report runtime libarary. when are trying to open the crystal report from our product. it displays the crystal viewer as report. we are specifically looking for thai support.when run the report from our p

  • Installation problems on MacBook...

    My sister's MacBook has been having problems with installations. While at school, she tried to update her system to 10.4.11. The system had some sort of error and got stuck in shutdown. After finally forcing a shutdown, the system wasn't able to righ

  • All backups are unavailable- greyed out

    I'm trying to access an accidently deleted folder, but every back up in tm is greyed (red actually) out and I can't access it.

  • Connect 2 macs to 2 displays

    Hello Thank you for taking the time to view this , I have a problem i recently purchased a 20" cinema display which is currently hooked up to 2 mac minis using a Belkin Switch 2 KVM , The only problem is i want to connect my apple studio display to t

  • Business Process Modeling and Organizational Change Management

    Many Change Management interventions are based on the business understanding the TO BE processes, how the process will change end-to-end, including not only the processes within SAP but also how they will interface with the entire application landsca