-
Notifications
You must be signed in to change notification settings - Fork 178
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
[FR] Allow database name in in_schema
#806
Comments
I agree this would be useful. Should we add a new |
I think adding |
I can propose something very soon, can we sneak this into 2.2.0? |
Thanks to see some progress on that. If you are creating a new function anyways it may make sense to think about linked servers as well? That is a query like SELECT foo
FROM linked_server.database.schema.table_name is valid and while You could argue that one could create another connection to |
When connecting to an MSSQL Server, we can have several databases from which we can pull data. To get the quoting straight, one has to add an additional
sql
call toin_schema
to be able to get the data in a particular database, which is not that clear:Admittedly, my knowledge of standard SQL is mediocre at best, so there may be very good reasons for not adding a
catalog/database
parameter toin_schema
, but at least the proper way of addressing a table in a schema in a catalog / database should be documented somewhere. w/o SO I would yet not have any idea of how to pull data with the fully qualified name.Thus, either we add that to the docs or even add a new parameter to
in_schema
.The text was updated successfully, but these errors were encountered: