From my experience, it's not a good practice to share the same data between microservices.
Here is the (probably incomplete) set of reasons:
It's hard to tell which microservice is really the data owner. This is not good from the architectural stand-point
A cost of schema change is much higher because the contract is not well defined. For example, if you remove, say, column, in one microservice, the second microservice can stop working, even if the code of the first microservice has been adjusted for changes.
In other cases, it will still work but the performance may aggravate (like removing an index by a maintainer of the first microservice, because it's not relevant for queries done in it, can cause performance aggravation of the second microservice)
If some microservice has a caching of some data and can hold data in-sync between the different instances of the same microservices, it can be tricky to keep proper synchronization if another microservice updates the database directly and doesn't notify the first microservice about the changes.
If a database is a performance bottleneck, both microservices will be influenced, especially its hard to handle, if these microservices have different scalability policies
A cost of migration to the different database (if required) will be much higher because the code must be changed in both microservices
If using an ORM, such as JOOQ (any tool that requires code generation), it's not really easy to understand where to put generated files? In both microservices? In one of them? How to share the Data Model
Metrics that are usually built per microservices will be tricky because if we measure an access to some table in DB, we're not sure that another microservice won't access that table as well.
Now, having said all that, after all its a recommendation to not use this practice, technically there is no reason why it won't work. So the decision is yours after all.
I can say from a personal experience, that in one of my projects we stopped managing shared database between microservices and it was a step in a right direction from my standpoint.