-
Notifications
You must be signed in to change notification settings - Fork 344
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
Ora2pg error: FATAL: bad export type using input file option #1057
Comments
Yes this feature have not been implemented yet. Here are the export type that can be used from a file:
|
Thank you Darold |
Hi Darold, |
Hi, I have not planned to work on this on the near future. |
@darold I am getting the same error for SHOW_REPORT too. for SQL Server (scripts). ora2pg -t SHOW_REPORT --dump_as_json -i "" How do I get around with this? |
The -i option can not be used with the SHOW_REPORT action, SHOW_REPORT need a connection to an online database. |
Hi Darold,
I am trying to export Materialized views using input file option and got the below error:
Below query I used:
CREATE MATERIALIZED VIEW "MV_EMP" ("EMPNO", "ENAME", "JOB", "MGR", "HIREDATE", "SAL", "COMM", "DEPTNO") AS SELECT "EMP1"."EMPNO","EMP1"."ENAME","EMP1"."JOB","EMP1"."MGR","EMP1"."HIREDATE","EMP1"."SAL","EMP1"."COMM","EMP1"."DEPTNO" FROM "EMP1";
Can you please let me know what are all the objects we cannot use with input file option?
The text was updated successfully, but these errors were encountered: