I want to transfer Data from PowerHouse (I create a text file, extention .PSD) to my SQL server. Is it possible to create a link server or a stored proc that will read this text file ???
Is someone can help me ???
You have several options for importing a text file into SQL Server:
- DTS
- BULK INSERT
- bcp
If it's a straight csv file and each field maps to a colum in your table then BULK INSERT is quickest and easiest. If you need to transform data/scrub it while importing then DTS is often easiest.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.