ODBC
21 TopicsODBC drivers not visible in the ODBC Data Source Administrator (odbcad32.exe)
First published on MSDN on Oct 18, 2011 I recently had an issue where after the installation of a Third party Client side tools, we were not able view the drivers listed in the ODBC Data Source Administrator (odbcad32.61KViews0likes3CommentsODBC from Access to SQL Server database - query timeout expired
I am having issues connecting to a database located on a SQL Server 2022. When creating the connection all test gives OK. But when trying to connect, it fails with: ODBC--call failed "Query timeout expired" If I don't define the database, then Access connects to master db and lists the tables that I can access. So it seems the connection to the server itself is ok. Tried ODBC SQL server driver, SQL Server 17 and 18 odbc driver, all same results. Same database on SQL Server 2014 also does not work for my user, but another user has previously been able to connect to old database, but seems something is missing either client-side or server option in the new setup?18KViews0likes8CommentsSQL Server 2012 Native Client
Microsoft SQL Server 2012 Native Client is being flagged an obsolete software and will stop receiving security updates starting July 12th, but I have done a lot of searching on the internet and getting a mixed results on whether this is true or not. So I figured I would ask here to see if anyone else is dealing with this situation and what conclusion can be made here. For example, Microsoft has a blog post regarding the software that says the software is obsolete on July 12th, which can be seen here: https://techcommunity.microsoft.com/t5/sql-server-blog/snac-lifecycle-explained/ba-p/385381 However, I have been told that there is an exception to the rule that says it is supported "in SQL Server 2012 through 2019 until their respective end-of-support lifecycles", described at the bottom here: https://docs.microsoft.com/en-us/sql/relational-databases/native-client/applications/support-policies-for-sql-server-native-client?view=sql-server-ver16 So I guess my ultimate question is: Will "SQL Server 2012 Native Client" still receive security updates post July 12th of this year?6.3KViews1like0CommentsLesson Learned #371: Playing with the ODBC tracing file: connecting to the database
A few days ago, I encountered a case where our customer asked about the process of reading and reviewing all the ODBC traces generated by their application. In this example, I would like to share the lessons I learned while connecting to the database.4.7KViews0likes0CommentsGénéralités sur la connectivité ODBC/OLEDB 32-bits et 64-bits sur un OS 64-bits
First published on MSDN on Feb 14, 2012 Aujourd’hui, Je vous propose de partager mon expérience sur les problèmes 32-bits / 64-bits en termes de connectivité SQL/Oracle/ODBC/OLEDB.4.1KViews0likes0Comments“Operating system is not presently configured” error with Access ODBC
I get the following error when I try to connect to Microsoft Access Database via Python. The code has been working all this time and only started popping the error today. Can someone please guide me what may be the problem occurring now? I tried doing this https://stackoverflow.com/questions/63899661/operating-system-is-not-presently-configured-error-with-access-odbc even after removing the “Office 16 Click-to-Run Extensibility Component 64-bit Registration” my problem isn't getting solved. import pyodbc as pyo import os #print(pyo.drivers()) filename='//MCISERVER1/TestData/access/Proof.mdb' full_file=os.path.abspath(os.path.join('data',filename)) print("opening access") Driver='{Microsoft Access Driver (*.mdb, *.accdb)}' access_driver=['MS Access Database'] try: cnn=pyo.connect(driver=Driver,dbq=full_file,autocommit=True) except pyodbc.Error as ex: print("Error connecting") cursor=cnn.cursor() sql="select * from [ERT ITRON] as e where e.SO='7888'" cursor.execute(sql) for row in cursor.fetchall(): print(row) print("success") cursor.close() cnn.close() print("connection closed")2.1KViews0likes3CommentsODBC cannot set by command line
Oracle x86 is installed in a x64 window 10 system, but cannot set as below. Error screen shots as attached . Used 32-bit and 64-bit odbcconf.exe are also failed. C:\Windows\SysWOW64\odbcconf.exe ODBCCONF CONFIGSYSDSN "Oracle in OraClient11g_home1" "DSN=xxx|SERVER=xxx" odbcconf.exe /A {CONFIGSYSDSN "Oracle in OraClient11g_home1" "DSN=xxx;SERVER=xxx"}1.9KViews0likes1CommentODBCAD isn't showing database instances when trying to create DSN
I've got the community edition of SQL Server 2019 installed. I'm trying to create a DSN using ODBCAD (both 32 and 64). Although I've got two database instances installed (one already there that came with the machine and Windows 10 (I assume), and the other installed with the community addition of SQL Server 2019), I do not see either of those instances when I try to add a User or System DSN using any SQL Server driver (ODBC Driver 17 for SQL Server, SQL Server, and SQL Server Native Client 11.0). SQL Server browser agent, SQL Server Agent and SQL Server processes all running. Hide instance property of instance is set to NO. Installed components of SQL Server 2019: * Database Engine Services * Client Tools Connectivity * Client Tools Backwards Compatibility * Client Tools SDK * SQL Client Connectivitiy SDK Installed components of Visual Studio Community 2019: * ASP.NET and web development * .NET desktop development * Desktop development with C++ * Universal Windows Platform development Anybody got any idea of what is going on? Thanx!Solved1.8KViews0likes4Comments