tiver43809
IS-IT--Management
I am trying to send the results of a query to a file.
My problem is one of the fields is long which means it oould have up to 2 gig worth of data. I tried this below but I am still not sure i am getting everything out. What I would like to do is run a query that will show the number of characters in each field of my table. That way I might be ablt to use longchunk. Any ideas?
Thank You,
In over his head Terry
SET PAGESIZE 10000
SET LINESIZE 130
SET LONG 5000
select tsxre2,tsddat,tscomm,tmrmks,tsxref,tsidat,tspoci,tsbldg,tsroom,tsname,tsntel
from tsr,tsrrmk
where tsnumb=tmnumb and tscdat is null
order by tsxre2
My problem is one of the fields is long which means it oould have up to 2 gig worth of data. I tried this below but I am still not sure i am getting everything out. What I would like to do is run a query that will show the number of characters in each field of my table. That way I might be ablt to use longchunk. Any ideas?
Thank You,
In over his head Terry
SET PAGESIZE 10000
SET LINESIZE 130
SET LONG 5000
select tsxre2,tsddat,tscomm,tmrmks,tsxref,tsidat,tspoci,tsbldg,tsroom,tsname,tsntel
from tsr,tsrrmk
where tsnumb=tmnumb and tscdat is null
order by tsxre2