Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions get-started/get-help.md
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,22 @@ npm add -D tar
```
On macOS and Linux, the built-in implementation continues to be used.

### How to fix "SqlError: invalid table name: Could not find table/view ..."?

On Windows there's a known issue, where `cds build --production` may silently fail to create the _resources.tgz_ in the MTX sidecar build output.
After deployment and subscription, you can then notice the mentioned SqlError or similar error messages that point to tables/views not being available.

:::warning The build log will incorrectly report the file as written.
:::

To fix this on Windows, install the tar library:

```sh
npm add -D tar
```

Even with this dependency added, on macOS and Linux the built-in implementation continues to be used.



## Java
Expand Down
Loading