Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
drunkenneo
Starting Member
3 Posts |
Posted - 2015-03-02 : 06:05:52
|
CAn we do webscrapping throgh SQL code for currencies current details? |
|
gbritton
Master Smack Fu Yak Hacker
2780 Posts |
Posted - 2015-03-02 : 06:23:59
|
You can. Consider that a web page is a type of XML document. SQL has good tools for shredding XML. |
|
|
SwePeso
Patron Saint of Lost Yaks
30421 Posts |
Posted - 2015-03-02 : 13:25:34
|
Nope. "Native" T-SQL methods can only retrieve 4000 bytes of text.Use a SQLCLR routine for this. Microsoft SQL Server MVP, MCT, MCSE, MCSA, MCP, MCITP, MCTS, MCDBA |
|
|
James K
Master Smack Fu Yak Hacker
3873 Posts |
Posted - 2015-03-02 : 17:07:57
|
You might find the information on this page useful: https://developer.yahoo.com/yql/Not sure what your constraints and requirements are, but worth a look anyway. |
|
|
|
|
|