Converting MSP RTF fields in SQL

  • Thread starter Gareth Thackeray
  • Start date
G

Gareth Thackeray

Hi,

The RTF notes associated with MSP objects are stored in a SQL Server
database in a field called (eg.) TASK_RTF_NOTES (data type image). We would
like to convert this within a standard SQL statement into plain text.

I suspect this is not possible without some sort of bolt-on, or at the very
least using T-SQL in some way.

Any ideas?

Thanks,

Gareth
 
J

JackD

The file called projdb.htm on your project cd or on a machine with Project
installed covers this and gives an example. It is essential reading if you
are going to work with the database.

-Jack
 
G

Gareth Thackeray

Thanks for that Jack. I'm familiar with that file. It describes a mechanism
to convert from RTF, but not at the SQL Server level.

Gareth
 
J

JackD

Ah, you want to do it completely within SQL Server? That would make it more
difficult.
I think I'd try putting together something that reads the data and writes it
into a text field that you can add to the database.
Then put that app on a schedule.

-Jack
 
G

Gareth Thackeray

If we go with this, I think that'll have to be the way it goes.

Thanks a lot.
 

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