How to put data from sql SERVER to notepad using t-sql

  • How to put data from sql SERVER to notepad using t-sql

    I want to run select * from t1 and result i want in Notepad saved in some location. Please help me how to do this.

  • you can use bcp command in command prompt or place the script in a batch file to do that i.e.:

    bcp "select * from t1" queryout TextFile.txt -t, -c -S .\SQLINSTANCE -d DATABASE -T

  • Thanks for the reply....

    But how to run this from SSMS

  • rajeshjaiswalraj (6/18/2015)


    Thanks for the reply....

    But how to run this from SSMS

    Have you tried selecting Query / Results To File?

    If you haven't even tried to resolve your issue, please don't expect the hard-working volunteers here to waste their time providing links to answers which you could easily have found yourself.

  • you can use xp_cmdshell proc to run a command in command prompt.

    EXEC xp_cmdshell 'bcp "SELECT * FROM database.dbo.table1" queryout "C:\Folder\TextFile.txt" -t, -c -S .\SQLEXPRESS -U user -P password'

  • Yes i have tried and got result below

    Msg 102 , Level , State 1 , Line 17

    incorrect syntax near 'queryout'.

    I ran below command

    bcp"select * from t1" queryout "e:ew folder\textfile.txt" -t, -c -s SQLONE -d DataAsets -T

    I ran below command also

    bcp"select * from t1" queryout "textfile.txt" -t, -c -s SQLONE -d DataAsets -T

    Msg 102 , Level , State 1 , Line 17

    incorrect syntax near 'queryout'.

  • You can't easily do this from T-SQL. T-SQL/SSMS executes inside of the server, not in the file system. There is no BULK EXPORT, mostly because the commands you run are on the server, not on your client. Your client sends them to the server.

    Are you looking for something formatted for notepad? Or a CSV file? Does this need to be interactive (something you do) or automated (happens without you at your machine?)

    You can certainly select all results in the grid (right click) and save this as a text file.

  • I am again getting error as

    EXEC xp_cmdshell 'bcp "SELECT * FROM database.dbo.table1" queryout "C:\TextFile.txt" -t, -c -S SONY-VAIO\PROD -U sa -Password@12345 '

    result -

    'bcp' is not recognized as an internal or external command,

    operable program or batch file.

    Please help me on this

  • bcp isn't in the path on the server. The server service account (or xp_cmdshell proxy) is calling bcp, but can't find it.

    Get the path on the server to bcp.exe and put the full path in the call.

  • I think Phil Parkin already provided the easiest answer.

    Have you tried selecting Query / Results To File?

    Different Options for Query Results in SQL Server Management Studio[/url]

    Joie Andrew
    "Since 1982"

  • Steve Jones - SSC Editor (6/23/2015)


    bcp isn't in the path on the server. The server service account (or xp_cmdshell proxy) is calling bcp, but can't find it.

    Get the path on the server to bcp.exe and put the full path in the call.

    BCP is normally automatically installed in a file path where SQL Server can find it when SQL Server is installed. Something else is going on here.

    --Jeff Moden


    RBAR is pronounced "ree-bar" and is a "Modenism" for Row-By-Agonizing-Row.
    First step towards the paradigm shift of writing Set Based code:
    ________Stop thinking about what you want to do to a ROW... think, instead, of what you want to do to a COLUMN.

    Change is inevitable... Change for the better is not.


    Helpful Links:
    How to post code problems
    How to Post Performance Problems
    Create a Tally Function (fnTally)

Viewing 11 posts - 1 through 10 (of 10 total)

You must be logged in to reply to this topic. Login to reply