URGENT: Error:  Failed to Load JDBC/ODBC Driver

I have created a database in Access and created user interface for it. Whenever I run the program from DOS (i.e java CarRental) the program begins but when I try to add a customer or add a vehicle I get the error java.lang.ClassNotFoundException: com.ms.jdbc.odbc.JdbcOdbcDriver.
However, if I run it directly from MVisual J++ 6 it connects to the database fine. I have installed J2SDK 1_4 on my computer. Should I make changes to the following code?
String url = "jdbc:odbc:CarRental";
               try{
     Class.forName( "com.ms.jdbc.odbc.JdbcOdbcDriver" );
     connection = DriverManager.getConnection(url);
Since I downloaded J2SDK does it need to be "sun.jdbc.odbc.JdbcOdbcDriver"?
Please help- time is running thin!
Thanks
Angie

The correct classname for the JDBC:ODBC bridge is
sun.jdbc.odbc.JdbcOdbcDriver
Thomas

Similar Messages

  • Sun IDM Repositor Configuration Error: Failed to load JDBC Driver

    Hi Gurus,
    I am new to Java IDM and predictably failed in my first attempt to install Java IDM in a Windows machine with SQL Server 2000 SP3.
    I followed the Installation document step by step and I think I din' t miss any!!.. But still I got caught by an error, here it is:
    I successfully installed IDM but failed while configuring Repository. I have downloaded the JDBC driver from Microsoft for SQL Server 2000, SP3. Then after that I copied the Jar from JDBC driver folder to
    %WSHOME%/bin/lib folder. After this I launched the Repository configuration setup.
    I got the following error while trying to connect the waveset database with Repository type as SQL Server (JDBC Driver)
    com.waveset.util.ConfigurationError: Failed to load JDBC Driver 'com.microsoft.sqlserver.jdbc.SQLServerDriver':
    ==> java.lang.ClassNotFoundException: com.microsoft.sqlserver.jdbc.SQLServerDriver
    The Parameters that I have given for connection are:
    URL: jdbc:sqlserver://127.0.0.1:1433;DatabaseName=waveset
    JDBC Driver: com.microsoft.sqlserver.jdbc.SQLServerDriver
    Connect as User: waveset
    Connect Password: waveset
    I have created the database and granted all access to user waveset.
    Please help me come out of this. I tried dropping and recreating the database with a different name. Still it did not work, looks like it is a JDBC driver specific issue. Please guide me if I did anything wrong.
    Appreciate any help
    Thanks

    Open your driver jar using winzip or something and check if the class: com.microsoft.sqlserver.jdbc.SQLServerDriver is present in the jar. I think you need to use a different class name. or your jar file is wrong. I think there are separate jars for SQL server 2000 and for SQL Server 2005.

  • Failed to load JDBC driver

    I am trying to run a program and keep getting the error Failed to load JDBC driver. java.lang.ClassNotFoundException
    How can I correct this?

    I was just trying to execute this example from Deitel's Java book.
    import java.awt.*;
    import java.sql.*;
    import java.util.*;
    import javax.swing.*;
    public class DisplayAuthors extends JFrame {
       // JDBC driver name and database URL
       static final String JDBC_DRIVER = "com.ibm.db2j.jdbc.DB2jDriver";
       static final String DATABASE_URL = "jdbc:db2j:books";
       // declare Connection and Statement for accessing
       // and querying database
       private Connection connection;
       private Statement statement;
       // constructor connects to database, queries database, processes
       // results and displays results in window
       public DisplayAuthors()
          super( "Authors Table of Books Database" );
          // connect to database books and query database
          try {
             // specify location of database on filesystem
             System.setProperty( "db2j.system.home", "C:/Cloudscape_5.0" );
             // load database driver class
             Class.forName( JDBC_DRIVER );
             // establish connection to database
             connection = DriverManager.getConnection( DATABASE_URL );
             // create Statement for querying database
             statement = connection.createStatement();
             // query database
             ResultSet resultSet =
                statement.executeQuery( "SELECT * FROM authors" );
             // process query results
             StringBuffer results = new StringBuffer();
             ResultSetMetaData metaData = resultSet.getMetaData();
             int numberOfColumns = metaData.getColumnCount();
             for ( int i = 1; i <= numberOfColumns; i++ )
                results.append( metaData.getColumnName( i ) + "\t" );
             results.append( "\n" );
             while ( resultSet.next() ) {
                for ( int i = 1; i <= numberOfColumns; i++ )
                   results.append( resultSet.getObject( i ) + "\t" );
                results.append( "\n" );
             // set up GUI and display window
             JTextArea textArea = new JTextArea( results.toString() );
             Container container = getContentPane();
             container.add( new JScrollPane( textArea ) );
             setSize( 300, 100 );  // set window size
             setVisible( true );   // display window
          }  // end try
          // detect problems interacting with the database
          catch ( SQLException sqlException ) {
             JOptionPane.showMessageDialog( null, sqlException.getMessage(),
                "Database Error", JOptionPane.ERROR_MESSAGE );
             System.exit( 1 );
          // detect problems loading database driver
          catch ( ClassNotFoundException classNotFound ) {
             JOptionPane.showMessageDialog( null, classNotFound.getMessage(),
                "Driver Not Found", JOptionPane.ERROR_MESSAGE );           
             System.exit( 1 );
          // ensure statement and connection are closed properly
          finally {
             try {
                statement.close();
                connection.close();           
             // handle exceptions closing statement and connection
             catch ( SQLException sqlException ) {
                JOptionPane.showMessageDialog( null,
                   sqlException.getMessage(), "Database Error",
                   JOptionPane.ERROR_MESSAGE );
                System.exit( 1 );
       }  // end DisplayAuthors constructor
       // launch the application
       public static void main( String args[] )
          DisplayAuthors window = new DisplayAuthors();     
          window.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
    }  // end class DisplayAuthors

  • Log4j:ERROR Failed to load driver

    I want to use log4j to log information,my jdk version is 1.5.0_06,and my oracle version is 9.2.0.1.0,my web.xml and servlet is follows:
    web.xml
    <servlet>          
    <display-name>LogServlet</display-name>
    <servlet-name>LogServlet</servlet-name>
    <servlet-class>
    test.a
    </servlet-class>
    <init-param>
    <param-name>log4j-config-file</param-name>
    <param-value>
    /WEB-INF/log4j.properties
    </param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
    </servlet>
    /*a.java*/
    package test;
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import org.apache.log4j.*;
    public class a extends HttpServlet{
    public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException{ }
    public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException{ }
    public void init() throws ServletException{
    String prefix = getServletContext().getRealPath("/");
    String file = getServletConfig().getInitParameter("log4j-config-file");
    if (file != null) {
    PropertyConfigurator.configure(prefix + file);
    /*log4j.properties*/
    log4j.rootLogger=DEBUG,DATABASE
    log4j.addivity.org.apache=true
    log4j.appender.DATABASE.Threshold=INFO
    log4j.appender.DATABASE=org.apache.log4j.jdbc.JDBCAppender
    log4j.appender.DATABASE.URL=jdbc:oracle:thin:@192.1.1.2:1521:Ora
    log4j.appender.DATABASE.driver=oracle.jdbc.driver.OracleDriver
    log4j.appender.DATABASE.user=scott
    log4j.appender.DATABASE.password=tiger
    log4j.appender.DATABASE.sql=INSERT INTO test VALUES('%m')
    log4j.appender.DATABASE.layout=org.apache.log4j.PatternLayout
    When I start Tomcat,it raise following error:
    log4j:ERROR Failed to load driver
    java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver
    at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1352)
    at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1198)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:164)
    at org.apache.log4j.jdbc.JDBCAppender.setDriver(JDBCAppender.java:351)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at org.apache.log4j.config.PropertySetter.setProperty(PropertySetter.java:205)
    at org.apache.log4j.config.PropertySetter.setProperty(PropertySetter.java:164)
    at org.apache.log4j.config.PropertySetter.setProperties(PropertySetter.java:129)
    at org.apache.log4j.config.PropertySetter.setProperties(PropertySetter.java:96)
    at org.apache.log4j.PropertyConfigurator.parseAppender(PropertyConfigurator.java:654)
    at org.apache.log4j.PropertyConfigurator.parseCategory(PropertyConfigurator.java:612)
    at org.apache.log4j.PropertyConfigurator.configureRootCategory(PropertyConfigurator.java:509)
    at org.apache.log4j.PropertyConfigurator.doConfigure(PropertyConfigurator.java:415)
    at org.apache.log4j.PropertyConfigurator.doConfigure(PropertyConfigurator.java:316)
    at org.apache.log4j.PropertyConfigurator.configure(PropertyConfigurator.java:324)
    at test.a.init(a.java:20)
    at javax.servlet.GenericServlet.init(GenericServlet.java:211)
    at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1105)
    at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:932)
    at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3915)
    at org.apache.catalina.core.StandardContext.start(StandardContext.java:4176)
    at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:759)
    at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:739)
    at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:524)
    at org.apache.catalina.startup.HostConfig.deployDirectory(HostConfig.java:910)
    at org.apache.catalina.startup.HostConfig.deployDirectories(HostConfig.java:873)
    at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:474)
    at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1118)
    at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:310)
    at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1020)
    at org.apache.catalina.core.StandardHost.start(StandardHost.java:718)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1012)
    at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:442)
    at org.apache.catalina.core.StandardService.start(StandardService.java:450)
    at org.apache.catalina.core.StandardServer.start(StandardServer.java:700)
    at org.apache.catalina.startup.Catalina.start(Catalina.java:551)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:275)
    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413)
    I have put all jar file of the directory C:\oracle\ora92\jdbc\lib,such as classes12.jar,classes12_g.jar,classes12dms.jar,classes12dms_g.jar,nls_charset11.jar,nls_charset12.jar,ocrs12.jar,ojdbc14.jar,ojdbc14_g.jar into the direcory tomcat5\webapps\ROOT\WEB-INF\lib
    But Tomcat still raise above error? Why? I am puzzled with it for a long time! Anybody meet with above question? Any idea will be appreciated!

    Well, classes12.zip is a fairly old driver, especially for JDK 1.5, and even for Oracle 9. So, I would first suggest visiting Oracle's JDBC driver download sie.
    If that fails, please post the code you are using to connect to your database (please do not post the real domain or your user name or password). :^)
    - Saish

  • LibGL error: failed to load driver: swrast

    I'm trying to launch Dungeon Defenders but this happens:
    $ ./DungeonDefenders --LIBGL_DEBUG=verbose
    Dungeon Defenders: Installed in '/home/casa/Giochi/DungeonDefenders'.
    libGL error: failed to load driver: swrast
    libGL error: Try again with LIBGL_DEBUG=verbose for more details.
    X Error of failed request: GLXUnsupportedPrivateRequest
    Major opcode of failed request: 153 (GLX)
    Minor opcode of failed request: 16 (X_GLXVendorPrivate)
    Serial number of failed request: 239
    Current serial number in output stream: 242
    It's the same for other gamese (Aquaria, Amnesia: The Dark Descent, Penumbra: Overture, ...).
    Can't find much with Google and can't understand what this "swrast" is.
    I'm NOT using a double VGA system (like any modern iCore + nVIDIA + Optimus) but an old system with Core 2 Duo + GTX260.
    Als I don't understand how to do this:
    Try again with LIBGL_DEBUG=verbose for more details
    Last edited by buntolo (2012-12-22 21:37:59)

    buntolo wrote:
    I'm trying to launch Dungeon Defenders but this happens:
    $ ./DungeonDefenders --LIBGL_DEBUG=verbose
    Dungeon Defenders: Installed in '/home/casa/Giochi/DungeonDefenders'.
    libGL error: failed to load driver: swrast
    libGL error: Try again with LIBGL_DEBUG=verbose for more details.
    X Error of failed request: GLXUnsupportedPrivateRequest
    Major opcode of failed request: 153 (GLX)
    Minor opcode of failed request: 16 (X_GLXVendorPrivate)
    Serial number of failed request: 239
    Current serial number in output stream: 242
    It's the same for other gamese (Aquaria, Amnesia: The Dark Descent, Penumbra: Overture, ...).
    Can't find much with Google and can't understand what this "swrast" is.
    I'm NOT using a double VGA system (like any modern iCore + nVIDIA + Optimus) but an old system with Core 2 Duo + GTX260.
    Als I don't understand how to do this:
    Try again with LIBGL_DEBUG=verbose for more details
    use it like this :
    LIBGL_DEBUG=verbose ./DungeonDefenders
    swrast is a software driver that is used as a fallback if there's no accelerated video available.
    please post the output of glxinfo .

  • LibGL error: failed to load driver: i965 [Solved]

    Executing some wine programs I get this messages:
    libGL error: failed to load driver: i965
    libGL error: Try again with LIBGL_DEBUG=verbose for more details.
    Following the suggestion I get:
    libGL: OpenDriver: trying /usr/lib32/xorg/modules/dri/tls/i965_dri.so
    libGL: OpenDriver: trying /usr/lib32/xorg/modules/dri/i965_dri.so
    libGL error: dlopen /usr/lib32/xorg/modules/dri/i965_dri.so failed (/usr/lib32/xorg/modules/dri/i965_dri.so: cannot open shared object file: No such file or directory)
    libGL error: unable to load driver: i965_dri.so
    libGL error: driver pointer missing
    libGL error: failed to load driver: i965
    libGL: OpenDriver: trying /usr/lib32/xorg/modules/dri/tls/swrast_dri.so
    libGL: OpenDriver: trying /usr/lib32/xorg/modules/dri/swrast_dri.so
    What is that lib32 xorg module file that appears missing?
    Some informations that might be useful...
    # lspci | grep VGA
    00:02.0 VGA compatible controller: Intel Corporation 3rd Gen Core processor Graphics Controller (rev 09)
    # glxinfo | grep 'dir\|^Open'
    direct rendering: Yes
    OpenGL vendor string: Intel Open Source Technology Center
    OpenGL renderer string: Mesa DRI Intel(R) Ivybridge Mobile
    OpenGL version string: 3.0 Mesa 9.0.2
    OpenGL shading language version string: 1.30
    OpenGL extensions:
    # uname -a
    Linux macthearcher 3.7.4-1-ARCH #1 SMP PREEMPT Mon Jan 21 23:05:29 CET 2013 x86_64 GNU/Linux
    Last edited by ezzetabi (2013-02-08 09:33:19)

    According to wine#Graphics_Drivers it is lib32-intel-dri.

  • Jdbc:odbc driver connection issues

    I need to use the jdbc:odbc driver to access a non-oracle db from a jsp. I am sure my dsn is fine as I can use a non JSP java app to connect to the odbc db. I have loaded the sun.jdbc.odbc classes in the schema I am working in as it is not loaded by default in 9.2.0.7 currently I am on a windows system. I have found the following:
    public static void doTest()throws Exception{
    // load the local Oracle Driver
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    connLocalOracle = new OracleDriver().defaultConnection();
    // load the odbc driver
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    if I exit at this point the jsp does not through an exception
    however if I include the line:
    connODBC = DriverManager.getConnection(odbcURL,"XX","XX");
    I get the error:
    SQL> execute do_jdbc_odbc_test;
    BEGIN do_jdbc_odbc_test; END;
    ERROR at line 1:
    ORA-29532: Java call terminated by uncaught Java exception:
    java.lang.UnsatisfiedLinkError: sun.jdbc.odbc.JdbcOdbc.allocConnect
    ORA-06512: at "TU1.DO_JDBC_ODBC_TEST", line 0
    ORA-06512: at line 1
    So I am assuming I am loading the driver but the driver is not talking to the odbc configuration in windows.
    What permissions would I need to give to the user to allow this connection to occur?
    How can I find out if this is indeed the case?
    If not how can I make this connection happen using ODBC?

    If by jsp you mean Java Stored Procedure, the hybrid JDbc-ODBC stack won't work. You can connect to non-Oracle RDBMS from within Java in the database by using a pure Java JDBC driver of the target RDBM. Fwiw, a complete example connecting to SQl Server from with JavaDB is described in my upcoming book. (See http://db360.blogspot.com/)
    Kuassi

  • Urgent! Problems with bridge JDBC-ODBC

    Hello,
    I have found out that JDBC-ODBC bridge in JDK 1.4.1 don't works fine, because, if you want to store text largest 254 characters in a field type text in one record of a Access database's table, it generate a SQLError, I have tried with EasySoft JDBC_ODBC and it works, with it I could store text fields largest than 254 characters, but I have new problems, EasySoft bridge is not free, and don't let store nulls in fields type Date [with PreparedStatement x, x.setDate(theDate)] (raise a SQLError), in the other hand, JDKs bridge do it. Somebody knows if exists JDCB-ODBC free drivers more suitables than JDK's includes, or if exists upgrades?
    Is very urgent!, Thanks a lot
    (Sorry, my english is very poor)

    I have tried it, Is there where I found the EasySoft's JDBC-ODBC driver, but the result is: one problems out, yes, now with this driver I can store String largest 254 characters in fields type MEMO of a table in Access Database, but two new problems, 1st. is a trial version, (requiere paid), and 2nd. don't let store nulls in fields type Date when JDKs JDBC-ODBC bridge lets, and the aplication needs leave this fields blanks.
    Any other idea?
    Thank

  • Failed to load Hardware monitor driver

    I'm running XP and getting  a "Failed to load Hardware monitor driver" message when I do the following.  Log Off\Switch Users.  When the new user comes up I get the error message along with a request that I send the following files to Microsoft.   C:\WINDOWS\minidump\Mini042404-01.dmp and C:\DOCUME~1\HEIDIN~1\LOCALS~1\Temp\WER1.tmp.  It then blue screens and reboots.  I can boot up into all users without any problem.  I only have the problem if I try to switch from one user to another withour rebooting first.  Is this a problem with "Live Monitor" or is it a problem with my Samsung Monitor?  I downloaded a Monitor Driver from Microsoft recently.  This makes the one and  only time I have ever seen a driver download on the Microsoft update page and it happened to be for my Monitor but it seemed to be the same version that came with it.  
    MSI 875P NEOR2 (bios 1.9)
    Intel P4 3G 800FSB (HT enabled)
    2x512MB dual Memory
    FX 5900 256mb by Gainward
    54xCD-ROM, DVD-Writer
    Samsung 19" LCD Display SyncMaster 955DF

    If you are running core centre on both profiles, this will happen. Fast user switching causes CC to load again, giving the message u have and will crash XP. U need to log off one user, then switch.
    Alternativly make sure CC is not installed as a shortcut in all users. I place mine in my gaming profile only and dont use it in any other one.
    If u r not running CC, mmmm, dunno  

  • Depmod error: failed to load symbols from ...

    Hello,
    I installed today arch and the installation went well except nvidia-340xx install gave me this error messsage; now, X wont start.
    depmod ERROR: failed to load symbols from /lib/modules/3.16.4-1-ARCH/kernel/drivers/usb/wusbcore/wusbcore.ko.gz invalide argument
    Any idea?

    Scimmia wrote:failed to load symbols doesn't sound good. It may need a reinstall of the kernel if something got corrupted on disk.
    This is exactly what i have done and the error message went away.
    But at boot still hangs.
    This is the Xorg.1.log file:
    [ 46.713]
    X.Org X Server 1.16.1
    Release Date: 2014-09-21
    [ 46.713] X Protocol Version 11, Revision 0
    [ 46.714] Build Operating System: Linux 3.16.1-1-ARCH x86_64
    [ 46.714] Current Operating System: Linux myhost 3.16.4-1-ARCH #1 SMP PREEMPT Mon Oct 6 08:22:27 CEST 2014 x86_64
    [ 46.714] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=33a28745-d878-4b98-a9ab-dee48b53a9b2 rw quiet
    [ 46.714] Build Date: 21 September 2014 10:53:13AM
    [ 46.714]
    [ 46.714] Current version of pixman: 0.32.6
    [ 46.715] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 46.715] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 46.716] (==) Log file: "/var/log/Xorg.1.log", Time: Thu Oct 16 15:26:17 2014
    [ 46.717] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 46.717] (==) No Layout section. Using the first Screen section.
    [ 46.717] (==) No screen section available. Using defaults.
    [ 46.717] (**) |-->Screen "Default Screen Section" (0)
    [ 46.717] (**) | |-->Monitor "<default monitor>"
    [ 46.717] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 46.717] (==) Automatically adding devices
    [ 46.717] (==) Automatically enabling devices
    [ 46.717] (==) Automatically adding GPU devices
    [ 46.717] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 46.717] Entry deleted from font path.
    [ 46.718] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 46.718] Entry deleted from font path.
    [ 46.718] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 46.718] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 46.718] Entry deleted from font path.
    [ 46.718] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 46.718] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 46.718] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 46.718] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 46.718] (II) Loader magic: 0x818d80
    [ 46.718] (II) Module ABI versions:
    [ 46.718] X.Org ANSI C Emulation: 0.4
    [ 46.718] X.Org Video Driver: 18.0
    [ 46.718] X.Org XInput driver : 21.0
    [ 46.718] X.Org Server Extension : 8.0
    [ 46.725] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c2
    [ 46.725] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 46.726] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 8 paused 1
    [ 46.726] (EE) Error systemd-logind returned paused fd for drm node
    [ 46.726] (II) systemd-logind: releasing fd for 226:0
    [ 46.729] (--) PCI:*(0:1:0:0) 10de:0404:0000:0000 rev 161, Mem @ 0xfa000000/16777216, 0xd0000000/268435456, 0xf8000000/33554432, I/O @ 0x0000df00/128, BIOS @ 0x????????/131072
    [ 46.729] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 46.729] (II) LoadModule: "glx"
    [ 46.730] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 46.775] (II) Module glx: vendor="NVIDIA Corporation"
    [ 46.775] compiled for 4.0.2, module version = 1.0.0
    [ 46.775] Module class: X.Org Server Extension
    [ 46.775] (II) NVIDIA GLX Module 340.46 Wed Sep 24 13:54:14 PDT 2014
    [ 46.775] (==) Matched nouveau as autoconfigured driver 0
    [ 46.775] (==) Matched nvidia as autoconfigured driver 1
    [ 46.775] (==) Matched nv as autoconfigured driver 2
    [ 46.775] (==) Matched modesetting as autoconfigured driver 3
    [ 46.775] (==) Matched fbdev as autoconfigured driver 4
    [ 46.775] (==) Matched vesa as autoconfigured driver 5
    [ 46.775] (==) Assigned the driver to the xf86ConfigLayout
    [ 46.775] (II) LoadModule: "nouveau"
    [ 46.775] (WW) Warning, couldn't open module nouveau
    [ 46.775] (II) UnloadModule: "nouveau"
    [ 46.775] (II) Unloading nouveau
    [ 46.775] (EE) Failed to load module "nouveau" (module does not exist, 0)
    [ 46.775] (II) LoadModule: "nvidia"
    [ 46.775] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 46.776] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 46.776] compiled for 4.0.2, module version = 1.0.0
    [ 46.776] Module class: X.Org Video Driver
    [ 46.776] (II) LoadModule: "nv"
    [ 46.777] (WW) Warning, couldn't open module nv
    [ 46.777] (II) UnloadModule: "nv"
    [ 46.777] (II) Unloading nv
    [ 46.777] (EE) Failed to load module "nv" (module does not exist, 0)
    [ 46.777] (II) LoadModule: "modesetting"
    [ 46.777] (WW) Warning, couldn't open module modesetting
    [ 46.777] (II) UnloadModule: "modesetting"
    [ 46.777] (II) Unloading modesetting
    [ 46.777] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 46.777] (II) LoadModule: "fbdev"
    [ 46.777] (WW) Warning, couldn't open module fbdev
    [ 46.777] (II) UnloadModule: "fbdev"
    [ 46.777] (II) Unloading fbdev
    [ 46.777] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 46.777] (II) LoadModule: "vesa"
    [ 46.777] (WW) Warning, couldn't open module vesa
    [ 46.778] (II) UnloadModule: "vesa"
    [ 46.778] (II) Unloading vesa
    [ 46.778] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 46.778] (II) NVIDIA dlloader X Driver 340.46 Wed Sep 24 13:34:03 PDT 2014
    [ 46.778] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 46.778] (++) using VT number 2
    [ 46.778] (--) controlling tty is VT number 2, auto-enabling KeepTty
    [ 46.778] (II) Loading sub module "fb"
    [ 46.778] (II) LoadModule: "fb"
    [ 46.778] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 46.778] (II) Module fb: vendor="X.Org Foundation"
    [ 46.778] compiled for 1.16.1, module version = 1.0.0
    [ 46.778] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 46.778] (WW) Unresolved symbol: fbGetGCPrivateKey
    [ 46.778] (II) Loading sub module "wfb"
    [ 46.778] (II) LoadModule: "wfb"
    [ 46.778] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 46.779] (II) Module wfb: vendor="X.Org Foundation"
    [ 46.779] compiled for 1.16.1, module version = 1.0.0
    [ 46.779] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 46.779] (II) Loading sub module "ramdac"
    [ 46.779] (II) LoadModule: "ramdac"
    [ 46.779] (II) Module "ramdac" already built-in
    [ 46.779] (II) NVIDIA(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 46.779] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
    [ 46.779] (==) NVIDIA(0): RGB weight 888
    [ 46.779] (==) NVIDIA(0): Default visual is TrueColor
    [ 46.779] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 46.780] (**) NVIDIA(0): Enabling 2D acceleration
    [ 46.904] (II) NVIDIA(0): Display (Acer AL2016W (DFP-0)) does not support NVIDIA 3D
    [ 46.904] (II) NVIDIA(0): Vision stereo.
    [ 46.904] (II) NVIDIA(GPU-0): Found DRM driver nvidia-drm (20130102)
    [ 46.906] (II) NVIDIA(0): NVIDIA GPU GeForce 8400 GS (G84) at PCI:1:0:0 (GPU-0)
    [ 46.906] (--) NVIDIA(0): Memory: 524288 kBytes
    [ 46.906] (--) NVIDIA(0): VideoBIOS: 60.84.68.00.00
    [ 46.906] (II) NVIDIA(0): Detected PCI Express Link width: 16X
    [ 46.909] (--) NVIDIA(0): Valid display device(s) on GeForce 8400 GS at PCI:1:0:0
    [ 46.909] (--) NVIDIA(0): CRT-0
    [ 46.909] (--) NVIDIA(0): CRT-1
    [ 46.909] (--) NVIDIA(0): TV-0
    [ 46.909] (--) NVIDIA(0): Acer AL2016W (DFP-0) (boot, connected)
    [ 46.909] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
    [ 46.909] (--) NVIDIA(GPU-0): CRT-1: 400.0 MHz maximum pixel clock
    [ 46.909] (--) NVIDIA(GPU-0): TV-0: 400.0 MHz maximum pixel clock
    [ 46.909] (--) NVIDIA(0): Acer AL2016W (DFP-0): Internal TMDS
    [ 46.909] (--) NVIDIA(GPU-0): Acer AL2016W (DFP-0): 330.0 MHz maximum pixel clock
    [ 46.909] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 46.909] (**) NVIDIA(0): device Acer AL2016W (DFP-0) (Using EDID frequencies has
    [ 46.909] (**) NVIDIA(0): been enabled on all display devices.)
    [ 46.914] (==) NVIDIA(0):
    [ 46.914] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
    [ 46.914] (==) NVIDIA(0): will be used as the requested mode.
    [ 46.914] (==) NVIDIA(0):
    [ 46.914] (II) NVIDIA(0): Validated MetaModes:
    [ 46.914] (II) NVIDIA(0): "DFP-0:nvidia-auto-select"
    [ 46.914] (II) NVIDIA(0): Virtual screen size determined to be 1680 x 1050
    [ 46.951] (--) NVIDIA(0): DPI set to (99, 98); computed from "UseEdidDpi" X config
    [ 46.951] (--) NVIDIA(0): option
    [ 46.951] (--) Depth 24 pixmap format is 32 bpp
    [ 46.951] (II) NVIDIA: Using 768.00 MB of virtual memory for indirect memory access.
    [ 46.955] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
    [ 46.955] (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X
    [ 46.955] (II) NVIDIA(0): configuration option may not be set correctly. When the
    [ 46.955] (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
    [ 46.955] (II) NVIDIA(0): try to use it to receive ACPI event notifications. For
    [ 46.955] (II) NVIDIA(0): details, please see the "ConnectToAcpid" and
    [ 46.955] (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
    [ 46.955] (II) NVIDIA(0): Config Options in the README.
    [ 46.958] (II) NVIDIA(0): Setting mode "DFP-0:nvidia-auto-select"
    [ 47.037] (==) NVIDIA(0): Disabling shared memory pixmaps
    [ 47.037] (==) NVIDIA(0): Backing store enabled
    [ 47.037] (==) NVIDIA(0): Silken mouse enabled
    [ 47.038] (==) NVIDIA(0): DPMS enabled
    [ 47.038] (II) Loading sub module "dri2"
    [ 47.038] (II) LoadModule: "dri2"
    [ 47.038] (II) Module "dri2" already built-in
    [ 47.038] (II) NVIDIA(0): [DRI2] Setup complete
    [ 47.038] (II) NVIDIA(0): [DRI2] VDPAU driver: nvidia
    [ 47.038] (--) RandR disabled
    [ 47.045] (II) Initializing extension GLX
    [ 47.102] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    [ 47.102] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 47.102] (II) LoadModule: "evdev"
    [ 47.102] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 47.102] (II) Module evdev: vendor="X.Org Foundation"
    [ 47.102] compiled for 1.16.0, module version = 2.9.0
    [ 47.102] Module class: X.Org XInput Driver
    [ 47.102] ABI class: X.Org XInput driver, version 21.0
    [ 47.103] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 28 paused 0
    [ 47.103] (II) Using input driver 'evdev' for 'Power Button'
    [ 47.103] (**) Power Button: always reports core events
    [ 47.103] (**) evdev: Power Button: Device: "/dev/input/event3"
    [ 47.103] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 47.103] (--) evdev: Power Button: Found keys
    [ 47.103] (II) evdev: Power Button: Configuring as keyboard
    [ 47.103] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
    [ 47.103] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 47.103] (**) Option "xkb_rules" "evdev"
    [ 47.103] (**) Option "xkb_model" "pc104"
    [ 47.103] (**) Option "xkb_layout" "us"
    [ 47.141] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 47.141] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 47.142] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 29 paused 0
    [ 47.142] (II) Using input driver 'evdev' for 'Power Button'
    [ 47.142] (**) Power Button: always reports core events
    [ 47.142] (**) evdev: Power Button: Device: "/dev/input/event2"
    [ 47.142] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 47.142] (--) evdev: Power Button: Found keys
    [ 47.142] (II) evdev: Power Button: Configuring as keyboard
    [ 47.142] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2/event2"
    [ 47.142] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 47.142] (**) Option "xkb_rules" "evdev"
    [ 47.142] (**) Option "xkb_model" "pc104"
    [ 47.142] (**) Option "xkb_layout" "us"
    [ 47.142] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 47.142] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 47.143] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 30 paused 1
    [ 47.143] (EE) Error systemd-logind returned paused fd for drm node
    [ 47.143] (II) systemd-logind: releasing fd for 226:0
    [ 47.144] (II) config/udev: Adding input device Microsoft Microsoft 3-Button Mouse with IntelliEye(TM) (/dev/input/event1)
    [ 47.144] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Applying InputClass "evdev pointer catchall"
    [ 47.144] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 31 paused 0
    [ 47.144] (II) Using input driver 'evdev' for 'Microsoft Microsoft 3-Button Mouse with IntelliEye(TM)'
    [ 47.144] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): always reports core events
    [ 47.144] (**) evdev: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Device: "/dev/input/event1"
    [ 47.144] (--) evdev: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Vendor 0x45e Product 0x40
    [ 47.144] (--) evdev: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Found 3 mouse buttons
    [ 47.144] (--) evdev: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Found scroll wheel(s)
    [ 47.144] (--) evdev: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Found relative axes
    [ 47.144] (--) evdev: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Found x and y relative axes
    [ 47.144] (II) evdev: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Configuring as mouse
    [ 47.144] (II) evdev: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Adding scrollwheel support
    [ 47.144] (**) evdev: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): YAxisMapping: buttons 4 and 5
    [ 47.144] (**) evdev: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 47.144] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:13.0/usb1/1-2/1-2:1.0/0003:045E:0040.0001/input/input1/event1"
    [ 47.144] (II) XINPUT: Adding extended input device "Microsoft Microsoft 3-Button Mouse with IntelliEye(TM)" (type: MOUSE, id 8)
    [ 47.144] (II) evdev: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): initialized for relative axes.
    [ 47.145] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): (accel) keeping acceleration scheme 1
    [ 47.145] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): (accel) acceleration profile 0
    [ 47.145] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): (accel) acceleration factor: 2.000
    [ 47.145] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): (accel) acceleration threshold: 4
    [ 47.145] (II) config/udev: Adding input device Microsoft Microsoft 3-Button Mouse with IntelliEye(TM) (/dev/input/mouse0)
    [ 47.145] (II) No input driver specified, ignoring this device.
    [ 47.145] (II) This device may have been added with another device file.
    [ 47.145] (II) config/udev: Adding input device HDA ATI SB Front Mic (/dev/input/event5)
    [ 47.145] (II) No input driver specified, ignoring this device.
    [ 47.145] (II) This device may have been added with another device file.
    [ 47.146] (II) config/udev: Adding input device HDA ATI SB Rear Mic (/dev/input/event6)
    [ 47.146] (II) No input driver specified, ignoring this device.
    [ 47.146] (II) This device may have been added with another device file.
    [ 47.146] (II) config/udev: Adding input device HDA ATI SB Line (/dev/input/event7)
    [ 47.146] (II) No input driver specified, ignoring this device.
    [ 47.146] (II) This device may have been added with another device file.
    [ 47.146] (II) config/udev: Adding input device HDA ATI SB Line Out (/dev/input/event8)
    [ 47.146] (II) No input driver specified, ignoring this device.
    [ 47.146] (II) This device may have been added with another device file.
    [ 47.147] (II) config/udev: Adding input device HDA ATI SB Front Headphone (/dev/input/event9)
    [ 47.147] (II) No input driver specified, ignoring this device.
    [ 47.147] (II) This device may have been added with another device file.
    [ 47.147] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 47.147] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 47.147] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 32 paused 0
    [ 47.147] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 47.147] (**) AT Translated Set 2 keyboard: always reports core events
    [ 47.148] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 47.148] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 47.148] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 47.148] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 47.148] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 47.148] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 9)
    [ 47.148] (**) Option "xkb_rules" "evdev"
    [ 47.148] (**) Option "xkb_model" "pc104"
    [ 47.148] (**) Option "xkb_layout" "us"
    [ 47.148] (II) config/udev: Adding input device PC Speaker (/dev/input/event4)
    [ 47.148] (II) No input driver specified, ignoring this device.
    [ 47.148] (II) This device may have been added with another device file.
    [ 79.735] (II) evdev: AT Translated Set 2 keyboard: Close
    [ 79.735] (II) UnloadModule: "evdev"
    [ 79.735] (II) systemd-logind: releasing fd for 13:64
    [ 79.763] (II) evdev: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Close
    [ 79.763] (II) UnloadModule: "evdev"
    [ 79.763] (II) systemd-logind: releasing fd for 13:65
    [ 79.826] (II) evdev: Power Button: Close
    [ 79.826] (II) UnloadModule: "evdev"
    [ 79.826] (II) systemd-logind: releasing fd for 13:66
    [ 79.853] (II) evdev: Power Button: Close
    [ 79.853] (II) UnloadModule: "evdev"
    [ 79.853] (II) systemd-logind: releasing fd for 13:67
    [ 80.240] (II) NVIDIA(GPU-0): Deleting GPU-0
    [ 80.242] (EE) Server terminated successfully (0). Closing log file.

  • OBIEE 11g BI Publisher; New Data Set Creation Error "Failed to load SQL"

    Hi,
    I'm trying to create a new SQL data set (from a client machine). I use "query builder" to build the data set. But when I click "OK", it fires the error "Failed to load SQL".
    But strangely, if connect to the OBIEE server's desktop and create the data set it works without any issues. I wonder this would be a firewall issue. If so what are the ports I should open.
    It's a enterprise installation. And we have already open 9703, 9704, and 9706.
    Has anyone came across such a situation?

    Talles,
    First of all you might have more chance of getting a response over in the BIP forum. Other than that all I can think of is: is your MS SQL Server running with mixed mode auth?

  • When trying to upload a document or attach a document in an email Firefox gives me an error "Failed to load CTDFMRES.dll" and stops responding, I have no issues in any other browsers. And I am using Firefox 4, Fixes???

    When trying to upload a document or attach a document in an email Firefox gives me an error "Failed to load CTDFMRES.dll" and stops responding, I have no issues in any other browsers. And I am using Firefox 4, Fixes???

    You don't have to disable any addons or extentions!!!You guys are not going to believe this I figured out the problem it's really dumb...ok here goes the attachment uploader loads seperate so I got to thinking it's a popup so I went to options content and under block pop ups there is an option exceptions click on that and in the box type firefox.com and hit allow pow its fixed!!!!! :-)

  • Error: "failed to load book because the requested resource is missing"

    I book a book via the iPad. The book appeared in my library no problem with the "new" tag and stuff, but when I tap it to read I get an error "failed to load book because the requested resource is missing." Any ideas? I'm on the road, so I haven't synced or backed up or anything..
    I've also verified that I have a good connection, etc. I'm able to hit the "store" button and browse the store no prob, as well as web, etc.
    Any thoughts?

    I believe I may have the answer to these many concerns. 
    When a book is over 20 or so megs, iBook will sometimes make an attempt to download on the iPad (when it should not). This causes problems. Perhaps the one you are experiencing. Therefore you have to wait until you are on a wifi connection before purchasing dictionary-like books. But if you've already made the mistake of downloading, theres no guarantee wifi will correct this. 
    What worked for me (like others have already mentioned) is that if you have an iphone or touch you can download it from there, sync with your computer and sync your iPad later. The book(s) will transfer just fine as long as you have this enabled on your devices.
    Initially this didn't work for me because in my frustration with a prior issue I took the liberty to create another iTunes account. Therefore iPad purchases were not visible on my phone. So be sure to have the same accounts activated on your devices and iTunes. 
    Yet even further diagnostics may need to be explored as I'm still prompted to provide my password every time i open iBooks (as if the download is still pending). Kinda afraid to revert to factory settings over a small issue. In the coming update Apple should fix these problems altogether. Hope this helps!

  • Acrobat fatal error: failed to load core dll

    Hi,
    I have a problem with acrobat reader on my laptop.
    My OS is Vista Home Premium.
    I had Master collection CS4 installed.
    When starting up acrobat reader; i got following error:
    failed to load core dll.
    I went to the log and this is the explenatoin written in there: (i'm dutch speaking)
    Kan activeringscontext voor 'C:\Program Files\Adobe\Reader  9.0\Reader\AcroRd32.dll' niet maken. Fout in manifest of beleidsbestand  '' op regel . Een onderdeelversie die nodig is voor de toepassing  conflicteert met een andere onderdeelversie die reeds actief is.  Conflicterende onderdelen zijn: Onderdeel 1:  C:\Windows\WinSxS\manifests\x86_microsoft.vc80.crt   _1fc8b3b9a1e18e3b_8.0.50727.42_none_db5f52fb98cb24  ad.manifest.  Onderdeel 2: C:\Windows\WinSxS\manifests\x86_microsoft.vc80.crt   _1fc8b3b9a1e18e3b_8.0.50727.762_none_10b2f55f9bffb  8f8.manifest.
    Kan activeringscontext voor 'C:\Windows\system32\BHOManager.dll' niet  maken. Fout in manifest of beleidsbestand '' op regel . Een  onderdeelversie die nodig is voor de toepassing conflicteert met een  andere onderdeelversie die reeds actief is. Conflicterende onderdelen  zijn: Onderdeel 1: C:\Windows\WinSxS\manifests\x86_microsoft.vc80.crt   _1fc8b3b9a1e18e3b_8.0.50727.42_none_db5f52fb98cb24  ad.manifest.  Onderdeel 2: C:\Windows\WinSxS\manifests\x86_microsoft.vc80.crt   _1fc8b3b9a1e18e3b_8.0.50727.762_none_10b2f55f9bffb  8f8.manifest.
    I simultaneously had a problem with Dreamweaver.
    I think all this is caused by an Side By Side configuration issue.
    I've tried to do following steps:
    -redistibrutable 2008 c++ package geinstall
    -system recoverage tool
    -reinstall cs4 master collection
    -uninstall master collection, clean up, install reeware acrobat reader
    -uninstall acrobat reader, ccleaner register issues resolver , also older than 24 uur , reboot,  install acrobat reader freeware
    -revo uninstall tool to remove acrobat
    none of the above actions were successful.
    What could u suggest or give as a solution.
    Atm i'm using an altarnative pdf-reader.
    But as i bought the master collection,
    i'd rather have my adobe acrobat reader pro and dreamweaver working.
    Thanks in advance,
    With friendly regards
    Anton

    Hi Anton
    I am sorry, I do not have an answer just a similar problem.
    I am no expert, but all these manifest files are to ensure that different developers can ensure that the appropriate versions of common libraries are used by particular versions of their software.
    Deatils are below. The original problem was a corrupted manifest file, probably due to a disk error. This resulted in several programs failing to run. In particular I was unable to access backup on my Windows Home Server. From the logs I was able to identify the manifest file in error and located a copy of a file with the same name on another of my computers. Using notepad I then changed the file causing the problem to match the file on the other computer.
    This appeared to resolve all my problems.
    When the Acrobat Reader updated itself, however, the"failed to load core DLL" message appeared. Simply uninstalling all adobe programs and re-installing makes no difference.
    If you have the solution please post.
    If not, I will continue to research this problem.
    Very best wishes
    Graham
    Details from error log and manifest files:
    Acrobat failed to load its core DLL
    Log Name:      Application
    Source:        SideBySide
    Date:          29/10/2010 23:30:07
    Event ID:      80
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      9GHASUSP5QSEx64
    Description:
    Activation context generation failed for "C:\Program Files (x86)\Adobe\Reader 9.0\Reader\AcroRd32.dll".
    Error in manifest or policy file "" on line .
    A component version required by the application conflicts with another component version already active.
    Conflicting components are:.
    Component 1: C:\Windows\WinSxS\manifests\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.4927_none_d 08a205e442db5b5.manifest.
    Component 2: C:\Windows\WinSxS\manifests\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_none_10 b2f55f9bffb8f8.manifest.
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
        <noInheritable></noInheritable>
        <assemblyIdentity type="win32" name="Microsoft.VC80.CRT" version="8.0.50727.4927" processorArchitecture="x86" publicKeyToken="1fc8b3b9a1e18e3b"></assemblyIdentity>
        <file name="msvcr80.dll" hash="b2cd2205044f7cfd822da03b5f8d329ac5f4fcde" hashalg="SHA1"><asmv2:hash xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#"><dsig:Transforms><dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity"></dsig:Transform></dsig:Tra nsforms><dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"></dsig:DigestMethod><dsig:DigestValue>niXcYiF5k0Z3fQ7PBFMJuaYHWTU=</dsig:DigestValue></a smv2:hash></file>
        <file name="msvcp80.dll" hash="984100dac2591da1a03c5146fecc47eb5deabec7" hashalg="SHA1"><asmv2:hash xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#"><dsig:Transforms><dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity"></dsig:Transform></dsig:Tra nsforms><dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"></dsig:DigestMethod><dsig:DigestValue>aW9cDm76mbaI14MUAAx8P0auVdE=</dsig:DigestValue></a smv2:hash></file>
        <file name="msvcm80.dll" hash="34d9d81de781f7566e20e2bd33e410bc80837703" hashalg="SHA1"><asmv2:hash xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#"><dsig:Transforms><dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity"></dsig:Transform></dsig:Tra nsforms><dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"></dsig:DigestMethod><dsig:DigestValue>pyazDrJIgYvW/Y3vCJt/9hpimHA=</dsig:DigestValue></a smv2:hash></file>
    </assembly>
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
        <noInheritable></noInheritable>
        <assemblyIdentity type="win32" name="Microsoft.VC80.CRT" version="8.0.50727.762" processorArchitecture="x86" publicKeyToken="1fc8b3b9a1e18e3b"></assemblyIdentity>
        <file name="msvcr80.dll" hash="10f4cb2831f1e9288a73387a8734a8b604e5beaa" hashalg="SHA1"><asmv2:hash xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#"><dsig:Transforms><dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity"></dsig:Transform></dsig:Tra nsforms><dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"></dsig:DigestMethod><dsig:DigestValue>n9On8FItNsK/DmT8UQxu6jYDtWQ=</dsig:DigestValue></a smv2:hash></file>
        <file name="msvcp80.dll" hash="b2082dfd3009365c5b287448dcb3b4e2158a6d26" hashalg="SHA1"><asmv2:hash xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#"><dsig:Transforms><dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity"></dsig:Transform></dsig:Tra nsforms><dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"></dsig:DigestMethod><dsig:DigestValue>0KJ/VTwP4OUHx98HlIW2AdW1kuY=</dsig:DigestValue></a smv2:hash></file>
        <file name="msvcm80.dll" hash="542490d0fcf8615c46d0ca487033ccaeb3941f0b" hashalg="SHA1"><asmv2:hash xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#"><dsig:Transforms><dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity"></dsig:Transform></dsig:Tra nsforms><dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"></dsig:DigestMethod><dsig:DigestValue>YJuB+9Os2oxW4mY+2oC/r8lICZE=</dsig:DigestValue></a smv2:hash></file>
    </assembly>

  • How to connect Sql Server 2000 using JDBC ODBC Driver

    How to connect Sql Server 2000 using JDBC ODBC Driver ?
    plz Send Syntax.
    thanks

    In SQL Server 2000 the driver class is com.microsoft.jdbc.sqlserver.SQLServerDriver
    The connection URL for the default SQL Server 2000 database is jdbc:sqlserver://localhost:1433
    Class.forName(
      "com.microsoft.sqlserver.jdbc.
      SQLServerDriver");
    String url =
      "jdbc:sqlserver://localhost:1433";
    Connection conn = DriverManager.
      getConnection(
      url, "sa", "sqlserver");

Maybe you are looking for