Reputation: 525
I'm trying to figure out how to search by filename in data catalog, without being key insensitive.
g.e.:
I have 3 files: "filename.csv", "FILENAME.csv", "fileName.csv"
I want to get just the file "filename.csv" (in lower case).
If I search with the name:
Is there any way to get back just the file in lower case? Or how can avoid the key insensitive problem?
Thanks in advance.
Cheers, Jon
Upvotes: 0
Views: 65
Reputation: 766
https://learn.microsoft.com/en-us/rest/api/datacatalog/data-catalog-search-syntax-reference explains how things work. But the short version is that the search is case insensitive and there isn't a way to avoid that.
Upvotes: 0