Click here to Skip to main content
15,886,806 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
Hello ,
i have a stored procedure in pl/sql that is used in crystal report.
What i have to do is to add a column in the already existing grouped select statement, that contains image and it's BLOB.

Is there any idea how to do the grouping ?DO i have to do any conersion first ?
i cannot avoid it,since i get the error on my report ORA-00079 the expression is not grouped by .

I'm not experienced with blob data types .

thanks!
Posted

1 solution

To use grouping with a blob, you'll need to convert it to a char.

SQL
GROUP BY id, first_name, last_name, TO_CHAR(my_blob);
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900