Viewing 15 posts - 271 through 285 (of 1,048 total)
alter the database to read_write then add the user then change it back to read_only.
March 22, 2012 at 8:53 am
Excellent Steve. I've been preaching this reality for a few years now but you summed it up quite nicely. I'm forwarding your column to a few people in this...
March 21, 2012 at 8:30 am
Not that I'm aware of. I usually use BULK INSERT VS BCP though.
March 21, 2012 at 7:00 am
Typical UNIX files have a single line-feed for each line (row) where Windows uses a CR-LF combination which should be compatible, but make sure the -r parameter is correct...
March 20, 2012 at 9:04 am
Some update that was installed earlier caused this.
March 20, 2012 at 8:55 am
sandeep4testing (3/16/2012)
Hi Friends,I'm learning the dynamic SQL Server,
Any one can tell me what is the use of case statement and how we need to use case statement ?
Thank's,
Sandeep.
It's a...
March 16, 2012 at 2:22 pm
You can use bcp. Use BOL and see how to use it, it is a command line utility.
March 1, 2012 at 2:49 pm
I assume you know the format of the data in the file, and data type expected in each column.
Therefore I would create a staging table in SQL server, having columns...
March 1, 2012 at 2:32 pm
You could do this by writing the FTP requests to a table instead of a service broker queue, than have the service poll the table periodically. The downside to this...
March 1, 2012 at 8:12 am
Yes, you want to change the nvarchar() to varchar() not the other way around. I thought that was in your temp table?
March 1, 2012 at 7:53 am
Not off the top of my head. I've used service broker as a TSQL interface for several back-end web services with excellent results.
If you are not sure how to...
March 1, 2012 at 7:51 am
aurato (3/1/2012)
sturner (3/1/2012)
aurato (3/1/2012)
sturner (3/1/2012)
change the dataype of the sopnumber in the temp table to char or varchar.
I had a hunch this might be it. Is it safe to...
March 1, 2012 at 7:46 am
aurato (3/1/2012)
sturner (3/1/2012)
change the dataype of the sopnumber in the temp table to char or varchar.
I had a hunch this might be it. Is it safe to change the...
March 1, 2012 at 7:37 am
change the dataype of the sopnumber in the temp table to char or varchar.
March 1, 2012 at 6:59 am
A most robust and reliable method to do this is to have a separate process implemented as a service or a scheduled task that pushes the files to an http://FTP...
March 1, 2012 at 6:54 am
Viewing 15 posts - 271 through 285 (of 1,048 total)