Viewing 15 posts - 5,446 through 5,460 (of 7,636 total)
prasanna_pathangi (9/26/2008)
September 26, 2008 at 8:38 pm
Jeff Moden (9/26/2008)
September 26, 2008 at 8:24 pm
The NChar, NVarchar and NText datatypes are Unicode and are built-in.
September 26, 2008 at 1:01 pm
I don't know, if you do a little corrective formatting, it doesn't seem to bad to me:
strSQL = "SELECT " _
...
September 26, 2008 at 12:52 pm
Milu (9/26/2008)
September 26, 2008 at 12:05 pm
Can you please post the views and the SELECT command being used?
September 26, 2008 at 10:29 am
And this is unreliable also.
September 26, 2008 at 10:16 am
Then they should use SQLBulkCopy, and implement their own IDataReader class around their input ByteStream to provide the input. IDataReader looks pretty easy to implement.
September 26, 2008 at 8:28 am
You should also be aware that none of this works on procedures that use Dynamic SQL.
September 26, 2008 at 8:25 am
That is what I do, but I have heard some say that that does not always work either, and I have definitely seen it miss some stuff.
September 26, 2008 at 8:23 am
From SQL Server itself, the sysdepends table is the only way that I know of, but it is unreliable.
September 26, 2008 at 8:08 am
This is exactly what I said before, Karthik. BULK INSERT will work only if the Server can see the file. If the Server can not see the file,...
September 26, 2008 at 7:57 am
The article here: (http://www.eggheadcafe.com/articles/20060318.asp) has a code example of how to use SQLBulkCopy from ADO.net to load a CSV file.
September 26, 2008 at 7:45 am
I believe that SQLBulkCopy is the class that you want to use from ADO.net. I have never used it myself, but hopefully, someone else here has.
September 26, 2008 at 7:37 am
BULK INSERT works on files that the server can see. If the file(s) being chosen by the user are on a client system, BULK INSERT probably will not work.
September 26, 2008 at 7:32 am
Viewing 15 posts - 5,446 through 5,460 (of 7,636 total)