Viewing 15 posts - 43,531 through 43,545 (of 49,571 total)
Interesting. Despite having no rows, there are over 5000 pages that belong to the table. I would hazard a guess that they all have ghost records on them (marked as...
October 27, 2008 at 12:53 pm
stephen.wolfe (10/27/2008)
October 27, 2008 at 12:21 pm
Can you perhaps query sys.dm_db_index_physical_stats for that table and post the results?
October 27, 2008 at 12:18 pm
At least find out from the vendor where that locked rows report is coming from.
October 27, 2008 at 12:17 pm
Mohsin Patel (10/27/2008)
Does this have something to do with replication deciding that the subscription needs to be reinitialised?
If the subscription gets reinitialised, a new snapshot must be generated. The...
October 27, 2008 at 11:38 am
Try something like this
SELECT ref, design, armazem, SUM(CASE origem WHEN 'BO' THEN qtt WHEN 'FT' THEN -1*qtt ELSE 0 END) AS sumqtt
FROM SL
GROUP BY ref, design, armazem
October 27, 2008 at 11:27 am
Lowell (10/27/2008)
Second, I seem to remember the auto update of the statistics is based on a percentage of changes, i believe, say it's 1 percent of the sample size,
20%...
October 27, 2008 at 11:17 am
If you used the import/export wizard, it will just bring the data across and create tables based on that data. No keys, no constraints, no indexes, no defaults, etc
For that...
October 27, 2008 at 11:02 am
And a SELECT count(*) FROM tbDataList returns 0?
Is it possible that there are two tables named tbDataList in different schemas?
October 27, 2008 at 10:58 am
Can you post table definition (as a create statement), some sample data (as insert statements) and your desired results please.
October 27, 2008 at 10:54 am
Can you post table structure, query and Statistics IO output for running the query? (SET STATISTICS IO ON)
October 27, 2008 at 10:40 am
Dan Guzman (10/27/2008)
October 27, 2008 at 10:35 am
todd_dawson (10/27/2008)
October 27, 2008 at 9:48 am
Great. Now make sure that you have regular log backups scheduled so that this doesn't happen again.
October 27, 2008 at 9:16 am
baumgaertner (10/27/2008)
I need a standard approch for "Change Ordinal Column Position" that works on every table independant from PK's, FK's.
Why? What are you trying to achieve here?
October 27, 2008 at 9:14 am
Viewing 15 posts - 43,531 through 43,545 (of 49,571 total)