Can I connect to Cache using SSMS (SQL Server Management Studio)?
Can I connect to Cache using SSMS (SQL Server Management Studio) and view schemas and build queries as I do for SQL Server?
If yes, step-by-step instructions for setting up the connection would be greatly appreciated.
I googled the topic but didn't find any results that were on target.
Thanks,
Christian Bahnsen
I use SQL Server quit a lot and I've never seen that you can connect via SSMS to any other databases than MS SQL Server... You can use the Linked Server Feature to use Caché via SQL Server and use the SSMS to query Caché. But this a overkill just to execute some queries I think.
Attention advertising ;-) : You can take a look at Caché Monitor to connect directly to Caché (and other DBs). If you are familiar with SSMS you find many identical UI concepts.
Regards
Andreas
Thanks for the reply.
We already have a linked server to Cache and I run queries against Cache using EXECUTE ... AT or OPENQUERY syntax.
But I can't view namespaces/schemas or write direct queries against Cache.
A recent upgrade messed up the SQL portal in the System Management Portal where I normally start building queries. Our MID department can't seem to fix the problem so I'm looking for workarounds. I know some people use WinSQL to connect to Cache and a Cache tech support person thought SSMS could perform the same role, but he doesn't use SSMS personally so didn't know how to configure the connection.
Hence this post. If it's doable, I'd love to get my instance of SSMS configured so I could write queries directly against Cache. I'd still use the linked server and the EXECUTE or OPENQUERY syntax for queries driving reports I push out to our Report Server.
I became aware of Cache Monitor yesterday and that may be a solution, but if I can accomplish the same end using SSMS that's the route I'd prefer to take.
You can use any ODBC/JDBC database management software. I use DataGrip. It has code completion for table/field names and standard SQL syntax.
Eduard,
Thanks for the reply.
I'm not sure if SSMS is "ODBC/JDBC" compliant so I've opened a parallel thread in the Microsoft SQL Server forum: https://social.msdn.microsoft.com/Forums/sqlserver/en-US/ea2bca86-1c23-4c4e-bbca-97130bd2aff8/can-i-connect-to-intersystems-cache-using-ssms-sql-server-management-studio-other-than-as-a-linked?forum=sqltools
Hopefully between these two forums we'll come up with a definitive answer as to whether SSMS can perform the same function as DataGrip or other ODBC/JDBC database management software.
Thanks again
Christian
I should have been more specific in the title. You can (and we do) set Cache up as a linked server. SSMS, however, is not a "vendor-agnostic" tool, therefore you can't use it as a front-end to view schemas and write queries.
Can you post a screenshot of your driver configuration and URL templates. I can get it to connect with test but when it trys to get all details for the tree it starts saying access denied. Not sure if i have my URL template correct.
Here's my URL template
If you connect but get Access Denied, try user with %ALL permissions to remove doubts about insufficient privileges.
I tried DataGrip in the past, and the software is outstanding.
Nowadays I'm using DBeaver Community Edition. It's an alternative to DataGrip, and it's free.
DBeaver also has code completion for table/field names and standard SQL syntax.
wow! It has Caché icon? ) cool! Is it possible to add InterSystems IRIS connection option too?
That's a good question :)
We can add an issue on GitHub
https://github.com/dbeaver/dbeaver
Did it, thanks!
SQL Server Management Studio: I'm certain that the answer is No. What your cache post should have said is that you can use any vendor-agnostic application to manage the server/database. SSMS is definitely not vendor-agnostic.
Yes, you can set up a linked server but first, you need to create an ODBC connection.
then select top 1 * from [linked server name]..[schema name].[table name]