November 27, 2012 at 6:51 am
how to transfer data from table to textfile with upto date range.
November 27, 2012 at 6:56 am
bcp.exe is a command line utility for importing and exporting to text.
it supports using a query, so you can construct a query that uses a WHERE clause that limits your data.
if you have xp_cmdshell enabled, you could call it from TSQl as well, but remember it is a command line program
bcp "SELECT object_name(object_id) As TbLName,name as ColName FROM SandBox.sys.columns WHERE create_date > DATEADD(dd, -30,GETDATE()) ORDER BY object_name(object_id), column_id" queryout C:\Data\Objects.txt -t"|" -c -T
Lowell
Viewing 2 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply
This website stores cookies on your computer.
These cookies are used to improve your website experience and provide more personalized services to you, both on this website and through other media.
To find out more about the cookies we use, see our Privacy Policy