动态连接到多个数据库
我有一个主数据库,其中有一个表 (companyTable
) 存储每个公司的子数据库的名称。我需要使用 Pentaho
- 从
companyTable
获取公司数据库名称列表。 - 通过迭代 1 中获得的值来建立与公司数据库的连接。
- 从这些公司数据库中获取一些信息并将其放入另一个数据库中。
现在的问题是我无法动态定义数据库连接;当我尝试通过输入变量 (${{dbname}}
) 创建新的数据库连接时:
程序会抛出一个
未找到数据源名称并且没有 指定默认驱动程序
在运行时指定异常。
知道如何通过从另一个主数据库检索相关数据库连接名称来连接到多个数据库吗?
我正在使用水壶。
I have a master database, that has a table (companyTable
) stores the name of the child database for each company. I need to use Pentaho to
- Obtain a list of company database name from
companyTable
. - Establish the connection to the company database by iterating over the value obtained in 1.
- Obtain some information from those company databases and put it in another database.
The problem now is that I can't define the database connection dynamically; When I try to create a new Database Connection by inputing a variable (${{dbname}}
):
the program will throw me a
Data source name not found and no
default driver specified
exception when run.
Any idea how to connect to multiple databases by retrieving the relevant database connection name from another master database?
I am using Kettle.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 Kettle,您可以通过访问转换从 java 代码中使用它。参数必须采用 java -D=value 样式
If you use Kettle you can use it from java code by accessing to transformation. Parameter must be in java -D=value style