Weblogic workshop 10.3-- I am trying to connect to SQL server

Hi,
I am unable to connect to SQL server Database from workshop, it is connecting to pointbase (default database). what is te steps to connect to our local database.
I am new to this workshop. Thanks in advance for your help.
Regards,
Guru.

Hi,
Have you created database connection pool and datasource in admin console pointing to your SQL server? Once you have created both, try connecting from workshop using databse control with the help of already created connection poll and datasource.
Regards,
Sankar Sekar

Similar Messages

  • Null connection when trying to connect to SQL Server 2000 in Tomcat4.1.29

    Hi All,
    I am still struggling with null connection when trying to connect to sql server 2000 with tomcat using sun.jdbc.odbc.JdbcOdbcDriver
    Here is my server.xml
    <Server port="8005" shutdown="SHUTDOWN" debug="0">
    <Listener className="org.apache.catalina.mbeans.ServerLifecycleListener"
    debug="0"/>
    <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener"
    debug="0"/>
    <GlobalNamingResources>
    <Resource name="UserDatabase" auth="Container"
    type="org.apache.catalina.UserDatabase"
    description="User database that can be updated and saved">
    </Resource>
    <ResourceParams name="UserDatabase">
    <parameter>
    <name>factory</name>
    <value>org.apache.catalina.users.MemoryUserDatabaseFactory</value>
    </parameter>
    <parameter>
    <name>pathname</name>
    <value>conf/tomcat-users.xml</value>
    </parameter>
    </ResourceParams>
    <Resource auth="Container" description="Users and Groups
    Database" name="UserDatabase"
    scope="Shareable"
    type="org.apache.catalina.UserDatabase"/>
    <Resource name="jdbc/DefaultDS" scope="Shareable"
    type="javax.sql.DataSource"/>
    <ResourceParams name="UserDatabase">
    <parameter>
    <name>factory</name>
    <value>org.apache.catalina.users.
    MemoryUserDatabaseFactory</value>
    </parameter>
    <parameter>
    <name>pathname</name>
    <value>conf/tomcat-users.xml</value>
    </parameter>
    </ResourceParams>
    <ResourceParams name="jdbc/DefaultDS">
    <parameter>
    <name>validationQuery</name>
    <value></value>
    </parameter>
    <parameter>
    <name>user</name>
    <value>sa</value>
    </parameter>
    <parameter>
    <name>maxWait</name>
    <value>5000</value>
    </parameter>
    <parameter>
    <name>maxActive</name>
    <value>4</value>
    </parameter>
    <parameter>
    <name>password</name>
    <value>sa</value>
    </parameter>
    <parameter>
    <name>url</name>
    <value>jdbc:odbc:JBoss-SQL://localhost:1433;databaseName=Development;selectMethod=cursor;</value>
    </parameter>
    <parameter>
    <name>driverClassName</name>
    <value>sun.jdbc.odbc.JdbcOdbcDriver</value>
    </parameter>
    <parameter>
    <name>maxIdle</name>
    <value>2</value>
    </parameter>
    </ResourceParams>
    </GlobalNamingResources>
    <!-- Define the Tomcat Stand-Alone Service -->
    <Service name="Tomcat-Standalone">
    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
    port="8080" minProcessors="5" maxProcessors="75"
    enableLookups="true" redirectPort="8443"
    acceptCount="100" debug="0" connectionTimeout="20000"
    useURIValidationHack="false" disableUploadTimeout="true" />
    <!-- Note : To disable connection timeouts, set connectionTimeout value
    to -1 -->
    <!-- Define a SSL Coyote HTTP/1.1 Connector on port 8443 -->
    <!--
    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
    port="8443" minProcessors="5" maxProcessors="75"
    enableLookups="true"
    acceptCount="100" debug="0" scheme="https" secure="true"
    useURIValidationHack="false" disableUploadTimeout="true">
    <Factory className="org.apache.coyote.tomcat4.CoyoteServerSocketFactory"
    clientAuth="false" protocol="TLS" />
    </Connector>
    -->
    <!-- Define a Coyote/JK2 AJP 1.3 Connector on port 8009 -->
    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
    port="8009" minProcessors="5" maxProcessors="75"
    enableLookups="true" redirectPort="8443"
    acceptCount="10" debug="0" connectionTimeout="0"
    useURIValidationHack="false"
    protocolHandlerClassName="org.apache.jk.server.JkCoyoteHandler"/>
    <!-- Define an AJP 1.3 Connector on port 8009 --><Logger className="org.apache.catalina.logger.FileLogger"
    prefix="catalina_log." suffix=".txt"
    timestamp="true"/>
    <!-- Define the default virtual host -->
    <Host name="localhost" debug="0" appBase="webapps"
    unpackWARs="true" autoDeploy="true">
    <Logger className="org.apache.catalina.logger.FileLogger"
    directory="logs" prefix="localhost_log." suffix=".txt"
    timestamp="true"/>
    <Environment name="maxExemptions" type="java.lang.Integer"
    value="15"/>
    <Parameter name="context.param.name" value="context.param.value"
    override="false"/>
    <Resource name="jdbc/DefaultDS" auth="container" type="javax.sql.DataSource"/>
    <ResourceParams name="jdbc/DefaultDS">
    <!-- Maximum number of dB connections in pool.
    Set to 0 for no limit.
    -->
    <parameter>
    <name>maxActive</name>
    <value>8</value>
    </parameter>
    <!-- Maximum number of idle dB connections to retain in pool.
    Set to 0 for no limit.
    -->
    <parameter>
    <name>maxIdle</name>
    <value>4</value>
    </parameter>
    <!-- Maximum time to wait for a dB connection to become available
    in ms, in this example 10 seconds. An Exception is thrown if
    this timeout is exceeded. Set to -1 to wait indefinitely.
    -->
    <parameter>
    <name>maxWait</name>
    <value>5000</value>
    </parameter>
    <!-- MS Sql Server dB username and password for dB connections
    -->
    <parameter>
    <name>user</name>
    <value>sa</value>
    </parameter>
    <parameter>
    <name>password</name>
    <value>sa</value>
    </parameter>
    <!-- Class name for MS Sql Server JDBC driver
    -->
    <parameter>
    <name>driverClassName</name>
    <value>sun.jdbc.odbc.JdbcOdbcDriver</value>
    </parameter>
    <!-- The JDBC connection url for connecting to MS Sql Server dB.
    -->
    <parameter>
    <name>url</name>
    <value>jdbc:odbc:JBoss-SQL://localhost:1433;databaseName=Development;selectMethod=cursor;</value>
    </parameter>
    <!-- This Databae Connection Pool Description.
    -->
    <parameter>
    <name>description</name>
    <value>JDBC Driver: sun.jdbc.odbc.JdbcOdbcDriver</value>
    </parameter>
    </ResourceParams>
    <Resource name="mail/Session" auth="Container"
    type="javax.mail.Session"/>
    <ResourceParams name="mail/Session">
    <parameter>
    <name>mail.smtp.host</name>
    <value>localhost</value>
    </parameter>
    </ResourceParams>
    <ResourceLink name="linkToGlobalResource"
    global="simpleValue"
    type="java.lang.Integer"/>
    </Host>
    </Engine>
    </Service>
    </Server>
    and my web.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    <!-- Standard Action Servlet Mapping -->
    <web-app>
    <resource-ref>
    <res-ref-name>jdbc/DefaultDS</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    </resource-ref>
    </web-app>
    and JBoss-SQL is data source I created from control panel settings and here is way I am retrieving connetion
    InitialContext initCtx = new InitialContext();
    DataSource ds = (DataSource) initCtx.lookup("java:comp/env/jdbc/DefaultDS");
    Connection con = ds.getConnection();
    return con;
    I tried connecting as mentioned in this website
    http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jndi-datasource-examples-howto.html#Common%20Problems.But didn't help
    Please help urgent
    Sorry for long file. Can any one please help me in solving this problem.
    Thanks in advnace
    Kurakula

    I'd recommend that you not use the JDBC-ODBC bridge driver to connect to SQL Server. M$ and jTDS are two free type IV JDBC drivers that you should use instead. Put those JARs in the WEB-INF/lib directory.
    The database URL you're using is not correct if you change drivers. Consult the docs to find out what the proper syntax is.
    MOD

  • Trying to connect to SQL SERVER

    We have SAP on Oracle database but as we are implementing our HR system on SQL Server so we need to connect to SQL SERVER through ABAP in order to retrieve some information. We created the Connection successfully but when trying to retrieve the data it is giving us following dump :
    Runtime Errors         DBIF_DSQL2_INVALID_CURSOR
    Except.                   CX_SY_NATIVE_SQL_ERROR
    Invalid interruption of a database selection
    The code through which i am trying to retrieve the data is as follows :
    DATA: c1  TYPE cursor.
    DATA : BEGIN OF EMP_DATA OCCURS 0,
            FNAME(5000) TYPE C,
            END OF EMP_DATA.
    DATA : fnm TYPE STRING.
    EXEC SQL.
       CONNECT TO  'HRMS'
    ENDEXEC.
    if sy-subrc eq 0.
       MESSAGE 'Connected..' TYPE 'I'.
    else.
       MESSAGE 'Not Connected..' TYPE 'I'.
    endif.
    EXEC SQL.
       OPEN c1  for
       SELECT FNAME
       FROM view_EMPDATAPayroll_New
    ENDEXEC.
    if sy-subrc eq 0.
       MESSAGE 'Access Successful..' TYPE 'I'.
    else.
       MESSAGE 'Access Not Successful..' TYPE 'I'.
    endif.
    DO.
       EXEC SQL.
         FETCH NEXT c1 INTO  :EMP_DATA.FNAME;
       ENDEXEC.
       APPEND EMP_DATA.
       IF sy-subrc <> 0.
         EXIT.
       ENDIF.
    ENDDO.
    EXEC SQL.
       CLOSE c1
    ENDEXEC.
    EXEC SQL.
       DISCONNECT 'HRMS'
    ENDEXEC.
    We have tried a lot to solve the error but every time we are getting the same dump. It is giving dump at the following command :
    FETCH NEXT c1 INTO  :EMP_DATA.FNAME;
    The connection properties are also as follows :
    DB Connection      HRMS
    DBMS                 MSS
    User Name           sa
    Conn. info            MSSQL_SERVER=192.168.0.60\SQLEXPRESS MSSQL_DBNAME=HRAlign_Rubamin
    Please help me out.
    Tarun.

    Thanks for your timely response Arun. Solved the issue as I was using Message inside the cursor , I removed that and problem is solved.
    When I am retrieving only 2 columns in select statement then it is getting executed but when I am giving more than 2 columns then it is giving error "Incorrect Syntax Near".
    But now I made following changes in program and getting dump (with different message).
    The code is as under.
    DATA: c1  TYPE cursor.
    DATA : BEGIN OF EMP_DATA OCCURS 0,
            FNAME(100)       TYPE C,
            LNAME(100)       TYPE C,
            JOINING_CTC(16)  TYPE P DECIMALS 2,
            END OF EMP_DATA.
    DATA : fnm(100)    TYPE c,
            lnm(100)    TYPE c,
            jng_ctc(16) TYPE P DECIMALS 2.
    EXEC SQL.
       CONNECT TO  'HRMS'
    ENDEXEC.
    EXEC SQL.
       OPEN c1  for
       SELECT FNAME LNAME JOINING_CTC  FROM view_EMPDATAPayroll_New.
    ENDEXEC.
    DO.
       EXEC SQL.
         FETCH NEXT c1 INTO :EMP_DATA
       ENDEXEC.
       APPEND EMP_DATA.
       IF sy-subrc <> 0.
         EXIT.
       ENDIF.
    ENDDO.
    EXEC SQL.
       CLOSE c1
    ENDEXEC.
    EXEC SQL.
       DISCONNECT 'HRMS'
    ENDEXEC.
    LOOP AT EMP_DATA.
       WRITE: EMP_DATA-FNAME , EMP_DATA-LNAME , EMP_DATA-JOINING_CTC.
    ENDLOOP.
    At execution I am getting dump with the following message:
    Short text
        SQL error 102 occurred when executing Native SQL.
    What happened?
        The error 102 occurred in the current database connection "HRMS".
        Error Text of Database: "Incorrect syntax near 'JOINING_CTC'."
        SQL Statement Responsible:"SELECT FNAME LNAME JOINING_CTC FROM
         view_EMPDATAPayroll_New."
    Error analysis
        An exception occurred that is explained in detail below.
        The exception, which is assigned to class 'CX_SY_NATIVE_SQL_ERROR', was not
         caught and
        therefore caused a runtime error.
        The reason for the exception is:
        Error Text of the Database: "Incorrect syntax near 'JOINING_CTC'."
    Regards.
    Tarun.

  • DBConnect Error - Trying to Connect to SQL Server 2008

    Hi,
    I am trying to connect to one of the SQL Server on the domain.
    SQL Server 2008
    OS: Windows 2008 R2 64 bit
    I have done all the entries as mentioned in the Note. 178949 correctly but when I am testing this connection through program ADBC_TEST_CONNECTION it is showing me following error:
    Testing a Database Connection Defined in DBCON
    Could not open connection SQLCONNECTION
    sql error 1- occured:
    I have put DBMSSSLIB.DLL and DBMSSSLIB.PDB in the run directory as mentioned in the note too.
    I have searched forum but couldn't find any solution for this. Please advice.
    Thanks,
    Usman Malik

    Hi dude!
    Checking the dbsl_w<NN> as it is explained in point 3 of the 'Troubleshooting' section of [SAP note 738371|https://service.sap.com/sap/support/notes/738371] would help a lot to know the reason of the failure.
    I hope this helps you!
    Cheers!

  • "Access denied by Business Data Connectivity" on trying to connect to SQL server for creating external content type

    I was trying to create external client type but whenever I try to connect to Database server it is showing me error"Access denied by Business Data Connectivity". I have given the Secure Store Target Application ID coorectly and it is setup coorectly.
    In BDC service application I have given myself all the permissions( edit,execute,Selectable in clients,Set Permissions) through set metadata store permission option in it.
    Please suggest what other reason can be there for the error.
    Thanks and Regards
    Gaurav

    Hi Gaurav,
    If you have given your account all permissions through setting metadata store permission, the issue should be resolved.
    For a better trouble shooting , I suggest you do as the followings:
    1. Assign administrators to a Business Data Connectivity service application
    Here is a detailed article for your reference:
    http://technet.microsoft.com/en-us/library/ff973113.aspx
    2. You can try to recreate a Business Data Connectivity service application to test whether it works.
    http://www.dotnetcurry.com/showarticle.aspx?ID=794
    Best regards,
    Zhengyu Guo
    Zhengyu Guo
    TechNet Community Support

  • Hi there, I am trying to connect to my server at work from home using a vpn connection. It connects fine and the time ticks along, but when i click go - connect to server, it comes up with connection failed. Please help!

    Hi there, I am trying to connect to my server at work from home using a vpn connection. It connects fine and the time ticks along, but when i click go - connect to server, it comes up with connection failed. Please help!

    ... when i click go - connect to server, it comes up with connection failed.
    If you're trying to connect to a Bonjour server on the remote network, that won't work over a layer 3 VPN. Use something like Hamachi or one of the SSH-tunnelling Bonjour proxy apps for that.

  • HT4436 When trying to sign in I keep getting the error message, "iCloud encounterd a error while trying to connect to the server". How can I get signed in?

    When trying to sign in to iCloud, I always get the message, iCloud has encountered a error while trying to connect to the server. How do I get in????

    Hello,
    Try following step and check if issue gets resolved or not.
    Find Acrobat.exe on your computer.  Right click the program and click 'Troubleshoot Compatibility'.  Set the compatibility to Windows XP service pack 3.
    Regards,
    Anoop

  • Trying to setup new iCloud in system preferences and get error message: "iCloud encountered an error while trying to connect to the server."

    Here's the sequence of events:
    Setting up a new iMac.
    Migration Assistant was aborted during setup and a normal setup was completed.
    Then ran Migration Assistant from the newly setup account.
    It ran fine, but put all the data in a new account called "user".
    Renamed "user" to a new name, renamed the home folder to a new name following these instructions: OS X: How to change your account name or home directory name
    Delete the account we originally created, so just have one account with the name we want and all the data, email. Works fine.
    Sign into the App Store with the account we share for purchases.
    Now, the problem:
    Go to System Preferences to setup iCloud with a new Apple ID
    Get this error: "iCloud encountered an error while trying to connect to the server."
    So I'm unable to setup iCloud for photo stream, FaceTime, etc.
    Internet works fine, we can get mail, etc.
    Rebooting doesn't help
    Ideas?

    never mind the problem is gone this morning.

  • How do I stop InDesign from trying to connect with a server?

    I have a huge problem, either with InDesign or Apple I am not sure.
    Basically when I bring my computer home from work every time I open InDesing it tries to connect to a server and I get this error message: the server XXX.local may not exist or is unavailable at this time. Check the server name or IP address, check your network connection, and then try again.
    Why is InDesign trying connect to a server? Photoshop and Illustrator work perfectly well and function as a normal program. Indesign has no reason to do this as it shouldn't need to work through a server.
    I get this error message and once I have dismissed it, it comes back after a few seconds and then stalls my computer again.
    I really hope that someone can give me some idea of what is happening because the support in my country have not been at all helpful.

    CS5. I have been working with this program for over 10 years and I have never seen this before. I only have this problem at home and not at working. The drive it is trying to access is the timecapsule.local. As I said it is only with InDesign and all the other bundle programs are fine. It is not a pay per month and is a legitimately licensed business subscription.

  • Why do I keep getting a connection error when trying to connect to SQL?

    Environment:
    LiveCycle ES2
    Windows Server 2008
    JBOSS
    Oracle Application DB
    When trying to connect to SQL, I get this error message in the log.
    Exception: Could not create connection; - nested throwable: (java.lang.UnsupportedOperationException: Java Runtime Environment (JRE) version 1.6 is not supported by this driver. Use the sqljdbc4.jar class library, which provides support for JDBC 4.0.); - nested throwable: (org.jboss.resource.JBossResourceException: Could not create connection; - nested throwable: (java.lang.UnsupportedOperationException: Java Runtime Environment (JRE) version 1.6 is not supported by this driver. Use the sqljdbc4.jar class library, which provides support for JDBC 4.0.))
    I have these two files located in \\jboss\server\lc_oracle_cl\lib
    sqljdbc.jar
    sqljdbc4.jar
    I was told all I needed to do was drop these two files in the directory above and restart JBOSS. Is there something I'm missing?
    Jesse

    Hi Jesse,
    The driver you are using is for SQLServer Database. Since you are using Oracle as your database, you need an oracle driver.Please copy ojdbc6.jar from the [installDir]/lib/db/oracle/ directory and try again.
    Thanks,
    Ruchi

  • IMac is trying to connect to a server that no longer exist on my network.

    iMac is trying to connect to a server that no longer exist on my network - I am looking for a solution to stop the error messages showing up. For instance, I have a contact in the address book that I need to change his picture and when I try to do that, for some reason, the server where the pics were stored appears as unavailble. The error message is not going away until the aplication is being closed.
    Appreciate any feedbacks.
    Thanks.

    Back up all data.
    1. If you use iCloud, uncheck the box marked Contacts in the iCloud preference pane. Press return to confirm, or click Keep on Mac in the dialog that opens.
    2. From the list of groups on the left side of the Contacts window, select All On My Mac. If that group doesn't exist or is empty, skip this step. Otherwise, from the menu bar, select
    File ▹ Export ▹ Export vCard
    Save the exported contacts to the Desktop.
    3. Quit Contacts. Triple-click the text on the line below to select it, then copy it to the Clipboard (command-C):
    ~/Library/Application Support/AddressBook
    In the Finder, select
    Go ▹ Go to Folder
    from the menu bar, paste into the box that opens (command-V), and press return.
    A Finder window will open with a folder selected. Move the selected folder to the Desktop, leaving the window open for now.
    4. Launch Contacts. Your contacts will be gone. If you took Step 2, then from the menu bar, select
    File ▹ Import
    and import from the file you exported. Your contacts will reappear.
    5. Re-enable Contacts in the iCloud preference pane, if you disabled it. Test. If the issue is resolved, delete the AddressBook folder and the vCard file on the Desktop and close the open folder window.
    Otherwise, quit Contacts again and put the AddressBook folder back where it was, overwriting the newer one that will have been created in its place. Post your results.

  • Mac keeps trying to connect to a server when opening excel

    i worked for a week at a production house and they had me log into their server to access files that we all used.  obviously i forgot to eject their server before i left and instead just closed my computer and left.  now, since Lion makes all documents that were left open restore automatically my mac keeps trying to load a spreadsheet that i was reading off the server but obviously i'm not connected to said server anymore.  and i won't ever again. 
    how can i stop my mac from trying to connect to this server?  also, is there a way to stop Lion from auto restoring?
    thanks, all!

    Well, I was hoping that if you remove all traces of recently opened documents to resume and you disable the resume, then Excel would not try any longer to connect to the server.
    One more question: is Excel trying to reach the server when you start your system or when you launch Excel?
    If it happens at start up, then have a look, if Excel has been added to the start up items (System preferences -> accounts -> your account -> start up items) and remove it.
         Quit Excel (with Option + Command + Q) if it is open and remove the loginwindow preferences: Navigate to Library > Preferences > ByHost > com.apple.loginwindow.[xxxxxxxxx].plist
    The [xxxxxxxx] represent some interminable string of numbers and letters.
    If it happens at launch time, move the Excel preference file to the Desktop before you launch Excel. The file is locate here:
    /Users/your user name/Library/Preferences/com.microsoft.Excel.plist.
    If you keep your Library hidden, as it is by default, go to the System preference folder from the Finder menu: Finder -> Go -> Go to Folder (Or shift-cmd-G) and enter
    "/Users/your user name/Library/Preferences"
    Good luck

  • How can I get past the "trying to connect to the server..." part when trying to download the adobe creative cloud desktop app?

    When trying to install Adobe Create Cloud desktop app, the adobe installer box comes up and it will not load past the "trying to connect to the server..." part. Why is this and what steps do I need to take to resolve this issue?

    A chat session where an agent may remotely look inside your computer may help
    Creative Cloud chat support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html

  • Photoshop Elements 5.0 PC.  Moved.  How do I change outgoing mail server? Photoshop trying to connect to old server for emailing pictures.  Thanks

    Photoshop Elements 5.0 PC.  Moved.  How do I change outgoing mail server? Photoshop trying to connect to old server for emailing pictures.  Thanks

    You say you have the pse 5 disk?
    I guess you do't have a dvd drive on your new windows 8 computer?
    Do you have access to another computer with a dvd drive?
    Anyway if you can find another computer with a dvd drive you could copy the pse 5 install disc to removable device like a camera card or flash drive.
    You can also buy cheap usb dvd drives.

  • On my Mac Mini, I keep getting this error message: "iCloud encountered an error while trying to connect to the server".  I don't have any problems with iCloud on my laptop / PC.  It works fine... Does anyone know what the problem could be?

    On my Mac Mini, I keep getting this error message: "iCloud encountered an error while trying to connect to the server".  I don't have any problems with iCloud on my laptop / PC.  It works fine... Does anyone know what the problem could be?

    Your Mac must be on Lion (10.7) to run iCloud. Apple had to change the operating system to fully support it. Nevertheless, it is possible to get emails from iCloud without having Lion. Please tell me if this interests you.
    Anyways, here is the link to buy Lion (30 dollars, totally worth the upgrade ): http://itunes.apple.com/be/app/os-x-lion/id444303913?mt=12
    Franklin

Maybe you are looking for

  • How can you listen to music and play a game at the same time?

    How can you listen to music and play a game at the same time? I am playing music, by starting the Crash Baandicoot Nitro Kart 3D game it shuts off the music playing. Is there a way around this? It seems like this should be possible. Message was edite

  • Oracle  Secure Backup- Lib Dell PowerVault 114x

    Hi, I am a beginner in tape a backup solutions. I have installed osb 10.4. My library is Dell™ PowerVault™ 114x If i try configured Lib and tape with sg_map -i -x [root@bosmgmt ~]# sg_map -i -x /dev/sg0 0 0 0 0 0 ATA WDC WD5003ABYX-1 1S02 /dev/sg1 0

  • Finding Step Name from ProcessModelPostStep Callback

    I am trying to get the 'Step Name' of the current step in the client sequence file from inside the ProcessModelPostStep Callback. Does anybody know the property lookup string? Regards Steve There are 10 types of people in the world that understand bi

  • Live Upgrade with VDI

    Is there any reason why LU will not work with VDI and it's built in MySQL cluster? I attempted to LU a VDI 3.2.1 environment and after rebooting a secondary node the service would not come back up. Unonfiguring and reconfiguring brought everything ba

  • COGI Procedure

    1.       In SAP, several finished products (packed-printed closures) utilize the same semi-finished product (molded closure). Finished products will be planned based on re-order point planning. The semi finished product will be planned based on depen