Page 2 of 2

Posted: Tue Apr 03, 2007 10:22 pm
by ray.wurlod
The wrapping occurs because the names you chose are longer than the default column display width. Override with the FMT keyword.

Code: Select all

SELECT NAME FMT '48L' FROM DS_JOBS WHERE CATEGORY LIKE '<<Category Name>>%' AND NAME NOT LIKE '\\%';

Posted: Wed Apr 04, 2007 11:39 am
by us1aslam1us
Thanks Ray, that works fine.

Posted: Wed Apr 04, 2007 3:49 pm
by videsh77
Thanks Ray, it helps.