Hi All,
I tried to load increamental.df to MSS database using the below code. I have followed the below link from OpenEdge to resolve this issue, but still I have the issue.
Did anyone come across this issue and solved?
community.progress.com/s/article/P122885
create alias DICTDB for database oedb1 NO-ERROR.
display ldbname("DICTDB":u).
run prodict/load_df.p ("c:\samplesql.df").
delete alias DICTDB.
I got the below errors
The following errors and/or warnings occurred while loading C:\samplesql.df
into database oedb1 on 15/07/24 at 15:25.
** Error during MODIFY DATABASE samplesql_src **
** Line 1 UPDATE DATABASE samplesql_src
Try to modify unknown DATABASE
** Error during ADD TABLE **
** Line 15 ADD TABLE SQLTBL1 TYPE MSS
Table-type mismatch. Current database-type is PROGRESS
.df file content
-------------------
UPDATE DATABASE "samplesql_src"
TYPE MSS
DBNAME "samplesql"
ADD TABLE "SQLTBL1" TYPE MSS
etc...
I tried to load increamental.df to MSS database using the below code. I have followed the below link from OpenEdge to resolve this issue, but still I have the issue.
Did anyone come across this issue and solved?
community.progress.com/s/article/P122885
create alias DICTDB for database oedb1 NO-ERROR.
display ldbname("DICTDB":u).
run prodict/load_df.p ("c:\samplesql.df").
delete alias DICTDB.
I got the below errors
The following errors and/or warnings occurred while loading C:\samplesql.df
into database oedb1 on 15/07/24 at 15:25.
** Error during MODIFY DATABASE samplesql_src **
** Line 1 UPDATE DATABASE samplesql_src
Try to modify unknown DATABASE
** Error during ADD TABLE **
** Line 15 ADD TABLE SQLTBL1 TYPE MSS
Table-type mismatch. Current database-type is PROGRESS
.df file content
-------------------
UPDATE DATABASE "samplesql_src"
TYPE MSS
DBNAME "samplesql"
ADD TABLE "SQLTBL1" TYPE MSS
etc...