How to know the location of  JDBC Driver/ connection

unable to find JDBC driver and connection location
How can I know the location of "JDBC Driver" for the input box JDBC Driver to confrigure this in ID.
The same  for "Connection" too.
urgent input (no links please) will help me.
Thanks
SY

Hi,
You can ask basis person to get the location of JDBC driver.
http://help.sap.com/saphelp_nw2004s/helpdata/en/80/4f34c587f05048adee640f4c346417/frameset.htm
http://help.sap.com/saphelp_nw04/helpdata/en/1d/756b3c0d592c7fe10000000a11405a/frameset.htm
Hope this helps.
Regards,
Moorthy

Similar Messages

  • How to know which type of jdbc driver used in my application

    How to know which type of jdbc driver used in my application.

    My approach will be....
    Type1: you have to have ODBC s/w install on your machine...even the connection string starts with jdbc:odbc....so it can be identifed easily
    Type2: you have to install client s/w in your machine...if you are using oracle oci driver ...you need to install oracle client s/w
    Type3: you use servername / port to connnect to middleware
    Type4: you do not need any client s/w
    So, If your application works without any client s/w on your machine....you might be using Type4/Type3 driver.....otherwise Type2
    Someone pls add more ....

  • How application know the Principal server down and connect to mirror server ?

    I have setup the database mirroring for disaster recovery solution where we don't need the witness server for fail over.
    But under high-availability mode, If the principal server fails, the mirror server automatically becomes the new principal server and recovers the principal database using a witness server. Now my question is how application server or client application knows
    to connect the mirror server which is now the new principle server.
    Do we need to handle any condition in connection string which is using in client application or any other way ?
    If you think my suggestion is useful, please rate it as helpful.
    If it has helped you to resolve the problem, please Mark it as Answer.
    Varinder Sandhu www.varindersandhu.in

    Check these articles. You basically set the failover partner .
    http://msdn.microsoft.com/en-us/library/5h52hef8(v=vs.110).aspx
    http://blogs.msdn.com/b/spike/archive/2010/12/08/clarification-on-the-failover-partner-in-the-connectionstring-in-database-mirror-setup.aspx
    Regards, Ashwin Menon My Blog - http:\\sqllearnings.com

  • MY IPHONE HAS BEEN STOLEN, LAST MARCH 10 AND NOW A TELESERVICE TEXTED ME THAT IT HAS BEEN LOCATED AND THEY GAVE ME A LINK TO APPLE SUPPORT SERVICE BUT I CAN'T ENTER THE SITE. PLEASE HELP ME KNOW HOW TO FIND THE LOCATION OF MY LOST PHONE

    HOW TO KNOW THE LOCATION OF MY LOST PHONE IT HAS BEEN FOUND ALREADY BUT I DON'T KNOW WHERE TO GO

    Please stop typing in caps. It is difficult to read and rude, Caps are considered shouting on the web.
    Odds are that is a scam.
    Post more details, such as phone number and we'll confirm if it is a scam or not.

  • HT2693 How do I know the location of my Mac using my iPhone or my iPad

    how to know the location of my Mac

    If you have Find My Mac enabled on your Mac and it's connected to a network, then you can log into your iCloud account in the Find My iPhone app (the app should be in your country's app store) on your iPhone or iPad and see if that can locate it.

  • I have problem with Itunes losing where podcasts and some purchased music is located. Don't know how Itunes losing the locations of the files and I can't find the files on my hard drive. What can I do to stop Itunes losing location and restore my files?

    I have problem with Itunes losing where podcasts and some purchased music is located. Don't know how Itunes losing the locations of the files and I can't find the files on my hard drive. What can I do to stop Itunes losing location and restore my files?

    Try assigning Queen as the Album Artist on the compilations in iTunes on your computer.

  • I need to know the location where iTunes downloads software to, it is filling up my hard drive.

    I need to know the location where iTunes downloads software to, it is filling up my hard drive.
    I am trying to put my iPhone4 into recovery and then will restore it. iTunes starts extracting the software.  But the iPhone reboots and by the time the software has completed extraction, the iPhone can no longer be seen by iTunes. 
    We have a very small hard drive on our laptop.  Each time iTunes does an extraction, it uses up more space on the C: drive. 
    Nothing frees up that used drive space. Not closing iTunes or rebooting the computer. Nothing. 
    How do we release / delete these files?

    See Re: when itunes downloads ipsw where does it go.
    tt2

  • HT4239 how do i know the location of Facebook user ?

    how do i know the location of Facebook user ?

    Hello Gnawifull,
    Unless your friend displays their location in Privacy then that's not possible.
    ^Connor

  • How to find out the version of JDBC driver in Java?

    Hi all,
    I would like to use Java to find out the version of JDBC driver that I currently use. That JDBC driver is from Oracle and the filename is "classes12.zip" for all version ( 8.1.x to 9.x ). Is any method to verify what version JDBC I currently use? Thanks a lot.

    DatabaseMetaData.getDriverVersion()
    http://java.sun.com/j2se/1.4.2/docs/api/java/sql/DatabaseMetaData.html#getDriverVersion()

  • Does anybody know step to install JDBC driver?

    Hi
    All,
    I have windows xp and i want to install jdbc driver for jdk 1.5.. I have downloaded ojdbc14.jar. but I don't know how to execute that file. I have tried with
    java -jar ojdbc14.jar
    it gives me following output
    C:\>java -jar c:\ojdbc14.jar
    Failed to load Main-Class manifest attribute from
    c:\ojdbc14.jar
    so it is not working.
    does anybody know step to install JDBC driver?
    Thanks,
    Vishal
    Message was edited by:
    vishal patel
    Message was edited by:
    vishal patel

    The JDBC drivers aren't "installed" like application software. The ojdbc.jar file is a library that contains the driver. To use it in a Java program, two steps are required:
    (1) Invoke the driver (using the Class.forName() method is most common), and
    (2) include the library in the class path when you run your program.
    Here is a sample program I have put together to illustrate:
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Statement;
    public class JDBCTest {
         public static void main(String args[]) throws SQLException, ClassNotFoundException {
              Class.forName("oracle.jdbc.OracleDriver");
              String dbString = "jdbc:oracle:thin:@localhost:1521:xe";
              String username = "forums";
              String password = "forums";
              Connection connection = DriverManager.getConnection(dbString, username, password);
              Statement statement = connection.createStatement();
              ResultSet rs = statement.executeQuery("select 'hi' as my_column from dual");
              while(rs.next())
                   System.out.println(rs.getString("MY_COLUMN"));
              rs.close();
              statement.close();
              connection.close();
    }Below, I compile and run this program. You can see the necessity of including the JAR in the class path:
    C:\workspace>javac JDBCTest.java
    C:\workspace>java JDBCTest
    Exception in thread "main" java.lang.ClassNotFoundException: oracle.jdbc.OracleDriver
            at java.net.URLClassLoader$1.run(Unknown Source)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.net.URLClassLoader.findClass(Unknown Source)
            at java.lang.ClassLoader.loadClass(Unknown Source)
            at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
            at java.lang.ClassLoader.loadClass(Unknown Source)
            at java.lang.ClassLoader.loadClassInternal(Unknown Source)
            at java.lang.Class.forName0(Native Method)
            at java.lang.Class.forName(Unknown Source)
            at JDBCTest.main(JDBCTest.java:9)
    C:\workspace>java -cp ojdbc14.jar;. JDBCTest
    hi
    C:\workspace>Although no classes in this JAR file are explicitly used by the program (other than the Class.forName() line), it is necessary. Without it, the JVM will return the following error message (to see this first-hand, simply comment out the Class.forName() line in the above program):
    C:\workspace>java -cp ojdbc14.jar;. JDBCTest
    Exception in thread "main" java.sql.SQLException: No suitable driver found for jdbc:oracle:thin:@localhost:1521:xe
            at java.sql.DriverManager.getConnection(Unknown Source)
            at java.sql.DriverManager.getConnection(Unknown Source)
            at JDBCTest.main(JDBCTest.java:15)Kind regards,
    Christopher L. Simons

  • How to know the consumer_group belong to which plan

    Dear all,
    How to know the consumer_group belong to which plan? I found a consumer_group name TEST in table DBA_RSRC_CONSUMER_GROUPS
    , but I can not locate it belong to which Plan.

    Do you have enterprise manager db console configured, then its easy to drill to find that information through few clicks. Not sure what's the sql query to get it. if you find one then do post here.

  • How can find the location of my iPad when location services is off?

    How can find the location of my iPad when location services is off?

    If you're wanting to know if you can locate your iPad though iCloud, without Find my device enabled and without power, you won't be able to locate it.

  • How to know the full path which is being used in the dataconnection .

    How to know the full path which is being used in the dataconnection without going and looking into coding.
    I am new to crystal reports.
    Plz advice.Thanks in advance
    Jay

    This forum is dedicated to topics related to custom application development or deployment with Crystal Reports in .Net. This includes full versions of Crystal Reports as well as those versions of Crystal Reports bundled with Microsoft Visual Studio .Net.
    As you do not want to do any coding, this query is in the wrong forum. However, in most versions of Crystal Reports, you can look up the database connection information by simply opening the report in the CR designer. Then go to the database menu and select "Set Datasource Location..."
    Ludek

  • How to use the location reminder

    When I first accessed the new reminders app I clicked 'do not use my location'. However, I want to use the location reminder, but I can not find it in my settings to change my preferences. Anyone know how to turn the location on? Does it even work on 3GS?

    This worked for me as well.  Thanks!
    shafir,
    I had the same problem. By trial and error I turned off the reminders coming from my work-place microsoft exchange server account in "Mail, Contacts, Calendars". Left mail, and calendar, contacts etc on but turned off reminders. The only reminders in "Mail, Contacts, Calendars" that I left on is in iCloud.
    The reminder app then appeared in the "location services" list and can be turned on.

  • How to know the items cost from the production order.

    Dear friends,
    When We close a production order, if we go to the summary tab we can see the total cost of the real component and cost of the real item.   My question is how to know the cost of every component used for the real product? I run the stock Audit  report, and there I see a field named Calcprice, in what table where can I find this field? to get the cost individual for each component in the moment i close the PO.
    Thanks a lot.
    Daniel

    Thanks a lot to everybody. 
    You are right Thanga,
    That is the data I need, but how can I get it via query because I dont find the field to know the cost in the exactly moment when is created the receipt of productiion.  I was trying to locate in tables IGN1 -- IGN12 but I dont get the cost field.
    Do you have any idea how can I make a report?
    Best Regards,
    Daniel

Maybe you are looking for