Thank you for your help. I am Getting an error when I try it though.
Error
Could not execute 'Create View "TEXT_ANALYSIS"."ALL_FILES" ("File_NAME","File_Content") AS Select ...' in 3 ms 404 µs .
SAP DBTech JDBC: [264]: invalid datatype: LOB type in set clause: line 4294967295 col 4294967295 (at pos 4294967295)
My SQL
Create View "TEXT_ANALYSIS"."ALL_FILES"
("File_NAME","File_Content")
AS Select "File_Name","File_Content" from "TEXT_ANALYSIS"."DOCS"
Union
Select "File_Name","File_Content" from "TEXT_ANALYSIS"."HTML";
File_Content is a Blob, can i not do it with that datatype?
Thanks