on 2014 Oct 09 12:40 PM
How to retrieve the data and see for Blob Object column using FlexibleSearch from HAC
Thanks in advance.
If we are using oracle database we can use below sql query.
SELECT dbms_lob.substr(p_endmessage,3000) FROM processes item_t0
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
With MySQL:
SELECT CAST({urlPatterns} AS CHAR(10000) CHARACTER SET utf8) FROM {CMSSite}
With Oracle:
SELECT UTL_RAW.CAST_TO_VARCHAR2({urlpatterns}) FROM {CMSSite}
With HANA:
SELECT CAST(BINTOSTR(CAST({urlPatterns} AS BINARY)) AS VARCHAR) FROM {CMSSite}
Note: The SQL for MySQL and Oracle are already tested but I haven't tested the SQL for HANA yet.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
31 | |
2 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.