Fabric to Postgres (YellowBrick) Error
I am trying to move a table from Fabric into Postgres (YellowBrick) and it is not working.
Here's a little more context.
-- Fabric
-- Some of the column tile have uppercase letters in them
-- >15 columns are varchar
-- 4 datetime2 columns
-- 1 int column in Fabric
-- YellowBrick
-- All of the column titles have all lower-case letters
-- All of the varchar columns in Fabric match up as character varying in YellowBrick
-- All of the datetime2 columns in Fabric match up as date in YellowBrick
-- The 1 int column in Fabric matches up as integer in YellowBrick
The error below is what I keep on getting.
"Error": {
"Message": "Operation on target Copy data1 failed: Failure happened on 'destination' side. 'Type=Npgsql.PostgresException,Message=XX000: SEQUENCE objects are not supported,Source=Npgsql,'"
Does anyone know how to fix this error?