Viewing 15 posts - 31 through 45 (of 98 total)
Just another way to do this with Powershell:
Invoke-Sqlcmd -Query "SELECT * FROM your_table;" -ServerInstance yourserver -Database yourdatabase | export-csv your.csv
It can also be scheduled as you will any other...
July 24, 2014 at 9:54 am
Are you trying your hand at creating a database for your own business or is this just homework?
July 24, 2014 at 2:42 am
noy2014 (7/12/2014)
July 15, 2014 at 9:04 am
Joe Contreras-290946 (7/9/2014)
I created an ETL process using C# (SSIS was not available) and ran into some issues with one of the fields.
I have a [description] that contains...
July 9, 2014 at 9:15 am
shiva N (7/9/2014)
How to get recently updated tables with total row count in sql server 2008?
You would have had to have had some kind of change tracking in place...
July 9, 2014 at 8:48 am
Andrew in WV (6/21/2012)
ColdCoffee (2/16/2012)
Here is the link : CREATE PROCEDURE
To...
May 6, 2014 at 9:11 am
cadam (4/14/2014)
April 16, 2014 at 4:05 am
I very much agree with what Grant has said here.
I doubt you'd find consensus on the "best" tool to do any kind of monitoring on account of varying needs and...
April 16, 2014 at 3:07 am
jimbeam10 (4/3/2014)
April 3, 2014 at 7:20 am
This post goes into a bit more detail:
http://sqlinthewild.co.za/index.php/2011/03/08/full-backups-the-log-chain-and-the-copy_only-option/
March 27, 2014 at 6:26 pm
robertsquednau (3/26/2014)
March 26, 2014 at 5:32 am
1. You would do well to get yourself a copy of SQL Server Developer Edition (It's relatively cheap) and install it on your laptop or machine so you have...
March 26, 2014 at 3:53 am
ben.brugman (3/25/2014)
Regulary I want to import Excel files. (Or CSV files).
Extention is known.
Format is not predetermined.
Is there a solution for this ?
A general solution which imports data...
March 26, 2014 at 3:28 am
I didn't write it 🙂 ... but you are very welcome.
March 25, 2014 at 8:43 am
Just to clarify...
If you are receiving what is essentially the same file but it could be in differing formats (.csv, .txt, .xls etc) then, by far, the easiest thing to...
March 25, 2014 at 8:29 am
Viewing 15 posts - 31 through 45 (of 98 total)