Skip to content
Merged
Changes from 5 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
17 changes: 17 additions & 0 deletions get-started/get-help.md
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,23 @@ 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 ..." while building app on Windows

On Windows, cds build --production may silently fail to create resources.tgz in the MTX sidecar build output.
Comment thread
vkozyura marked this conversation as resolved.
Outdated
The build log will incorrectly report the file as written.
Comment thread
vkozyura marked this conversation as resolved.
Outdated
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