RTF_NOTES and SQL

W

wilma

Is it possible extract with a SQL query the field RTF_NOTES from the MPS_TASK
or MSP_ASSIGNMENTS tables?
I tried with this:

DECLARE @ptrval varbinary(16)
SELECT @ptrval = TEXTPTR(TASK_RTF_NOTES)
FROM MSP_TASKS
WHERE (TASK_HAS_NOTES = 1) AND (TASK_NAME = 'NOTA_SUL_TASK')
READTEXT MSP_TASKS.TASK_RTF_NOTES @ptrval 1 25

but it doesn't work.
Any Idea?
thanks in advance
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top