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 |
|
johncogan
Starting Member
20 Posts |
Posted - 2004-02-18 : 04:53:20
|
| HiIs it in any way possible to import data from a word document into SQL server (2000). Some clients have asked if its' possible to take specific data within a *.doc file and storing it on the database.One of the stranger requests I've had in a while :/Best RegardsJohn |
|
|
safigi
Starting Member
15 Posts |
|
|
AndrewMurphy
Master Smack Fu Yak Hacker
2916 Posts |
Posted - 2004-02-18 : 05:45:44
|
| The problem part of your requirement is the "specific data within a *.doc file" part.Loading full documents into SQL can be achieved...but not advised (performance, ease of manipulation, etc)...search here for previous advice on this practice....maybe under the keyword "blob"Loading segments of a Word Document into SQL...brings the headache that may not be solveable...of 1st locating the "interesting section of the word document"...and making unstructured information...structured. You may be better advised to get the relevent information in the word document to be saved external to word in a structured/controlled format...and linked through to word. |
 |
|
|
|
|
|