{"id":137,"date":"2014-04-08T13:02:23","date_gmt":"2014-04-08T06:02:23","guid":{"rendered":"https:\/\/sanmaharjan.com\/?p=137"},"modified":"2014-04-09T10:53:22","modified_gmt":"2014-04-09T03:53:22","slug":"convert-blob-into-insert-statment","status":"publish","type":"post","link":"https:\/\/sanmaharjan.com\/convert-blob-into-insert-statment\/","title":{"rendered":"Convert Blob into Insert Statment"},"content":{"rendered":"
There are many ways to copy Blob column from one server to Another like,<\/p>\n
1. Generate file from blob in source server, and import file into destination server using Tools like SQL developer, TOAD.<\/p>\n
2. Using DBLink,
\nINSERT INTO BLOB_TEST SELECT BLOB_COL1 FROM TEST_BLOB@SOURCEDB;<\/code>
\n3.\u00a0 I have recently discovered, you can make dynamic insert statement and run as normal insert statement in destination server.<\/p>\n