-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SSMS LinkedServer doesn't work with ODBC and Firebird 4.0/5.0 #235
Comments
Hi @luka4684 You have nothing to do but to wait while I investigate to find and fix this issue. Sorry for the inconvenience. |
Hi @luka4684 I tried with the last build (3.0.0.15 from https://github.com/FirebirdSQL/firebird-odbc-driver/wiki) but didn't see any issues... Can I ask you to:
Regards |
Hep I am running with 3.0.0.16 build. Created a System DSN with the new ODBC driver. USE [master] /****** Object: LinkedServer [HOUSE] Script Date: 18/12/2024 10.16.48 *****/ EXEC master.dbo.sp_serveroption @server=N'HOUSE', @optname=N'collation compatible', @optvalue=N'false' EXEC master.dbo.sp_serveroption @server=N'HOUSE', @optname=N'data access', @optvalue=N'true' EXEC master.dbo.sp_serveroption @server=N'HOUSE', @optname=N'dist', @optvalue=N'false' EXEC master.dbo.sp_serveroption @server=N'HOUSE', @optname=N'pub', @optvalue=N'false' EXEC master.dbo.sp_serveroption @server=N'HOUSE', @optname=N'rpc', @optvalue=N'false' EXEC master.dbo.sp_serveroption @server=N'HOUSE', @optname=N'rpc out', @optvalue=N'false' EXEC master.dbo.sp_serveroption @server=N'HOUSE', @optname=N'sub', @optvalue=N'false' EXEC master.dbo.sp_serveroption @server=N'HOUSE', @optname=N'connect timeout', @optvalue=N'0' EXEC master.dbo.sp_serveroption @server=N'HOUSE', @optname=N'collation name', @optvalue=null EXEC master.dbo.sp_serveroption @server=N'HOUSE', @optname=N'lazy schema validation', @optvalue=N'false' EXEC master.dbo.sp_serveroption @server=N'HOUSE', @optname=N'query timeout', @optvalue=N'0' EXEC master.dbo.sp_serveroption @server=N'HOUSE', @optname=N'use remote collation', @optvalue=N'true' EXEC master.dbo.sp_serveroption @server=N'HOUSE', @optname=N'remote proc transaction promotion', @optvalue=N'true' |
Hi @irodushka , I have tried but without success. Firebird 5.0 configuration: firebird.txt Database script: -- Connect to the newly created database -- Create Customers table -- Create Orders table -- Insert sample data into Customers table INSERT INTO Customers (FirstName, LastName, Email) -- Insert sample data into Orders table INSERT INTO Orders (CustomerID, TotalAmount) -- Query the data to verify -- Commit the changes -- Exit the script Linked Server script: GO |
Are you running MSSQL Management Studio as Administrator? I wonder I have no such a troubles as you describe in my setup (Windows 10, MSSQL Express 15.0.2000, MSSQL MS 20.2) - except that I have FB4.0 server (not 5.0), but I'll be very much surprised if it's a matter of FB server version. @luka4684 I've ran all your scripts, created DSN and linked server, and it works ok...
|
Hep |
@hsl4711 |
I have installed ODBC 3.0 and create ODBC for my Firebird 5.0.
Then in SSMS I want to create Linked Server but it just stuck/just loading
What should I do to solve this issue, because with Firebid 2.5 and older ODBC it works normally
The text was updated successfully, but these errors were encountered: