Hi Experts,
Could you please advice me, Which is the best way to export SQL Database to CSv/Excel for the more than 50 GB data
the database having blob attachemnt as well, we need to extraxt the blob data as physical file..
Can you please suggest whish is best for this purpose
- Write an SSIS package.
- Use the Export/Import Wizard in SSMS (which uses SSIS).
- Use some other ETL tool like Informatica.
- Write a custom program for the load.
- Use any of the three bulk-load tools that come with SQL Server:
- BCP, which runs from the command-line.
- BULK INSERT, which is a T‑SQL command.
- OPENROWSET (BULK), which you can use in the FROM clause of a query.
Which is the best among this?
Or any tools is there, Could you please suggest..
sajitha