Viewing 15 posts - 5,581 through 5,595 (of 6,486 total)
if it's access....try -1 instead.
On SQL Server true=1 false=0
Access, true=-1, false=0
December 3, 2007 at 7:54 pm
As I recall, table spools occur when temporary operations get to a point where the operation happening in mem is spooled to disk so that it doesn't continuously need to...
December 3, 2007 at 3:11 pm
The only real difference I know of (that might fit within the "desktop-friendly" category) is that it's the only version not to require 512MB for SQL. It's about the...
December 3, 2007 at 2:57 pm
Sergiy (12/2/2007)
Jeff Moden (11/30/2007)
Heh... oh yeah... almost forgot..."NO... I am NOT smarter than a 5th grader!" 😛
In our country it's "I am NOT smarter than 10 years old".
But it still...
December 3, 2007 at 2:50 pm
chandrika5 (12/3/2007)
December 3, 2007 at 2:36 pm
This is more of a networking question than anything else.
That being said: if you are to dual-home your server, you need to assign an IP that is not...
December 3, 2007 at 2:05 pm
Try this instead - no cross join. On my machine - 1M records inserted finish in 10 seconds.
declare @g datetime
select @g=getdate()
drop table randomFullname
drop table firstname
drop table lastName
drop table fullRandname
create...
December 3, 2007 at 1:09 pm
If you were doing a big transaction, it could still cause the transaction log to grow. It doesn't log any less, it just truncates once the transaction commits.
December 3, 2007 at 11:34 am
PW (12/3/2007)
CREATE NONCLUSTERED INDEX [IX_TableX_ClientID] ON [dbo].[TableX]
([ClientID], [ColA], [ColB], [ColC])
INCLUDE ([ColD], [ColE])
Might there be a good reason that ColA, ColB, and ColC are part of the index columns...
December 3, 2007 at 11:30 am
Even if it IS unique, there may be some usefuleness in having an index with the PK and other columns in the key part of the index. The key...
December 3, 2007 at 9:49 am
TheSQLGuru (12/3/2007)
2) Table scans are not necessarily a bad thing - especially in...
December 3, 2007 at 9:38 am
Mark - your error is coming from you not putting quotes in this statement:
if exists (select 1
from...
December 3, 2007 at 9:34 am
Where are you getting it? The only place I can think you'd be getting this would be line one, and that's only if you hadn't previously created the temporary...
December 3, 2007 at 9:08 am
California (12/2/2007)
December 3, 2007 at 9:04 am
Comments:
- I don't know how big these temp tables are, but if they're anything more than a few records, you should at least consider indexing the temp tables,...
December 3, 2007 at 8:34 am
Viewing 15 posts - 5,581 through 5,595 (of 6,486 total)