-
-
Notifications
You must be signed in to change notification settings - Fork 11
Oracle Identity: Replace trigger by Generated by #142
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
… loader for oracle
Schlupp77
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Keine funktionellen Fehler gefunden, nur ein paar Optimierungen/Fragen.
| sb.AppendLine(" c_pk.TABLE_NAME AS PARENT_TABLE,"); | ||
| sb.AppendLine(" col_pk.COLUMN_NAME AS PARENT_COLUMN"); | ||
| sb.AppendLine("FROM "); | ||
| sb.AppendLine(" USER_CONS_COLUMNS a "); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"a" bitte in "ucc" ändern wie weiter unten.
| if (column.Precision.HasValue || column.Scale.HasValue) | ||
| { | ||
| type = GetTypeNameParametrized(column.Type, column.Size, column.Precision ?? 0, column.Scale ?? 0); | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Microoptimierung, aber könnte man den "if" nicht zuerst machen?
| (oldColumn.MigratorDbType == MigratorDbType.Int16 || | ||
| oldColumn.MigratorDbType == MigratorDbType.Int32 || | ||
| oldColumn.MigratorDbType == MigratorDbType.Int64 || | ||
| oldColumn.MigratorDbType == MigratorDbType.Decimal) && |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fehlen hier noch die unsigned Versionen der Typen?
Resolves #143