how can i best store the XML string resulting from the query below...i presume inserting into an 'image' field would be the answer assuming these XML string will be very large...i was wondering if anyone has any way i can accomplish this inserting of the XML string into an 'image' field through SQL and not having to use VB or ASP like i have been doing for inserting files into an 'image' field in the past
select
account_id,
account_number,
opened_datetime
from account
for xml auto
----------------------
thanks in advance
keith
select
account_id,
account_number,
opened_datetime
from account
for xml auto
----------------------
thanks in advance
keith