Viewing 15 posts - 1 through 15 (of 20 total)
There are none - I created the DBF especially for the data export, and it is not used by anything else.
August 25, 2005 at 8:18 am
Yes, I just found this KB article in a discussion forum on http://www.alegsa.com.ar/Visitas/index4/Null%20in%20where%20clause%20problem%20sql.php
My SQL Server does have 4 CPUs and I do have parallelism enabled. When I execute the...
August 16, 2005 at 3:49 am
Ian,
No, the index on TABLE_A.Thoroughfare is not clustered. There is no clustered index on the table - I wonder how long it would take SQL to create a clustered index...
June 10, 2005 at 1:42 am
Andy,
Is there any performance difference doing it this way? My guess is that it is merely a syntactical variation, and the actual query run by SQL in both cases is...
June 9, 2005 at 3:22 am
Remi,
That worked well, thank you. I ran
set rowcount 100000
select 'Populating value of ThoroughfareID...'
while @@rowcount > 0
update TABLE_A
set ThoroughfareID = b.ID
from TABLE_B b
where b.Thoroughfare = TABLE_A.Thoroughfare
and TABLE_A.ThoroughfareID is null
set rowcount 0
and all 26,000,000...
June 9, 2005 at 2:03 am
Thanks for the advice, John. The inserts are being done by a 3rd-party application that I have no control over, so hence using the trigger.
Unfortunately the table has no indexes,...
September 22, 2004 at 4:31 am
I'm sure you'll agree the following code is simple and elegant. Hope it helps. Assuming there is a table COLORTABLE ( item int, color varchar(10) )
declare @colorlist varchar(1000)
select @colorlist =...
August 26, 2004 at 6:46 am
I don't think Article 299575 applies in this case because I don't see any EXCEPTION_ACCESS_VIOLATION messages in the SQL Log, and I am not performing an ANSI join between...
August 10, 2004 at 8:15 am
I don't think so. This article describes error 208 having the folowing text "Server: Msg 208, Level 16, State 1, Line Invalid object name 'syslogins'." (which I don't see at...
June 21, 2004 at 2:51 am
Thanks for the advice.
Sp3a has been applied, and MDAC 2.8, but the problem remains...
June 17, 2004 at 8:07 am
Thanks for your reply, Alamir.
However, I don't believe the problem is related to either locks (the problem exists even when no tables are being referenced, therefore no possibility of a...
June 16, 2004 at 7:49 am
Thanks for your reply.
All 10 queries were running from the same client - 10 query windows.
The "Query time-out" setting is 600 seconds. But isn't the Timeout property only valid for...
June 10, 2004 at 4:55 am
No, the times are different. In the tests I have run, sometimes the connection is dropped after 5 minutes, other times after 90 minutes or more.
Besides, I think the Timeout...
June 3, 2004 at 3:27 am
Lee, I found Microsoft Knowledge Base Article - 814113 (searching for Q814113 yeilded no results), but this is not the problem I am experiencing.
814113 described the following symptoms: "After you...
June 3, 2004 at 3:18 am
Viewing 15 posts - 1 through 15 (of 20 total)