Viewing 15 posts - 31 through 45 (of 70 total)
I think you misunderstood, the formatfile matches the table definition. The question is why bulk insert creates an error file and then deletes it from disk once finished running?
For...
January 25, 2008 at 6:37 pm
bulk insert from "e:\datafile.bcp"
WITH (FORMATFILE = 'e:\formatfile.xml', maxerrors=0, errorfile='E:\import_error.txt')
January 25, 2008 at 1:48 pm
think about this id as a department id and not the identity for the user, so we can assume that 1 is a value from a lookup table, which could...
October 15, 2007 at 6:47 pm
"The one thing I did find really bad about the quorum when I first learned about it is that when you failover to your mirror and it becomes your primary,...
June 11, 2007 at 9:19 am
SQL server can go up to 6.5GB of RAM, but was using around 6 at the time. The server has 8GB total
June 7, 2007 at 9:40 am
That's what we've been planning on doing. Perhaps it will happen soon. Another question is: why would it stop suddenly? In other words the problem goes away after an hour. ...
June 6, 2007 at 10:43 am
I tried to reinitialize, but the message still reported "Snapshot not yet available". Only drop/recreate helped.
May 22, 2007 at 8:58 am
Only through an ODBC driver. There is one from some company. I can't remember the name.... I haven't done anything with Progress in a few years. Just search for Progress...
May 11, 2007 at 10:31 am
Also make sure that you use new joins as in LEFT and RIGHT and not *=, =*. Old style joins don't work with db90. So if you have a lot...
May 8, 2007 at 8:40 am
This happened on the end user's workstation, so I have no idea of what they typed in. However I don't think it was the case. They are not that familiar...
May 8, 2007 at 8:34 am
I guess the point being is that the select query finished running, but the blocking still occured. I know that nolock will avoid the problem, but some other users who...
May 8, 2007 at 6:17 am
Thanks, and how do you split the source table based on the delimiter that's in the first column and move it to destination table? Basically how do you parse for...
May 4, 2007 at 10:08 am
When creating an index it's an offline operation, SQL never allowed access to tables while creating or rebuilding indexes by default. You can specify with online option, but it will...
April 20, 2007 at 12:43 pm
Viewing 15 posts - 31 through 45 (of 70 total)