Fritz Larco

Results 31 comments of Fritz Larco

Added in #357 See https://blog.slingdata.io/reading-apache-iceberg-data-with-sling Closing.

Hello, thanks. Sure, I'll try to tackle that soon 👍

## Notes To install C lib in Linux according to https://github.com/ibmdb/go_ibm_db ``` cd $HOME/go/pkg/mod/github.com/ibmdb/[email protected]/installer go run setup.go ``` To Build, use env below: ``` export IBM_DB_HOME=$HOME/go/pkg/mod/github.com/ibmdb/clidriver export CGO_CFLAGS=-I$IBM_DB_HOME/include export CGO_LDFLAGS=-L$IBM_DB_HOME/lib...

Yes, was ripping my hair out trying to figure out this one. I can’t get goreleaser to properly release a multi-platform image. Will look at it later. For now, you...

No way for native `int` array, but `jsonb` should be possible. Since `blob` is mapped to `text` (see [here](https://github.com/flarco/dbio/blob/main/database/templates/types_native_to_general.tsv#L51)), you will to cast it as a `json` yourself with the...

can you try with source options `{ transforms: [ replace_0x00 ] }`? That's the unicode NULL byte

Looking at https://stackoverflow.com/a/25600307 Can you try one of the decode transforms? See https://github.com/slingdata-io/sling-cli/blob/main/core/sling/tranforms.go. On Thu, Jan 25, 2024, 6:21 PM Cody Kilpatrick ***@***.***> wrote: > can you try with source...

Also try a different encoding, not too familiar with MySQL advanced settings: `ALTER DATABASE mydb CHARSET utf8;`

Ah ok, can you find out what the default charset / encoding is for your MySQL source? On Thu, Jan 25, 2024, 9:08 PM Cody Kilpatrick ***@***.***> wrote: > Just...

You can do this easily with sling, check out: https://github.com/slingdata-io/sling-cli ```shell # set connection via env var export mssql='sqlserver://...' # test connection sling conns test mssql # run export for...