11/*********************************************************************
2- * Copyright (C) 2007,2011,2016,2020 by Progress Software Corporation.*
2+ * Copyright (C) 2007,2011,2016,2020,2025 by Progress Software Corporation.*
33* All rights reserved. Prior versions of this work may contain *
44* portions contributed by participants of Possenet. *
55* *
@@ -79,6 +79,7 @@ history:
7979 rkamboj 08/16/11 Added new terminology for security items and windows.
8080 rkamboj 11/11/2011 Fixed issue of dump data for Lob field. bug OE00214956.
8181 tmasood 06/02/2020 Fix the issue with Bulk load description file.
82+ tmasood 05/27/2025 Allowed dump of BLOB fields
8283 */
8384/*h- */
8485
@@ -1788,9 +1789,9 @@ DO:
17881789 END .
17891790 END .
17901791 IF lwarning AND inclob THEN DO :
1791- MESSAGE " WARNING: One or more selected tables has CLOB/BLOB datatype." SKIP
1792- " Bulk dump of CLOB/BLOB is not supported." SKIP
1793- " The table(s) will be dumped without the CLOB/BLOB fields." SKIP
1792+ MESSAGE " WARNING: One or more selected tables has CLOB datatype." SKIP
1793+ " Bulk dump of CLOB is not supported." SKIP
1794+ " The table(s) will be dumped without the CLOB fields." SKIP
17941795 " Do you want to continue?"
17951796 VIEW-AS ALERT-BOX WARNING BUTTONS YES-NO UPDATE okay .
17961797 IF NOT okay THEN
@@ -2925,13 +2926,13 @@ IF user_env[1] <> "" AND
29252926 ELSE _File._Dump-name ).
29262927END .
29272928
2928- /* Dump of table with BLOB/ CLOB not allowed */
2929+ /* Dump of table with CLOB not allowed */
29292930IF user_env [1 ] <> " " AND user_env [9 ] = " b" THEN DO :
29302931 FOR EACH _File NO-LOCK WHERE _Db-recid = drec_db
29312932 AND CAN-DO (user_env [1 ],_File._File-name )
29322933 OR user_env[1] = " All" ,
29332934 EACH _Field NO-LOCK WHERE _Field._File-Recid = RECID (_File )
2934- AND CAN-DO (" blob, clob" ,_Field._Data-Type ):
2935+ AND CAN-DO (" clob" ,_Field._Data-Type ):
29352936
29362937 ASSIGN lwarning = TRUE .
29372938 LEAVE .
@@ -3980,4 +3981,4 @@ procedure walkFrame:
39803981 end .
39813982 message cc
39823983 view-as alert-box .
3983- end .
3984+ end .
0 commit comments