您可以在SchemaCrawler中grep /搜索不区分大小写吗?

问题描述 投票:0回答:1

是否存在允许SchemaCrawler搜索数据库对象并忽略大小写的标志或选项?

以下示例将过滤出以“ API”开头的存储过程,即使它们是期望的输出:

--routines=.*api_Insert.*

schemacrawler
1个回答
0
投票

Jared,

这是个好主意-我将--ignore-case选项添加到SchemaCrawler grep命令。同时,您可以尝试使用正则表达式,例如

--routines=.*[Aa][Pp][Ii]_Insert.*

--routines=.*(api|API)_Insert.*

看看是否可行。

Sualeh,SchemaCrawler

© www.soinside.com 2019 - 2024. All rights reserved.