Tracing users when trying to connect

dear all :
i want to trace users when trying to connect to database to khnow if their request accepted or refused .
i want just this not sql trace

create or replace trigger logon_trigger
after logon on database
begin
insert into logon_users values(sys_context('userenv','session_user'));
end;
/

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

  • Error when trying to connect in synch manager

    Hi there,
    When trying to connect to an administration in synch manager, an error appears: SBO Error #-111: Failed to Connect to SBOCommon
    System:
    SAP Business One 2007A PL42
    SQL Server 2005
    SAP Webtools 2007 PL 13
    Kind regards,
    Andy Grootens

    Hello Andy,
    Can you log in to this instance of business one normally?
    Did you set the username and password to connect in the synch manager?
    Have you recently changed the users password?
    James

  • Have been using FaceTime for long time with same person, for the last two weeks when trying to connect, we get connection failed message, something change in settings that we should look at?

    Now getting FaceTime failed message when trying to connect with a person that were connecting successfully with up unto two weeks ago, has something changed?

    Take a look around you here in this forum. Many people are talking about having problems using FaceTime. A few users claim to have contacted Apple and Apple says that they are aware of an issue with FaceTime and that they are working on it.
    Some users claim that upgrading to iOS 7 solved there problem with FaceTime. Take a look around the forum and read some of the other discussions.

  • Authorization failed when trying to connect Hyperion to BW 7.0

    Hello gurus,
    Using Hyperion interactive Reporting Studio, I try to access BW cubes.
    I select OLE DB as connection type and SAP BW OLE DB provider, I am prompted for a BW system to connect to.
    I then get the following error message:
    OLE Error: 80040e4d
    Error Source: MDrmSAP.2
    Error Desciption: Authorization failed.
    Using the same BW provider and the same BW user, I am able to connect form Excel.
    So I wonder what the problem is.
    Help really appreciated.
    Alex-

    Hi Ingo,
    I do not get any error while using the Universe Designer, I get this error when trying to connect a SAP BW related universe in Crystal Reports. There is no problem at all with WebIntelligence by the way. It is possible to connect a SAP BW related universe in WebIntelligence.
    I use BO XI 3.0 with Crystal Reports 2008 and the SAP Integrations Kit client components are installed on the client machine.
    Nevertheless the BO Enterprise system is not configured with SAP Authentification, but with an own authentification.
    Best Regards,
    Thomas

  • Getting Error when trying to connect to the Primavera database. PPM V7 SP3

    Hi Guys,
    Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'mailService' defined in class path resource [com/primavera/bre//com/primavera/bre/integration/intgconf.xml]: Invalid destruction signature; nested exception is org.springframework.beans.factory.support.BeanDefinitionValidationException: Couldn't find a destroy method named 'destroy' on bean with name 'mailService'
    I have looked into the intgserver.jar under P6IntegrationAPI/lib and looked the com.primavera.infr.srvcs.MailServiceImpl.java and can see that there is no destroy method whereas it is defined in the com.primavera.bre.intergration.intgconf.xml as below
    <!-- provides mail services -->
    <bean id="mailService" class="com.primavera.infr.srvcs.MailServiceImpl" init-method="init" scope="singleton" destroy-method="destroy"*+>
    <property name="adminManager"><ref bean="adminManager"/></property>
    <property name="threadPool"><ref bean="threadPool"/></property>
    <property name="settingsManager"><ref bean="settingsManager"/></property>
    </bean>
    I get the above error when trying to connect to the Primavera database. I use PPMV7 SP3 and I have installed the Integration API from EPPMV7 bundle.
    My demo's are working fine.
    Any help would be appreciated.
    Thanks,
    Kajal.

    Hi Marc,
    I am using a userid (is an admin)
    Using global login method and provided userid & password in integration settings.
    In the machine profiles, provided userid, password and domin.
    Not providing domain in weblogin.
    With all the above I am still getting error "Could not authenticate the specified user. %0" for HFM application
    And with the same settings I am not getting any error to connect to essbase cube.
    Any suggestions?
    Thanks
    Krishna

  • ORA-03113 when trying to connect to database

    RDBMS Version:: 9.2.0.6
    Operating System and Version:: Win2003 Small Business Server
    Error Number (if applicable):: ORA-03113
    Server Net Version:: 9.2.0.6
    Client Operating System and Version:: Solaris10
    Client Net Version:: 2.1.3
    ORA-03113 when trying to connect to database
    I've currently a 7.1.3 client on SUN Solaris (5.10 Generic_118844-26 i86pc i386 i86pc) where I want to connect to the 9.2.0.6 database on a Win2003 Server hardware.
    When i try to connect via SQL*Plus (Release 3.1.3.4.1), I get ORA-03113. Looking into the listener resp. alertfile on the server, I can see that the connectiorequest is recognized, but immediately answered by an ORA-0600, producing also trc-files.
    listener: 25-MAI-2007 09:37:23 * (CONNECT_DATA=(SID=HTASQL)(CID=(PROGRAM=)(HOST=eklvpa)(USER=sat250))) * (ADDRESS=(PROTOCOL=tcp)(HOST=172.17.233.3)(PORT=32790)) * establish * HTASQL * 0
    alert: ORA-00600: internal error code, arguments: [12333], [26], [0], [115], [], [], [], []
    Activating traces on the client-side showed the following errors:
    -<ERROR>- ntus2err: sd=8, op=1, resnt[0]=511, resnt[1]=2, resnt[2]=0
    -<ERROR>- nserror: nsres: id=0, op=65, ns=12541, ns2=12560; nt[0]=511, nt[1]=2, nt[2]=0
    -<ERROR>- nsopen: unable to open transport
    -<ERROR>- nsprecv: transport read error
    -<ERROR>- nserror: nsres: id=0, op=68, ns=12537, ns2=12560; nt[0]=507, nt[1]=0, nt[2]=0
    -<ERROR>- osnqrc: wanted 1 got 0, type 0
    -<ERROR>- osnqper: error from osnqrc
    -<ERROR>- osnqper: nr err code: 0
    -<ERROR>- osnqper: ns main err code: 12537
    -<ERROR>- osnqper: ns (2) err code: 12560
    -<ERROR>- osnqper: nt main err code: 507
    -<ERROR>- osnqper: nt (2) err code: 0
    -<ERROR>- osnqper: nt OS err code: 0
    -<ERROR>- osnqsm: send-break: failed to send OOB break...
    -<ERROR>- osnqper: error from send-marker
    -<ERROR>- osnqper: nr err code: 0
    -<ERROR>- osnqper: ns main err code: 12583
    -<ERROR>- osnqper: ns (2) err code: 0
    -<ERROR>- osnqper: nt main err code: 0
    -<ERROR>- osnqper: nt (2) err code: 0
    -<ERROR>- osnqper: nt OS err code: 0
    -<ERROR>- osnqbr: returning 3113
    Can anybody help me in determining the problem ? Is there a systemtic incompatibility in connecting a 7.1.3 client to a 9.2 (or even higher) database ?

    Thanks for your reply.
    But the funny thing on this compatibility issues is, that this configuration worked before. The only thing we did, was to setup the client-PC on a new hardware with also a new operating system (upgrading from Solaris 5.8 to 5.10). And from that time we encountered this problem.
    Are there any OS-related problems known or better to say: is (was) ORACLE 7.1.3 supported on Solaris 5.10 ? Should we look for any patches which might help us ?

  • Oracle Fatal error when trying to connect through sqlplus

    Hi,
    I am getting the below error when trying to connect to instance through sqlplus
    Database version is :10.2.0.3
    Operating system= Solaris Operating System (SPARC 64-bit)
    OS version=5.10
    [lscbd07p2*BMC]-\ORACLE>sqlplus
    SQL*Plus: Release 10.1.0.4.0 - Production on Fri Nov 9 07:48:24 2007
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Enter user-name: /as sysdba
    ld.so.1: oracle: fatal: relocation error: file /u01/app/oracle/product/db/10.1.0.4/lib/libjox10.so: symbol kststop_: referenced symbol not found
    ERROR:
    ORA-12547: TNS:lost contact
    Enter user-name:
    Could you all please give me suggestions in order to solve this problem.
    Thanks
    Mannu

    Have you recently patched/upgraded? This sounds like there might have been a problem relinking the executables / libraries, and/or a permissions problem. For example you may be referencing a 32 bit library with your 64 bit client.
    I believe I recently read a similar case - check Metalink for this symptom.
    HTH
    Regards Nigel

  • Loading stalls on message o.sa.aol when trying to connect to links from homepage

    I am using FF5 and aol is my homepage. when trying to connect to a link from homepage the connection stalls and on bottom left of screen it says transferring data from o.sa.aol what is this and what is causing it. Never had a problem before downloading FF5

    Ok,
    Several things.
    AIM Says this about AIM 6.5
    http://www.aim.com/helpfaq/starting_out/getstarted.adp#608
    They have not said anything on AIM 6.8 yet.
    AIM 6.1 worked but is no longer downloadable.
    AIM 5.9 does work but needs more setting up.
    All versions need to do this on the PC
    http://www.ralphjohns.co.uk/page12.html#_Service and allow the app through the Firewall on which ever Windows version they have.
    In AIM 6.1 and above the PC user needs to find the AIM Preferences and select their Camera in Enhanced IM.
    Their Mic should be set in the Audio Devices Control Panel
    IF AIM 5.9 then they need this site at message 570 onwards as the Camera and Mic need to be "Tuned" to the device.
    As there is no record of your end accepting a Ping you may need to set your Routing device to Allow Internet Pings
    8:08 PM Saturday; July 19, 2008

  • I get error message 42032 when trying to connect an iPhone to iTunes. Any ideas how to fix it?

    I get error message 42032 when trying to connect an iPhone to iTunes. Any ideas how to fix it?

    Did you already try these suggestions?
    Check USB connections
    Related errors: 13, 14, 1600-1629, 1643-1650, 2000-2009, 4000, 4005, 4013, 4014, 4016, “invalid response,” and being prompted to restore again after a restore completes.
    If there’s an issue with the USB port, cable, dock, or hub, or if the device becomes disconnected during restore, try troubleshooting the USB connection, then troubleshooting your security software.
    To narrow down the issue, you can also change up your hardware:
    Use another USB cable.
    Plug your cable into a different USB port on your computer.
    Try a different dock connector (or no dock).
    Add (or remove) a USB hub between your device and computer.
    Connect your computer directly to your Internet source, with no routers, hubs, or switches.
    If you checked your connections and are still seeing the error message, check for hardware issues.
    copied from Resolve specific iTunes update and restore errors

  • My ipad will no longer connect to the laptop. it comes up with usb not recognized. also when trying to connect to the power the first time i connect, nothing, but when i unplug from ipad and plug in a second time it charges

    my ipad will no longer connect to the laptop. it comes up with usb not recognized. also when trying to connect to the power the first time i connect, nothing, but when i unplug from ipad and plug in a second time it charges

    yeah tried all that. the only thing that i havent tried is to delete itunes completely and restart. its the same with the ipad. i havent done a master reset. i just think it has to be something rather simple as it acknowledges that i have plugged in the ipad as it makes the noise it just come up usb not recognized. it shows up as an unknown device that doestn have  any drivers
    its driving me round the bend at the minute

  • Error message when  trying to connect Classic 120GB to iTunes    An internal error occurred during: "FindSonarTrackJob". java.lang.NullPointerException

    When trying to connect to iTunes I get this message  
    An internal error occurred during: "FindSonarTrackJob".
    java.lang.NullPointerException

    I too am having this problem and have had, for about a week now.
    I've found that by logging off itunes (if I can), closing it down, and then restarting it, sometimes allows it to work for one transaction (say downloading an updated app). After that it's back to the same error.
    Really annoying.

  • Error message WMC604 in VZAM when trying to connect to 4G using Novatel USB551L.

    VZAM recognizes the modem, and attempts to connect to 4G. After about 10 seconds, a message appears,"Error WMC604, Device could not establish a connection". (I have no problem connecting to 3G, just 4G)
    One clue: If I have "Control Panel>Network Connections>Novotel 551L open when I try to connect, I can watch (if I am connecting to 3G) the modem aquire an IP address and connect. If I am connecting to 4G, there is no such activity shown on Control Panel>Network Connections>Novatel 551L modem. It just does nothing until the error message appears in VZAM. It's as if VZAM is not communicating with the modem although during this time VZAM displays a message "connecting".
     I have created a dial-up connection in Windows 7 according to the Verizon knowledge base article ID=29355 just so I could use 4G, and the modem connects and works just fine. I just wish I get it to connect to 4G using VZAM.
     I am using VZAM version v7.6.3.1(2642f) and one of the things that VZ tech support suggested was replace the SIM card, but that didn't make any difference. I am using Dell XPS 8300 desktop running Win 7 Home Premium,SP1 currently, although problem is the same on my Dell 5160 laptop running Win XP, SP3.
    Hoping someone here on this board can help. I have spent hours on the phone with Verizon tech support and they say they have never heard of this error, and have no clue how to make it go away. In checking Google, I see that it is in fact a fairly common error in VZAM, but no one seems to know how to fix it......Verizon reps on the board feel free to come to my rescue?
    HELP!!!!

    AdamE_VZW
    Thank you for your reply. I checked Device Manager for conflicts and see none. I opened VZAM and Device Manager>Novatel Modem side-by-side on the screen and attemped to connect to 4G using VZAM while watching Device Manager for conflicts. There were none indicated when the WMC604 error appeared in VZAM. According to Device Manager, my Novatel modem driver is version 1.1.12.0 ; dated 12/8/10. The "update driver" button is grayed out so I don't know how to check for a newer version. This version is the one that came on the VZAM install CD I belive.
    Some background about this problem: When I first got this modem and installed the software, it worked as it should. It came up in Global mode and connected to a weak 4G signal that was comming from the Portland OR airport. Because the signal was weak and un-reliable, the modem would constantly shift back to 3G, and then every few minutes back to 4G, over and over. I got tired of putting up with the constant hunting, and, using the diagnostic screen, locked it into EVDO mode until 4G went live in Portland OR in the middle of June. During the time it was in EVDO (3G) mode, I had no problem connecting to 3G using VZAM. When Portland went live, I locked it back to LTE mode, and that was when I discovered the error WMC604 message. This was using my previous computer, a Dell Dimension 4500 desktop, Win XP,SP3, and an external Wilson log-periodic tri-band antenna.  Since Portland went live, my current RSSI for 4G runs around -68db, and SINR varies between -9 to -12 db.
    I recently got my present computer, a Dell XPS-8300 desktop, Core i7, Win 7 Home Premium, SP1. I did a fresh install of VZAM on this new computer using the CD that came with the USB551L modem and then checked online (using 3G) for VZAM updates. It says I have the latest version.  The problem is exactly the same on the new computer as it was on my other 2 computers. That tells me that the problem must lie with the modem firmware or hardware, because the problem follows the modem, no matter what computer it is hooked up to. I even took it back to the Verizon store where I got it and they hooked it up to one of their computers and got the same error message when trying to connect to 4G. 3G worked properly
    As I mentioned before, the modem instantly connects to 4G using the Win 7 dial-up connection I created and gives pretty good speeds, about 10MB down and 4-5MB up, according to SpeedCheck.com.
    I can use it the way it is, it is just frustrating that it won't work using VZAM.
    Thank you for your attention and help,
    Inst_Tech

  • Blue screen when trying to connect ipod

    When trying to connect my ipod to my computer it reboots it into a blue screen that looks something like this...
    STOP: 000000007F (0000000008, 0X80154000 etc, etc.)
    minidump something something.
    I looked in my minidump folder but there was nothing in it. Any suggestions?

    Okay.
    Let's see if we can get a minidump generated for the crash.
    1) Open your system control panel (Start->Control Panels->System).
    2) Select the "Advanced" tab.
    3) Click the "Startup and Recover" section's "Settings" button
    4) Verify that under "System Failure" the "Automatically restart" checkbox is not checked.
    With those settings in place, does a minidump file get generated for the crash?

  • 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

