![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Blob Wars : Blob and Conquer 0.94 (Default branch) | iBot | Software Releases - RSS News | 0 | 06-05-2008 11:00 PM |
| Blob Wars : Blob and Conquer 0.93 (Default branch) | iBot | Software Releases - RSS News | 0 | 05-10-2008 06:40 PM |
| Blob Wars : Blob and Conquer 0.92 (Default branch) | iBot | Software Releases - RSS News | 0 | 04-26-2008 04:20 PM |
| script for reading BLOB data | shriashishpatil | Shell Programming and Scripting | 0 | 04-25-2007 07:11 PM |
| returning value from sqlplus | malaymaru | Shell Programming and Scripting | 1 | 01-31-2006 04:03 AM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
Returning a BLOB to Ksh
Hello,
I am currently using a small script to test out part of a larger script I will use llater on. I am querying Oracle 10.1 to return a column which holds a blob value. This value needs unzipped, sent to a file or piped and then amended and re-inserted to another table with the news values. When I run the small test script below I get this error: Code:
SP2-0678: Column or attribute type can not be displayed by SQL*Plus Here is the small script I am using as a test Code:
#!/usr/bin/ksh
function get_messages
{
print " select msg_val from mqseries_store where msg_id = 3;
" | user/pass@d > temp.txt
}
get_messages
wait
cat temp.txt
|
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|