I have an XML feed that is updated perioidcally throughout the day:
http://api.yellowbrix.com/api/?service=headlines&method=xml&id=aiada&password=oiiraj&link_type=storyapi&category=Foreign+Automotive&enabletext=1&summaryon=1&define_company=1&define_caption=1
I'm trying to find some type of example script or documentation to
create an ASP script or an ASP.NET script that will read the feed,
gather the information and then insert the new articles into an SQL
database every 15 minutes.
Some example code is perfered, but if documentation is the only thing
that exists that will work as well.
Thanks |
Request for Question Clarification by
mathtalk-ga
on
09 Jan 2004 14:53 PST
Hi, mkbriney-ga:
It would be helpful if you can Clarify what database you will be
targeting. Most of the popular database engines have support for XML,
but these vary considerably in the details. Of course you may have a
requirement to do something DBMS platform independent, and it would be
good to know if that is so.
regards, mathtalk-ga
|
Clarification of Question by
mkbriney-ga
on
12 Jan 2004 06:00 PST
The database we're using is Microsoft SQL Server 2000
|
Request for Question Clarification by
mathtalk-ga
on
12 Jan 2004 15:09 PST
Hi, mkbriney-ga:
Cool, that's what I'm running. Now, do you want the XML document
stored as a "BLOB", ie. just as a text field, or will you require some
conversion of the XML fields into table columns, e.g. for the purpose
of searching or transformations.
Obviously it's simpler just to store the entire XML document in one
text field and be done with it, if that would serve your purpose.
regards, mathtalk-ga
|
Clarification of Question by
mkbriney-ga
on
13 Jan 2004 05:42 PST
Great! mathtalk-ga,
We just need to have it stored as a "blob". No need for searching.
Thanks
-Matt
|