Viewing 15 posts - 226 through 240 (of 335 total)
Some things you might consider:
* Did you run a
- dbcc updateusage on the migrated database?
- sp_updatestats on the database
* Do you have statistics? ("auto...
September 5, 2008 at 6:05 am
update statistics by:
use {databasename}
exec sp_updatestats
September 5, 2008 at 5:56 am
- Have you checked (several) logfiles? (Windows log, SQL log, SAN log)
- What configuration changes did happen before these problems arised?
September 5, 2008 at 5:54 am
- What is a SAN?
- What is RAID?
- Which RAID type is best for data, which for log?
- What is the advantage of a SAN?
- What is a NAS? is...
September 5, 2008 at 5:52 am
I think you're mixing some concepts. Clustering is actually multiple servers around a database, where one server is active and the other is passive (waiting for the active server to...
September 5, 2008 at 3:19 am
Create a Job.
Not getting personal, but if you don't know what you're doing or you don't know how to do this, as your boss for a course. MSSQL is not...
September 5, 2008 at 3:10 am
Technically, you can't see if a database is OLTP or OLAP. Both contain tables, indexes etc.
But because a OLTP is used different compared to an OLAP database, there should be...
September 4, 2008 at 12:40 am
Interesting situation: The whole world is blown up, and you're concerned about restoring a database 😀 (Probably a 1TB Axapta database?)
September 3, 2008 at 1:07 am
I recommend this script from Lara Rubbelke, which does a smart index reorg/rebuild:
September 3, 2008 at 1:04 am
By truncated, you mean "shrinked"?
It's a misunderstandind that a transaction log will stay small; the size of the transaction log depends on your transaction. If you update a large table...
September 3, 2008 at 1:00 am
aaaargh! .ldf is not a databasefile extension, but a logfile extension. :crazy:
So i disagree with the suggested "correct" answer
August 28, 2008 at 3:27 am
I can't test your script, but what is exactly the problem? Assuming this script works well, you just want the output to a file?
If you're running this script in a...
August 27, 2008 at 6:02 am
I don't think that just removing a datafile entry in master will fix this problem. If your data is spreaded over the 5 datafiles, you're missing 20% of your data...
August 27, 2008 at 5:56 am
try this script. Combine it with sp_msforeachtable to disable or enable indexes, depending on @switch
Note: this stored procedure will only disable nonclustered indexes or indexes which are added for performance...
August 26, 2008 at 6:37 am
Viewing 15 posts - 226 through 240 (of 335 total)