Maybe you are looking for

  • Short dump in MIGO and VL02N when upgrading from 46C to ECC 6.0

    Hello, We are doing an upgrade from R/3 46C to ECC 6.0 and we face a shortdump in trx MIGO (upon saving the document). DBIF_RSQL_INVALID_REQUEST a BKPF_INSERT in program SAPLF005 The same shortdump happens when doing a Goods Issue on the SD side. Loo

  • SELECT from MySQL, INSERT into Oracle

    Hallo, I am new to Java. My task is to collect data from about 30 tables inside MySQL database and then insert it to similar tables in Oracle. Script should copy data one a day, during the night. Number of rows in each table is about 30,000. MySQL ve

  • Firefox downloads of new programs

    I've been used to firefox for a while, and Like it a lot compared to Safari. One Problem I have is that when I download a new program, such as a messenger or other type, A drive for that program appears on my desktop. I don't like to have them there,

  • How to find page subtotal in tables in a smartform?

    Hi All,    Can anyone please help me how to find the page subtotal of any field thats populated in a table in a smartform?

  • Where do i find 'storage' on snow leopard ?

    Hi. I'd like to upgrade to Mavericks but not sure how much GB I need from my Internet Provider. When I tried to download Mavericks, I went way over my monthly allowance and my usage bill doubled ! I now have an icon on my desktop inviting me to insta