Viewing 15 posts - 76 through 90 (of 190 total)
Grant,
Thank you for the information. Can you possibly point me to the right direction for updating stats on the tables as well as more information for "Full Scans". I will...
October 14, 2009 at 1:11 pm
The execution plan is attached. Thanks for the replies and any help will be appreciated. The query ran for 40 minutes before it provided me the execution plan and 622...
October 14, 2009 at 12:33 pm
October 13, 2009 at 2:09 pm
Thank, this definitely points me to the right direction.
However, this only gives me the count of the total tables in a database with the is_identity true/false.
I need names of...
October 9, 2009 at 3:15 pm
I think log shipping is a cheaper of all those options and efficient as you can do log backups every 15 minutes or so and a weekly full database backup....
October 9, 2009 at 10:58 am
Great, thanks for the quick reply. Yes, we do take log backups of all high volume production databases at every 30 minutes 🙂
October 7, 2009 at 1:00 pm
repent_kog_is_near (10/1/2009)
Thanks for the useful article.
Other than slowing down the DB, does it also cause lot of fragmentation?
Also what is the best way to estimate the ideal size of the...
October 1, 2009 at 12:00 pm
Basically what's happening is that the table your querying is getting either updated with new records or getting modified by an update statement which locks the database. So when you...
September 30, 2009 at 8:15 am
Yes, and for information purposes, those "With" clauses are also called CTE's or 'Common Table Expressions'. It is nice though I have not used it yet. Waiting for a situation...
September 28, 2009 at 7:53 am
You can setup triggers to monitor for updates to the table by logging them into another table when an update / insert takes place into any of your production tables....
September 25, 2009 at 12:23 pm
Lowell (9/25/2009)
in 2008 they renamed the identifier to %%physloc%%
you can use that as part...
September 25, 2009 at 11:31 am
ar-727381 (9/25/2009)
This deletes all the columns from the table
I'm not sure I understand. It deletes all columns from the table? :crazy:
September 25, 2009 at 9:20 am
How about:
SELECT dupeColumn,
COUNT(dupeColumn) AS NumOccurrences
FROM users
GROUP BY dupeColumn
HAVING ( COUNT(dupeColumn) > 1 )
September 25, 2009 at 6:46 am
I'm just thinking...
Could you possibly pick out a column you have suspicions on for being a potential PK candidate and then look for duplicates based on that column using a...
September 22, 2009 at 9:23 am
Paul White (9/14/2009)
You would...
September 17, 2009 at 2:57 pm
Viewing 15 posts - 76 through 90 (of 190 total)