About 10,700 results
Open links in new tab
  1. Export Data to new Excel File without using XP_CMDSHELL

    Nov 20, 2014 · I have to make it possible that a SSMS User would be able to export Data to a new (not existing) Excel File. Because of security issues xp_cmdshell isn't allowed.

  2. export to csv with fields including commas

    Feb 28, 2016 · Embedded commas and quotes are incompatible with CSV format. I think you'll see that if you create a file that contains them, you won't be able to use it in places where a …

  3. How to automate the process of importing a csv file into outlook …

    Jun 26, 2019 · Looks like you need to automate Outlook or just create an add-in for importing csv files programmatically.

  4. Importing csv files to SQL Server Express

    Feb 1, 2009 · What is the best way to import the csv files being sent to me via email into SQL Server Express? I've tried DTS. Seems to me you can't save AND actually use the packages …

  5. bcp Export to CSV with headers - social.msdn.microsoft.com

    Apr 16, 2019 · After this, I create another file that has a single new line and another file with the actual data. Then I copy them together (e.g. copy /b file1.csv+file2.csv+file3.csv output.csv), …

  6. Help a new guy on Webformmailer.php

    Jul 22, 2012 · I use godaddy.com Expression Web 4 I checked my root directory (via godaddy's FTP manager) and there is a webformmailer.php file there I also confirmed on the FTP …

  7. How to add text to existing .csv file - social.msdn.microsoft.com

    Apr 9, 2012 · How do i add text to an existing .csv file.Whenever i run more stream write code like i have below it just overrights whats in the first line/cell in the .csv file, how do i get to the …

  8. export multiple tables to .csv / .txt - social.msdn.microsoft.com

    Nov 24, 2007 · This is exporting table to csv file with tab delimited format. But i need it to set Column delimiter with Vertical bar. Can any one help me in suggesting the options of how and …

  9. csv to excel data string escape character

    Aug 22, 2017 · Hi, I am using System.IO.StreamReader class to read file data to convert a .csv file to .xls and some data have ','comma in between text for instance "name1,name2,name3" …

  10. How to convert a .txt file to CSV in PowerShell?

    Oct 26, 2016 · I read that Export-CSV can be used, which can do an object as a row, do I need to parse the .txt file into objects before I can create the CSV file?