Viewing 15 posts - 48,856 through 48,870 (of 49,571 total)
Sounds like your watchdog process is the problem then.
I notice that your orders table doesn't have a clustered index. Adding one may help out, especially with the reads, if it's...
February 5, 2007 at 12:59 am
Why do you want to store the code and the code ID in the billing detail table? It's poor table design. (Unless this is some form of data warehouse and...
February 2, 2007 at 1:41 pm
You'll have to keep a watch on sp_lock, see if you get table locks. However in general, if you have a lot of inserts and updates to a table, then...
February 2, 2007 at 1:08 pm
but u know there is an @@error global function in sql
@@Error just returns the error statement of the previous command in a TSQL batch. If the previous command executed without...
February 1, 2007 at 1:12 pm
Are they very big tables?
With auto update stats, the stats get updated after a certain percentage of the table changed. With larger tables, it takes more changes to trigger the...
January 30, 2007 at 11:19 am
Steve
Tried replying to your mail on polo shirt, using email that you indicated, got user does not exist error. Is there another address I can use?
January 28, 2007 at 10:15 pm
Not as much as most, probably.
The desktop machine has a 160GB and a 20GB. There's a badly damaged 200GB in there which I need to throw away.
The laptop has...
January 25, 2007 at 11:54 pm
Pretty much, though you'll have to check and make sure you get the same results.
January 25, 2007 at 9:31 am
Can you post parts of the stack dump? The input buffer for spid 85, the short stach dump
Few questions...
You said the dump is triggered by a select. Are any of...
January 25, 2007 at 6:03 am
No. It has to not exist.
SELECT INTO creates the table and inserts the results of the select into it.
To insert results into an existing table, you'd use INSERT INTO <table>...
January 25, 2007 at 4:26 am
Subselects in the select clause are extremely inefficient. Move them out into joins and it'll be a lot better.
January 25, 2007 at 4:22 am
Possible, but not with that syntax. Did you check books online?
The syntax you're looking for is
SELECT * INTO New_Addresses FROM Addresses
January 25, 2007 at 4:19 am
What's in the SQL errorlog just before it shuts down?
January 25, 2007 at 1:32 am
I'm sure the bard is rolling in his grave right about now.
January 24, 2007 at 10:54 pm
Hmm. Very wierd
Try rebuilding the clustered index - DBCC DBREINDEX ('Actions') - and then do an update usage. See if that has any effect.
If not, then I'm really stumped.
From...
January 24, 2007 at 7:16 am
Viewing 15 posts - 48,856 through 48,870 (of 49,571 total)